Skip to content

Commit

Permalink
fix(gandlf ci): pin gandlf to 0.1.1
Browse files Browse the repository at this point in the history
Signed-off-by: Pant, Akshay <[email protected]>
  • Loading branch information
theakshaypant committed Dec 5, 2024
1 parent 86c03db commit 1b93c52
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/gandlf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install typer==0.11.1
pip install torch==2.5.0+cpu torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cpu
pip install torch==2.3.1+cpu torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cpu
pip install .
- name: Install GaNDLF
run: |
Expand All @@ -39,7 +39,9 @@ jobs:
git fetch --tags
echo "Checkout the latest GaNDLF tag"
latestTag=$(git describe --tags "$(git rev-list --tags --max-count=1)")
git checkout $latestTag
# Instead of using the latest tag, we are pinning gandlf to an older version as changes are required
# in torch to work with a later version.
git checkout 0.1.1
- name: GaNDLF Task Runner Test
run: |
cd gandlf
Expand Down

0 comments on commit 1b93c52

Please sign in to comment.