Skip to content

Commit b695607

Browse files
Fix premerge (#2467)
1 parent 5c51c80 commit b695607

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/premerge.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ jobs:
3636
python-version: ${{ matrix.python-version }}
3737
- name: Install dependencies
3838
run: |
39-
python -m pip install --upgrade pip
40-
pip install -e .[dev]
39+
python3 -m pip install --upgrade pip
40+
python3 -m pip install --no-cache-dir -e .[dev]
4141
- name: Run unit test
4242
run: ./runtest.sh
4343

@@ -56,8 +56,8 @@ jobs:
5656
python-version: ${{ matrix.python-version }}
5757
- name: Install dependencies
5858
run: |
59-
python -m pip install --upgrade pip
60-
pip install -e .[dev]
61-
pip install build twine torch torchvision
59+
python3 -m pip install --upgrade pip
60+
python3 -m pip install --no-cache-dir -e .[dev]
61+
python3 -m pip install --no-cache-dir build twine torch torchvision
6262
- name: Run wheel build
6363
run: python3 -m build --wheel

0 commit comments

Comments
 (0)