Skip to content

Commit

Permalink
[#973] Upgraded requirements for setuptools>=70.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dvezinet committed Sep 13, 2024
1 parent d876cee commit de3edb0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
####### Requirements without Version Specifiers #######
scipy
numpy
# scikit-sparse # does not work on windows, and requires "apt/brew install libsuitesparse-dev/suite-sparse" on linux / MacOs
# scikit-sparse # does not work on windows, and requires "apt/brew install libsuitesparse-dev/suite-sparse" on linux / MacOs
# scikit-umfpack # similar issue
setuptools>=70.0.0
matplotlib
contourpy
requests
Expand All @@ -11,4 +12,4 @@ Polygon3

######## Requirements with Version Specifier ########
spectrally>=0.0.4
Cython>=0.26
Cython>=0.26
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,7 @@ def get_version_tofu(path=_HERE):
# requirements files see:
# https://packaging.python.org/en/latest/requirements.html
install_requires=[
"setuptools>=70.0.0",
"numpy",
"scipy",
# "scikit-sparse",
Expand Down Expand Up @@ -397,4 +398,4 @@ def get_version_tofu(path=_HERE):
cmdclass={"build_ext": build_ext,
"clean": CleanCommand},
include_dirs=[np.get_include()],
)
)

0 comments on commit de3edb0

Please sign in to comment.