We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 143cf2a commit b760915Copy full SHA for b760915
.github/workflows/ci-pdm-install-and-test.yml
@@ -24,9 +24,9 @@ jobs:
24
25
- name: Install torch (CPU)
26
run: |
27
- python -m pip install torch --index-url https://download.pytorch.org/whl/cpu
+ pdm run python -m pip install torch --index-url https://download.pytorch.org/whl/cpu
28
# check that the CPU version is installed
29
- python -c "import torch; assert torch.__version__.endswith('+gpu')"
+ pdm run python -c "import torch; assert torch.__version__.endswith('+gpu')"
30
31
- name: Install package (including dev dependencies)
32
0 commit comments