Skip to content

Commit e2b3939

Browse files
committed
update ci to not build on old versions
1 parent 928808a commit e2b3939

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.github/workflows/ci-autowrap.yaml

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,26 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
include:
18-
# - CYTHON: "<=0.29.21"
19-
# python-version: "2.7"
2018
- CYTHON: "<=0.29.21"
21-
python-version: "3.7"
19+
python-version: "3.8" # Cython < 0.29.21 not compatible with 3.10, so neither are we
2220
- CYTHON: "<=0.29.21"
2321
python-version: "3.9" # Cython < 0.29.21 not compatible with 3.10, so neither are we
24-
# - CYTHON: ">0.29.21"
25-
# python-version: "2.7"
26-
- CYTHON: ">0.29.21"
27-
python-version: "3.7"
2822
- CYTHON: ">0.29.21"
2923
python-version: "3.10"
30-
- CYTHON: "==3.0.0a10"
31-
python-version: "3.7"
32-
- CYTHON: "==3.0.0a10"
24+
- CYTHON: "==3.0.0"
25+
python-version: "3.10"
26+
- CYTHON: "==3.0.0"
27+
python-version: "3.11"
28+
- CYTHON: "==3.0.0"
29+
python-version: "3.12"
30+
- CYTHON: "==3.1.0"
3331
python-version: "3.10"
32+
- CYTHON: "==3.1.0"
33+
python-version: "3.11"
34+
- CYTHON: "==3.1.0"
35+
python-version: "3.12"
3436
steps:
35-
- uses: actions/checkout@v3
37+
- uses: actions/checkout@v4
3638

3739
- name: Set up Python ${{ matrix.python-version }}
3840
uses: actions/setup-python@v4

setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@
2323
"Development Status :: 3 - Alpha",
2424
"Intended Audience :: Developers",
2525
"License :: OSI Approved :: BSD License",
26-
"Programming Language :: Python :: 3.7",
27-
"Programming Language :: Python :: 3.8",
2826
"Programming Language :: Python :: 3.9",
2927
"Programming Language :: Python :: 3.10",
3028
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)