This is an automated email from the ASF dual-hosted git repository.
kparzysz 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 d439f6c4f1 Delete `from __future__ import annotations` since it
requires Python 3.7+ (#11889)
d439f6c4f1 is described below
commit d439f6c4f18ddabeed487ea8ba253f25dd1e6fb8
Author: Krzysztof Parzyszek <[email protected]>
AuthorDate: Fri Jun 24 16:06:19 2022 -0500
Delete `from __future__ import annotations` since it requires Python 3.7+
(#11889)
---
python/tvm/meta_schedule/profiler.py | 1 -
1 file changed, 1 deletion(-)
diff --git a/python/tvm/meta_schedule/profiler.py
b/python/tvm/meta_schedule/profiler.py
index a83d0fa16e..206c2429d8 100644
--- a/python/tvm/meta_schedule/profiler.py
+++ b/python/tvm/meta_schedule/profiler.py
@@ -15,7 +15,6 @@
# specific language governing permissions and limitations
# under the License.
"""A context manager that profiles tuning time cost for different parts."""
-from __future__ import annotations
import logging
from contextlib import contextmanager