Skip to content

Commit 796f7d7

Browse files
committed
add the min. version of numpy to requirements-latest
1 parent 4e6f055 commit 796f7d7

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

makehelper.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
2727
out = open(sys.argv[1], 'w')
2828

2929
"""
30-
3.2, sysconfig
31-
3.10, sysconfig.get_pathi
32-
3.10.13 distutils is deprecated.
33-
3.12, distutils was removed.
30+
3.2 sysconfig
31+
3.10 sysconfig.get_path
32+
3.10.13 distutils is deprecated.
33+
3.12 distutils was removed.
3434
"""
3535
if sys.version_info >= (3,10,):
3636
from sysconfig import get_config_var, get_path
@@ -42,8 +42,9 @@
4242
libdir = get_config_var('LIBDIR') or ''
4343

4444
have_np='NO'
45+
4546
"""
46-
Since numpy 1.18, numpy.get_include() exists.
47+
numpy 1.18, numpy.get_include()
4748
"""
4849
try:
4950
from numpy import get_include

requirements-latest.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
numpy
1+
numpy>=1.18
22
nose2

0 commit comments

Comments
 (0)