Skip to content

Commit

Permalink
Hotfix PyTorch Version Installation in CI Workflow for Minimum Versio…
Browse files Browse the repository at this point in the history
…n Matrix (#2889)

* Fix ci torch version matrix

* Patch torch minor version
  • Loading branch information
yhna940 authored Jul 15, 2024
1 parent f4f1260 commit 709fd1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
if [[ ${{ matrix.test-kind }} = test_prod ]]; then pip install -e .[test_prod]; fi
if [[ ${{ matrix.test-kind }} != test_prod ]]; then pip install -e .[testing,test_trackers]; fi
if [[ ${{ matrix.test-kind }} = test_rest ]]; then pip uninstall comet_ml -y; fi
if [[ ${{ matrix.test-kind }} = minimum ]]; then pip install torch==1.10.0; fi
if [[ ${{ matrix.pytorch-version }} = minimum ]]; then pip install torch==2.3.1; fi
pip install pytest-reportlog tabulate setuptools
- name: Show installed libraries
Expand Down

0 comments on commit 709fd1e

Please sign in to comment.