Skip to content

Commit bebf8ca

Browse files
committed
Drop support for old Cython.
1 parent 788d56a commit bebf8ca

File tree

1 file changed

+1
-16
lines changed

1 file changed

+1
-16
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,7 @@ jobs:
1212
fail-fast: true
1313
matrix:
1414
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
15-
cython-version: ["0.29", "3"]
1615
os: [ubuntu-24.04]
17-
exclude:
18-
- python-version: "3.13"
19-
cython-version: "0.29"
20-
- python-version: "3.14"
21-
cython-version: "0.29"
2216

2317
steps:
2418
- uses: actions/checkout@v4
@@ -32,16 +26,7 @@ jobs:
3226
- name: Install Linux dependencies
3327
run: |
3428
sudo apt-get update
35-
sudo apt-get install -y libattr1-dev libfuse3-dev fuse3
36-
sudo apt-get install -y pkg-config gcc
37-
38-
- name: Install old Cython
39-
if: ${{ matrix.cython-version == '0.29' }}
40-
run: pip install "Cython<3"
41-
42-
- name: Install modern Cython
43-
if: ${{ matrix.cython-version == '3' }}
44-
run: pip install "Cython>=3"
29+
sudo apt-get install -y libattr1-dev libfuse3-dev fuse3 pkg-config gcc
4530
4631
- name: Build
4732
run: uv sync --locked

0 commit comments

Comments
 (0)