Skip to content

Commit

Permalink
[CI] Update Apache TVM to v0.16.0 (#772)
Browse files Browse the repository at this point in the history
* update tvm to v0.16.0

* pin scikit-learn==1.4.2 on not Linux with py3.9
  • Loading branch information
mshr-h authored May 28, 2024
1 parent ae958a2 commit 03d1b7c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
os: [ubuntu-22.04, macos-12, windows-2022]
python-version: ['3.8', '3.9', '3.10', '3.11']
env:
TVM_VERSION_TAG: v0.15.0
TVM_VERSION_TAG: v0.16.0
PYTORCH_VERSION: 2.2.0
LLVM_VERSION: 14

Expand Down Expand Up @@ -57,6 +57,9 @@ jobs:
- name: Test with older SKLearn on Linux with py3.9 to check backward compatibility
if: ${{ matrix.python-version == '3.9' && startsWith(matrix.os, 'ubuntu') == true }}
run: python -m pip install scikit-learn==1.2.1
- name: Pin SKLearn<1.5.0 on not Linux with py3.9
if: ${{ !(matrix.python-version == '3.9' && startsWith(matrix.os, 'ubuntu') == true) }}
run: python -m pip install "scikit-learn<1.5.0"
- name: Run basic tests without extra
run: pytest
- name: Coverage on basic tests without extra
Expand Down

0 comments on commit 03d1b7c

Please sign in to comment.