Skip to content

Commit

Permalink
CI: install dir (#801)
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda authored Jan 26, 2022
1 parent 194ed15 commit c6020e4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci_install-pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,17 +65,17 @@ jobs:
pip install -r requirements.txt --find-links https://download.pytorch.org/whl/cpu/torch_stable.html
- name: Install | Uninstall package - archive
working-directory: dist
run: |
# install as archive
pip install dist/*.tar.gz
cd ..
pip install *.tar.gz
python -c "import torchmetrics ; print(torchmetrics.__version__)"
pip uninstall -y torchmetrics
- name: Install | Uninstall package - wheel
working-directory: dist
run: |
# install as wheel
pip install dist/*.whl
cd ..
pip install *.whl
python -c "import torchmetrics ; print(torchmetrics.__version__)"
pip uninstall -y torchmetrics

0 comments on commit c6020e4

Please sign in to comment.