Skip to content

Commit

Permalink
Limit cython to versions less than 3.0.0
Browse files Browse the repository at this point in the history
Hard-code the requirement to the most recent minor release

Pin cython in build-system.requires
  • Loading branch information
kykyi authored and RUrlus committed Jul 24, 2023
1 parent 7c4e0ea commit fadcc5c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[build-system]
requires = [
"setuptools>=42",
"wheel",
"cython",
"oldest-supported-numpy"
"setuptools>=42",
"wheel",
"cython>=0.29.15,<3.0.0",
"oldest-supported-numpy",
]
build-backend = "setuptools.build_meta"
build-backend = "setuptools.build_meta"
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numpy>=1.14.5
setuptools>=45.2.0
Cython>=0.29.15
Cython>=0.29.15,<3.0.0
scipy>=1.4.1

0 comments on commit fadcc5c

Please sign in to comment.