We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9120355 commit b53d332Copy full SHA for b53d332
.github/workflows/python-unittests.yaml
@@ -28,6 +28,14 @@ jobs:
28
architecture: x64
29
- name: Checkout TorchX
30
uses: actions/checkout@v2
31
+ - name: Pin pip-25.0.1
32
+ run: |
33
+ set -eux
34
+ # required since pip-25.1 breaks a few old deps in dev-requirements.txt
35
+ # (upgrading those will take some time)
36
+ # see: https://pip.pypa.io/en/stable/news/#v25-1
37
+ python -m pip install pip==25.0.1
38
+ pip --version
39
- name: Install dependencies
40
run: |
41
set -eux
dev-requirements.txt
@@ -7,7 +7,6 @@ kubernetes==25.3.0
7
flake8==3.9.0
8
fsspec==2024.3.1
9
s3fs==2024.3.1
10
-google-api-core
11
google-cloud-batch==0.17.14
12
google-cloud-logging==3.10.0
13
google-cloud-runtimeconfig==0.34.0
0 commit comments