Skip to content

Commit 44a6da6

Browse files
committed
build: specifically disallow numpy 1.24
1 parent c7a4f91 commit 44a6da6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
with open('HISTORY.rst') as history_file:
1212
history = history_file.read()
1313

14-
requirements = ['numpy>=1.19,<1.24']
14+
# requirements = ['numpy>=1.19,<1.24']
15+
requirements = ['numpy>=1.19,!=1.24.0']
16+
#requirements = ['numpy>=1.19,<1.24 || >=1.25']
1517

1618
test_requirements = ['pytest>=4.6', 'hypothesis']
1719

0 commit comments

Comments
 (0)