You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by tq...@apache.org on 2023/03/09 13:04:38 UTC

[tvm] branch v0.11.0 updated: Add typing_extensions requirement (#14244)

This is an automated email from the ASF dual-hosted git repository.

tqchen pushed a commit to branch v0.11.0
in repository https://gitbox.apache.org/repos/asf/tvm.git


The following commit(s) were added to refs/heads/v0.11.0 by this push:
     new 46fae40030 Add typing_extensions requirement (#14244)
46fae40030 is described below

commit 46fae40030b7b371878d3b274bf41de25f31aea1
Author: Andrew Reusch <ar...@gmail.com>
AuthorDate: Thu Mar 9 05:04:28 2023 -0800

    Add typing_extensions requirement (#14244)
    
    Add typing_extensions requirement.
---
 python/gen_requirements.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/python/gen_requirements.py b/python/gen_requirements.py
index 9778937ae8..7280a787ff 100755
--- a/python/gen_requirements.py
+++ b/python/gen_requirements.py
@@ -72,6 +72,7 @@ REQUIREMENTS_BY_PIECE: RequirementsByPieceType = [
                 "scipy",
                 "synr",
                 "tornado",
+                "typing_extensions",
             ],
         ),
     ),
@@ -277,6 +278,7 @@ CONSTRAINTS = [
     ("torch", None),
     ("torchvision", None),
     ("tornado", None),
+    ("typing_extensions", None),
     ("xgboost", ">=1.1.0,<1.6.0"),  # From PR #4953 & Issue #12009
 ]