MasterJH5574 left a comment (apache/tvm#19802) Wheel install check for v0.25.0.rc1 — PyPI.
Pre-release wheels are also published on PyPI for testing: `pip install --pre apache-tvm==0.25.0rc1` All four platform wheels published for `apache-tvm==0.25.0rc1` (macOS arm64, Linux x86_64 + aarch64 manylinux_2_28, Windows AMD64). Installed the Linux x86_64 wheel in a clean venv — dependencies (including `apache-tvm-ffi`) resolve automatically, no source build: ```bash $ python3 -m venv venv && . venv/bin/activate $ pip install apache-tvm==0.25.0rc1 ... Successfully installed apache-tvm-0.25.0rc1 apache-tvm-ffi-0.1.12 ... $ python -c "import tvm; print(tvm.__version__)" 0.25.0rc1 ``` LGTM — wheel installs with the declared dependencies (`apache-tvm-ffi>=0.1.12`) and imports at the expected version. (It is a pre-release, so a bare `pip install apache-tvm` still resolves the latest *stable*; testers opt into the RC by pinning `==0.25.0rc1` or using `--pre`.) -- Reply to this email directly or view it on GitHub: https://github.com/apache/tvm/issues/19802#issuecomment-4730781324 You are receiving this because you are subscribed to this thread. Message ID: <apache/tvm/issues/19802/[email protected]>
