Skip to content

Commit

Permalink
Merge pull request #2204 from Ericgig/misc.cy3_for_4.7.v2
Browse files Browse the repository at this point in the history
Fix cython version to pre 3.0.0
  • Loading branch information
Ericgig committed Jul 24, 2023
2 parents e010ce4 + 10bdfa9 commit a2a289e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions doc/changes/2204.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Exclude cython 3.0.0 from requirement
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.0
packaging
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ 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]
include = qutip*

[options.extras_require]
graphics = matplotlib>=1.2.1
runtime_compilation = cython>=0.29.20
runtime_compilation = cython>=0.29.20,<3.0.0
semidefinite =
cvxpy>=1.0
cvxopt
Expand Down

0 comments on commit a2a289e

Please sign in to comment.