Skip to content

Commit

Permalink
chore(bump cython): no more pinned 'cython<3.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
nauaneed committed Aug 15, 2024
1 parent dedb698 commit b24698d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ requires = [
"wheel>=0.29.0",
"setuptools>=42.0.0",
"oldest-supported-numpy",
"Cython<3.0",
"Cython",
"mako"
]
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Cython<3.0
Cython
setuptools>=6.0
numpy
mako
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def setup_package():

# The requirements.
install_requires = [
'numpy', 'mako', 'Cython<3.0', 'setuptools>=6.0'
'numpy', 'mako', 'Cython', 'setuptools>=6.0'
]
tests_require = ["pytest", "pytest-benchmark[histogram]"]
docs_require = ["sphinx"]
Expand Down

0 comments on commit b24698d

Please sign in to comment.