Skip to content

Commit

Permalink
[CI] Fix android build by constraining numpy version
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 apache#13647.

Change-Id: Ib271c223447c76b855fe35cc8a1e77411a3fa441
  • Loading branch information
lhutton1 committed Dec 20, 2022
1 parent 9701103 commit 17f47bd
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 @@ -252,7 +252,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 17f47bd

Please sign in to comment.