Skip to content

Commit

Permalink
Merge pull request #2197 from Ericgig/fix.cython.version
Browse files Browse the repository at this point in the history
Set version requirement to exclude cython 3
  • Loading branch information
Ericgig committed Jul 17, 2023
2 parents 47ca07e + 6c2b696 commit 4f29ae5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = [
"setuptools",
"packaging",
"wheel",
"cython>=0.29.20",
"cython>=0.29.20,<3.0.0",
# See https://numpy.org/doc/stable/user/depending_on_numpy.html for
# the recommended way to build against numpy's C API:
"oldest-supported-numpy",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cython>=0.29.20
cython>=0.29.20,<3.0.0
numpy>=1.16.6
scipy>=1.5
packaging
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ install_requires =
setup_requires =
numpy>=1.13.3
scipy>=1.0
cython>=0.29.20
cython>=0.29.20,<3.0.0
packaging

[options.packages.find]
Expand All @@ -46,7 +46,7 @@ include = qutip*
[options.extras_require]
graphics = matplotlib>=1.2.1
runtime_compilation =
cython>=0.29.20
cython>=0.29.20,<3.0.0
filelock
semidefinite =
cvxpy>=1.0
Expand Down

0 comments on commit 4f29ae5

Please sign in to comment.