Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: install dir #801

Merged
merged 2 commits into from
Jan 26, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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