Skip to content

Commit 34ab6f0

Browse files
authored
[Cherry-pick] Pin numpy version #247 (#248)
* Pin numpy version to <=1.21.6 * Bump to hotfix version 1.3.1
1 parent 3c4f7fb commit 34ab6f0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
_PACKAGE_NAME = "sparsezoo" if is_release else "sparsezoo-nightly"
4141

4242
_deps = [
43-
"numpy>=1.0.0",
43+
"numpy>=1.0.0,<=1.21.6",
4444
"onnx>=1.5.0,<=1.12.0",
4545
"pyyaml>=5.1.0",
4646
"requests>=2.0.0",

src/sparsezoo/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from datetime import date
2121

2222

23-
version_base = "1.3.0"
23+
version_base = "1.3.1"
2424
is_release = False # change to True to set the generated version as a release version
2525

2626

0 commit comments

Comments
 (0)