Unverified Commit 8d019eb9 authored by Yichen Yan's avatar Yichen Yan Committed by GitHub
Browse files

[Release] Relax constraint of tvm-ffi to compatible version (#1373)


Co-authored-by: default avatarLeiWang1999 <leiwang1999@outlook.com>
parent 924225ed
...@@ -112,8 +112,6 @@ jobs: ...@@ -112,8 +112,6 @@ jobs:
python-version: python-version:
# Wheels are built with Python 3.8 Limited API, they should work with all Python >= 3.8. # Wheels are built with Python 3.8 Limited API, they should work with all Python >= 3.8.
# Only build wheels against Python 3.8 Limited API to save CI resources. # Only build wheels against Python 3.8 Limited API to save CI resources.
# FIXME: Here we use Python 3.9 because our dependency `apache-tvm-ffi` claims to support
# Python 3.8 but it depends on a version of `ml-dtypes` that requires Python >= 3.9.
- "3.9" - "3.9"
fail-fast: false fail-fast: false
timeout-minutes: 120 timeout-minutes: 120
......
...@@ -27,7 +27,11 @@ classifiers = [ ...@@ -27,7 +27,11 @@ classifiers = [
] ]
dynamic = ["version"] dynamic = ["version"]
dependencies = [ dependencies = [
"apache-tvm-ffi==0.1.0", "apache-tvm-ffi~=0.1.0",
# Extra constraint to tvm-ffi for abi issue,
# should be removed after our tvm's update.
# See discussion in tilelang#1373 and apache/tvm-ffi#307
"apache-tvm-ffi<=0.1.1",
"cloudpickle", "cloudpickle",
"ml-dtypes", "ml-dtypes",
"numpy>=1.23.5", "numpy>=1.23.5",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment