From 1f4a35d650363aec17fbaf2bea6c9dd216f20f29 Mon Sep 17 00:00:00 2001 From: Masahiro Hiramori Date: Tue, 30 Jan 2024 11:32:56 +0900 Subject: [PATCH] install tvm without wheel packaging --- .github/workflows/pythonapp.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index 9e344ca9..462a186b 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -123,10 +123,7 @@ jobs: if: ${{ (startsWith(matrix.os, 'macos') || startsWith(matrix.os, 'ubuntu')) }} run: | cd ~/work/hummingbird/tvm/python - python -m pip install -U wheel packaging - python setup.py bdist_wheel - python -m pip install dist/tvm-*.whl - git clean -xdf + python3 setup.py install # We don't run pytest for Linux py3.9 since we do coverage for that case. - name: Test with pytest