Skip to content
This repository was archived by the owner on Oct 9, 2023. It is now read-only.

Commit 2907166

Browse files
authored
ci: bump pip & cache (#1598)
1 parent a01eb47 commit 2907166

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci-testing.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,12 @@ jobs:
106106
- name: Install package
107107
run: |
108108
# todo: some dependency has not correct format of their extras
109-
python -m pip install "pip==22.2.1"
109+
python -m pip install "pip==22.3.1"
110110
# todo: this is a hack to be able to install packages that are checking torch version while install
111111
pip install numpy Cython "torch>=1.11.0" -f $TORCH_URL
112112
pip install .[$EXTRAS,test] --upgrade \
113-
--prefer-binary --no-cache-dir -f $TORCH_URL \
113+
--prefer-binary \
114+
-f $TORCH_URL \
114115
-f https://data.pyg.org/whl/torch-1.13.1+cpu.html # this extra URL is for graph extras
115116
pip list
116117
@@ -125,7 +126,7 @@ jobs:
125126
run: |
126127
pip install .[$EXTRAS,test] \
127128
-r requirements/testing_${{ matrix.topic }}.txt \
128-
--upgrade --prefer-binary -f $TORCH_URL --no-cache-dir
129+
--upgrade --prefer-binary -f $TORCH_URL
129130
pip cache info
130131
pip list
131132

0 commit comments

Comments
 (0)