Skip to content

Commit 10c017c

Browse files
authored
Merge pull request #78 from ecmwf/fix/python-38-numpy
Require numpy<1.25 for python 3.8
2 parents c4c14be + a660df4 commit 10c017c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Diff for: setup.py

+2
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ def parse_version_from(path):
4141
install_requires = ["numpy<1.20"]
4242
elif sys.version_info < (3, 8):
4343
install_requires = ["numpy<1.22"]
44+
elif sys.version_info < (3, 9):
45+
install_requires = ["numpy<1.25"]
4446

4547
install_requires += ["attrs", "cffi", "findlibs"]
4648

0 commit comments

Comments
 (0)