This is an automated email from the ASF dual-hosted git repository.
leandron pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git
The following commit(s) were added to refs/heads/main by this push:
new 904515b98e [Bug] Add typing_extensions requirement again (#14960)
904515b98e is described below
commit 904515b98e23bde50ec8c2695bf5dcc8e49baabe
Author: 8bitpd <[email protected]>
AuthorDate: Mon Jun 26 22:11:52 2023 +0800
[Bug] Add typing_extensions requirement again (#14960)
---
python/gen_requirements.py | 2 ++
1 file changed, 2 insertions(+)
diff --git a/python/gen_requirements.py b/python/gen_requirements.py
index 6352e97066..c9eb5d9cc6 100644
--- a/python/gen_requirements.py
+++ b/python/gen_requirements.py
@@ -72,6 +72,7 @@ REQUIREMENTS_BY_PIECE: RequirementsByPieceType = [
"psutil",
"scipy",
"tornado",
+ "typing_extensions",
],
),
),
@@ -277,6 +278,7 @@ CONSTRAINTS = [
("torch", None),
("torchvision", None),
("tornado", None),
+ ("typing_extensions", None),
("xgboost", ">=1.1.0"), # From PR #4953 & Issue #12009
]