Skip to content

Commit

Permalink
[#951] Pinned setuptools to >=40.8.0 and <65.* in setp.py, requiremen…
Browse files Browse the repository at this point in the history
…ts.txt and pyproject.toml
  • Loading branch information
dvezinet committed Dec 3, 2024
1 parent 2c613f2 commit e9ecb37
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
@@ -1,6 +1,6 @@
[build-system]
requires = [
"setuptools>=40.8.0",
"setuptools>=40.8.0, <65.*",
"wheel",
"Cython>=0.26",
"numpy",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ scipy
numpy
# scikit-sparse # does not work on windows, and requires "apt/brew install libsuitesparse-dev/suite-sparse" on linux / MacOs
# scikit-umfpack # similar issue
setuptools!=65.*,!=74.*
setuptools>=40.8.0, <65.*
matplotlib
contourpy
requests
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ def get_version_tofu(path=_HERE):
# requirements files see:
# https://packaging.python.org/en/latest/requirements.html
install_requires=[
"setuptools!=65.*,!=74.*",
"setuptools>=40.8.0, <65.*",
"numpy",
"scipy",
# "scikit-sparse",
Expand Down

0 comments on commit e9ecb37

Please sign in to comment.