We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 358e3b4 commit 6b69a9cCopy full SHA for 6b69a9c
.github/workflows/update-requirements.yml
@@ -14,8 +14,8 @@ on:
14
workflow_dispatch:
15
16
jobs:
17
- upgrade-requirements:
18
- name: Upgrade requirements.txt
+ update-requirements:
+ name: Update requirements.txt
19
runs-on: ubuntu-latest
20
strategy:
21
matrix:
@@ -46,7 +46,7 @@ jobs:
46
# and dependencies installed from outside PyPI.
47
# sed is used to loosen the version matches for PyTorch
48
# so that any CUDA version matches.
49
- run: uv pip freeze | grep -v -E "( @ |^-e)" | sed -E 's/==([A-Za-z0-9.]+)\+[A-Za-z0-9.]+/~=\1/' >> requirements.txt
+ run: pip freeze | grep -v -E "( @ |^-e)" | sed -E 's/==([A-Za-z0-9.]+)\+[A-Za-z0-9.]+/~=\1/' >> requirements.txt
50
# Need to manually run tests here because the pull request opened later will not
51
# run the test workflow.
52
#
0 commit comments