areusch commented on issue #13586:
URL: https://github.com/apache/tvm/issues/13586#issuecomment-1461104756
Unfortunately I encountered a problem when trying to publish the wheels for
v0.11.0:
```
$ venv/bin/python3
Python 3.8.10 (default, Nov 14 2022, 12:59:47)
[GCC 9.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import tvm
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File
"/home/areusch/ws/tlcpack/venv/lib/python3.8/site-packages/tvm/__init__.py",
line 79, in <module>
from . import micro
File
"/home/areusch/ws/tlcpack/venv/lib/python3.8/site-packages/tvm/micro/__init__.py",
line 23, in <module>
from .model_library_format import (
File
"/home/areusch/ws/tlcpack/venv/lib/python3.8/site-packages/tvm/micro/model_library_format.py",
line 34, in <module>
from ..relay.backend import executor_factory
File
"/home/areusch/ws/tlcpack/venv/lib/python3.8/site-packages/tvm/relay/__init__.py",
line 29, in <module>
from . import prelude
File
"/home/areusch/ws/tlcpack/venv/lib/python3.8/site-packages/tvm/relay/prelude.py",
line 21, in <module>
from tvm.relay.transform import ToANormalFormExpr
File
"/home/areusch/ws/tlcpack/venv/lib/python3.8/site-packages/tvm/relay/transform/__init__.py",
line 20, in <module>
from .transform import *
File
"/home/areusch/ws/tlcpack/venv/lib/python3.8/site-packages/tvm/relay/transform/transform.py",
line 30, in <module>
from ..backend.utils import mangle_module_name
File
"/home/areusch/ws/tlcpack/venv/lib/python3.8/site-packages/tvm/relay/backend/__init__.py",
line 18, in <module>
from . import te_compiler
File
"/home/areusch/ws/tlcpack/venv/lib/python3.8/site-packages/tvm/relay/backend/te_compiler.py",
line 27, in <module>
from tvm.meta_schedule import is_meta_schedule_enabled
File
"/home/areusch/ws/tlcpack/venv/lib/python3.8/site-packages/tvm/meta_schedule/__init__.py",
line 18, in <module>
from . import (
File
"/home/areusch/ws/tlcpack/venv/lib/python3.8/site-packages/tvm/meta_schedule/builder/__init__.py",
line 22, in <module>
from .builder import Builder, BuilderInput, BuilderResult, PyBuilder,
create
File
"/home/areusch/ws/tlcpack/venv/lib/python3.8/site-packages/tvm/meta_schedule/builder/builder.py",
line 21, in <module>
from typing_extensions import Literal
ModuleNotFoundError: No module named 'typing_extensions'
```
This is a hole in our CI testing/release process we should plug. We'll need
to make a slight tweak to the python install_requires and release a v0.11.1.
There aren't any functionality changes expected other than fixing the missing
typing_extensions package, so folks don't need to block on this unless they
depend on `pip3 install apache-tvm`.
#14244 fixes this in the release branch.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]