Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
tilelang
Commits
8d019eb9
Unverified
Commit
8d019eb9
authored
Dec 06, 2025
by
Yichen Yan
Committed by
GitHub
Dec 06, 2025
Browse files
[Release] Relax constraint of tvm-ffi to compatible version (#1373)
Co-authored-by:
LeiWang1999
<
leiwang1999@outlook.com
>
parent
924225ed
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
.github/workflows/dist.yml
.github/workflows/dist.yml
+0
-2
pyproject.toml
pyproject.toml
+5
-1
No files found.
.github/workflows/dist.yml
View file @
8d019eb9
...
@@ -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
...
...
pyproject.toml
View file @
8d019eb9
...
@@ -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"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment