Skip to content

Commit

Permalink
add dependencies to setup.py, remove numpy2.0 install dep
Browse files Browse the repository at this point in the history
  • Loading branch information
smiet committed Jun 28, 2024
1 parent aac5eb8 commit bc927ed
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Utilities/pythontools/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,13 @@
setuptools.setup(
name="py_spec",
version=__version__,
setup_requires=["numpy>=2.0.0; python_version > '3.8'",
"oldest-supported-numpy; python_version <= '3.8'"],
install_requires=["numpy>=1.21.1"],
setup_requires=["numpy"]
install_requires=["numpy>=1.21.1",
"coilpy",
"f90nml",
"h5py",
"matplotlib"
"scipy>=1.7.0"],
description="SPEC(Stepped-Pressure Equilibrium Code) python utilities",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit bc927ed

Please sign in to comment.