Skip to content

Commit a6f9b47

Browse files
authored
Revert numpy2 requirement to not interfere with Ubuntu 24.04 (#1180)
1 parent 2cdb0fb commit a6f9b47

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

data/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
numpy>=2.0,<3.0
1+
numpy<3.0
22
pyqt5
33
psutil
44
cython<3.1

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def read_long_description():
142142
return ""
143143

144144

145-
install_requires = ["numpy>=2.0,<3.0", "psutil", "cython<3.1", "setuptools"]
145+
install_requires = ["numpy<3.0", "psutil", "cython<3.1", "setuptools"]
146146
if IS_RELEASE:
147147
install_requires.append("pyqt5")
148148
else:

0 commit comments

Comments
 (0)