Skip to content

Commit 9574805

Browse files
committed
Update minimum Python version requirement from 3.9 to 3.8 for compatibility.
1 parent d39953f commit 9574805

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

python/tvm/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
# ----------------------------
2727
# Python3 version.
2828
# ----------------------------
29-
if not (sys.version_info[0] >= 3 and sys.version_info[1] >= 9):
30-
PY3STATEMENT = "The minimal Python requirement is Python 3.9"
29+
if not (sys.version_info[0] >= 3 and sys.version_info[1] >= 8):
30+
PY3STATEMENT = "The minimal Python requirement is Python 3.8"
3131
raise Exception(PY3STATEMENT)
3232

3333
# ----------------------------

0 commit comments

Comments
 (0)