Skip to content

Commit e34506c

Browse files
authored
Fix numpy version constraint (#13912)
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".
1 parent fb2315a commit e34506c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/gen_requirements.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@
252252
("image", None),
253253
("matplotlib", None),
254254
# Workaround, see https://github.com/apache/tvm/issues/13647
255-
("numpy", "<=1.23.*"),
255+
("numpy", "<=1.23"),
256256
("onnx", None),
257257
("onnxoptimizer", None),
258258
("onnxruntime", None),

0 commit comments

Comments
 (0)