Skip to content

Commit

Permalink
[sharktank] Avoid torch pre-releases (#712)
Browse files Browse the repository at this point in the history
Drops passing `--pre` to avoid that pre-releases of torch get installed
and switch to stable channel.
  • Loading branch information
marbre authored Dec 18, 2024
1 parent aaee29a commit 147228b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci-sharktank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
# Note: We install in three steps in order to satisfy requirements
# from non default locations first. Installing the PyTorch CPU
# wheels saves multiple minutes and a lot of bandwidth on runner setup.
pip install --no-compile --pre --index-url https://download.pytorch.org/whl/test/cpu torch==${{matrix.torch-version}}+cpu
pip install --no-compile --index-url https://download.pytorch.org/whl/cpu torch==${{matrix.torch-version}}+cpu
# Install nightly IREE packages.
# We could also pin to a known working or stable version.
Expand Down

0 comments on commit 147228b

Please sign in to comment.