Skip to content

Commit

Permalink
Fix numpy version constraint (#13912)
Browse files Browse the repository at this point in the history
Issue #13911 reported that newer versions of setuptools
crash with the version constraint "<=1.23.*", this commit
implements the suggested fix by using "<=1.23".
  • Loading branch information
lhutton1 committed Feb 3, 2023
1 parent fb2315a commit e34506c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/gen_requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@
("image", None),
("matplotlib", None),
# Workaround, see https://github.com/apache/tvm/issues/13647
("numpy", "<=1.23.*"),
("numpy", "<=1.23"),
("onnx", None),
("onnxoptimizer", None),
("onnxruntime", None),
Expand Down

0 comments on commit e34506c

Please sign in to comment.