Skip to content

Commit

Permalink
updated for Python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
bab2min committed Jul 17, 2022
1 parent 6d1d8b3 commit 3d7c849
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/numpy_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ def get_old_numpy_version():
import sys

py_version = sys.version_info
if py_version >= (3, 10): return '1.22.0'
if py_version >= (3, 9): return '1.20.0'
if py_version >= (3, 8): return '1.18.0'
if py_version >= (3, 7): return '1.15.0'
Expand Down

0 comments on commit 3d7c849

Please sign in to comment.