Skip to content

Commit

Permalink
add missing numpy pins and setuptools to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jopohl committed Nov 11, 2024
1 parent 6af3bb0 commit 947978a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def read_long_description():
return ""


install_requires = ["numpy", "psutil", "cython"]
install_requires = ["numpy<2.0.0", "psutil", "cython", "setuptools"]
if IS_RELEASE:
install_requires.append("pyqt5")
else:
Expand All @@ -168,7 +168,7 @@ def read_long_description():
license="GNU General Public License (GPL)",
download_url="https://github.com/jopohl/urh/tarball/v" + str(version.VERSION),
install_requires=install_requires,
setup_requires=["numpy"],
setup_requires=["numpy<2.0.0"],
packages=get_packages(),
ext_modules=get_extensions(),
cmdclass={"build_ext": build_ext},
Expand Down

0 comments on commit 947978a

Please sign in to comment.