Skip to content

Commit a68e151

Browse files
Allow Cython 3 (fix #1083)
1 parent 1194a8a commit a68e151

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ requires = [
5959
"setuptools>=60",
6060
"wheel",
6161

62-
"Cython(>=0.29.24,<3.0.0)"
62+
"Cython(>=0.29.24,<4.0.0)"
6363
]
6464
build-backend = "setuptools.build_meta"
6565

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
from setuptools.command import build_ext as setuptools_build_ext
2626

2727

28-
CYTHON_DEPENDENCY = 'Cython(>=0.29.24,<0.30.0)'
28+
CYTHON_DEPENDENCY = 'Cython(>=0.29.24,<4.0.0)'
2929

3030
CFLAGS = ['-O2']
3131
LDFLAGS = []

0 commit comments

Comments
 (0)