Skip to content

Commit 7e10464

Browse files
committed
fix min numpy version
1 parent ed8acbc commit 7e10464

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ def main():
2727
minimum_supported_numpy = "1.14.5"
2828
if sys.version_info[:2] >= (3, 8):
2929
minimum_supported_numpy = "1.17.3"
30+
if sys.version_info[:2] >= (3, 9):
31+
minimum_supported_numpy = "1.19.3"
3032

3133
numpy_version = "numpy>=%s" % minimum_supported_numpy
3234

0 commit comments

Comments
 (0)