Skip to content

Commit

Permalink
Allow Cython 3 (fix #1083)
Browse files Browse the repository at this point in the history
  • Loading branch information
musicinmybrain committed Nov 13, 2023
1 parent c2c8d20 commit d40d5a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ requires = [
"setuptools>=60",
"wheel",

"Cython(>=0.29.24,<3.0.0)"
"Cython(>=0.29.24,<4.0.0)"
]
build-backend = "setuptools.build_meta"

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
from setuptools.command import build_ext as setuptools_build_ext


CYTHON_DEPENDENCY = 'Cython(>=0.29.24,<0.30.0)'
CYTHON_DEPENDENCY = 'Cython(>=0.29.24,<4.0.0)'

CFLAGS = ['-O2']
LDFLAGS = []
Expand Down

0 comments on commit d40d5a8

Please sign in to comment.