Skip to content

Commit bc6b69c

Browse files
committedJan 16, 2024
Explicitly add pypy 3.8, 3.9 and 3.10 to CI.
We only support pypy as 'best effort'.
1 parent 2b773fc commit bc6b69c

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed
 

‎.github/workflows/ci.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ jobs:
1414
strategy:
1515
matrix:
1616
os: [macos-latest, ubuntu-latest, windows-latest]
17-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12.0"]
17+
python-version: [
18+
"3.8", "3.9", "3.10", "3.11", "3.12.0",
19+
"pypy3.8", "pypy3.9", "pypy3.10"
20+
]
1821
fail-fast: false
1922

2023
steps:

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
22
# setup.py file for cleancut/green.
33
#
4-
# setuptools versions older than 64.0.0 need a minimal setup.py file.g
4+
# setuptools versions older than 64.0.0 need a minimal setup.py file.
55
#
66

77
from setuptools import setup

0 commit comments

Comments
 (0)
Please sign in to comment.