Skip to content

Commit

Permalink
[CI] Fix android build by constraining numpy version (#13648)
Browse files Browse the repository at this point in the history
Temporarily constrain the version of numpy to workaround the
deprecated value used in mxnet. See #13647.

Change-Id: Ib271c223447c76b855fe35cc8a1e77411a3fa441
  • Loading branch information
lhutton1 committed Dec 20, 2022
1 parent ab28afb commit 26a205c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/gen_requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,8 @@
("h5py", "==2.10.0"),
("image", None),
("matplotlib", None),
("numpy", None),
# Workaround, see https://github.com/apache/tvm/issues/13647
("numpy", "<=1.23.*"),
("onnx", None),
("onnxoptimizer", None),
("onnxruntime", None),
Expand Down

0 comments on commit 26a205c

Please sign in to comment.