Skip to content

Commit 1d02869

Browse files
committed
ci/gpu: drop duplicate/confusing dep. installations
1 parent 6e90049 commit 1d02869

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.azure/gpu-benchmarks.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,7 @@ jobs:
7575
pip list
7676
displayName: "Image info & NVIDIA"
7777
78-
- bash: |
79-
pip install -e .[dev] --find-links ${TORCH_URL}
80-
pip install setuptools==75.6.0 jsonargparse==4.35.0
78+
- bash: pip install -e .[dev] --find-links ${TORCH_URL}
8179
env:
8280
FREEZE_REQUIREMENTS: "1"
8381
displayName: "Install package"

.azure/gpu-tests-fabric.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,7 @@ jobs:
112112
- bash: |
113113
set -e
114114
extra=$(python -c "print({'lightning': 'fabric-'}.get('$(PACKAGE_NAME)', ''))")
115-
pip install -e ".[${extra}dev]" pytest-timeout -U --extra-index-url="${TORCH_URL}"
116-
pip install setuptools==75.6.0 jsonargparse==4.35.0
115+
pip install -e ".[${extra}dev]" -U --extra-index-url="${TORCH_URL}"
117116
displayName: "Install package & dependencies"
118117
119118
- bash: |

.azure/gpu-tests-pytorch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116
- bash: |
117117
set -e
118118
extra=$(python -c "print({'lightning': 'pytorch-'}.get('$(PACKAGE_NAME)', ''))")
119-
pip install -e ".[${extra}dev]" pytest-timeout -U --extra-index-url="${TORCH_URL}"
119+
pip install -e ".[${extra}dev]" -U --extra-index-url="${TORCH_URL}"
120120
displayName: "Install package & dependencies"
121121
122122
- bash: pip uninstall -y lightning

0 commit comments

Comments
 (0)