Skip to content

Commit 1082aa2

Browse files
committed
[OMIT ME] Temporarily avoid Cython 3.1.0 on the PR branch
1 parent 5a9eb8c commit 1082aa2

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
python-version: ${{ matrix.python-version }}
2929

3030
- name: Install prerequisite Python libraries
31-
run: pip install cython mypy pytest setuptools
31+
run: pip install 'cython<3.1' mypy pytest setuptools
3232

3333
- name: Install Linux build prerequisites
3434
if: runner.os == 'Linux'
@@ -79,7 +79,7 @@ jobs:
7979
python-version: ${{ matrix.python-version }}
8080

8181
- name: Install prerequisite Python libraries
82-
run: pip install cython pytest
82+
run: pip install 'cython<3.1' pytest
8383

8484
- name: Install build prerequisites
8585
if: runner.os == 'Linux'

devtools/environment-dev.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ channels:
33
- bioconda
44
dependencies:
55
- bzip2
6-
- cython
6+
- cython<3.1
77
- setuptools
88
- xz

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dynamic = [
1818
"Release notes" = "https://pysam.readthedocs.io/en/stable/release.html"
1919

2020
[build-system]
21-
requires = ["setuptools>=59.0", "Cython>=0.29.12,<4"]
21+
requires = ["setuptools>=59.0", "Cython>=0.29.12,<3.1"]
2222
build-backend = "setuptools.build_meta:__legacy__"
2323

2424
[tool.cibuildwheel]

requirements-dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Cython>=0.29.12,<4
1+
Cython>=0.29.12,<3.1

0 commit comments

Comments
 (0)