From 03d1b7cd6025ecb28e74336ac68585df9d76cb05 Mon Sep 17 00:00:00 2001 From: Masahiro Hiramori Date: Wed, 29 May 2024 03:32:51 +0900 Subject: [PATCH] [CI] Update Apache TVM to v0.16.0 (#772) * update tvm to v0.16.0 * pin scikit-learn==1.4.2 on not Linux with py3.9 --- .github/workflows/pythonapp.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index 28c086099..1f3959b3f 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -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 @@ -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