Skip to content

Commit 01782d1

Browse files
committed
make sure pip is upgraded
1 parent 1ae2194 commit 01782d1

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,11 @@ jobs:
4949
5050
- name: Install dependencies
5151
run: |
52-
python -m pip install --user `grep numpy== requirements/ubuntu-latest_py${{ matrix.python-version }}_extras.txt`
53-
python -m pip install --user -r requirements/ubuntu-latest_py${{ matrix.python-version }}_extras.txt
54-
python -m pip install --user --no-deps .[server]
52+
python -m pip install --upgrade pip
53+
python -m pip install `grep numpy== requirements/ubuntu-latest_py${{ matrix.python-version }}_extras.txt`
54+
python -m pip install -r requirements/ubuntu-latest_py${{ matrix.python-version }}_extras.txt
55+
python -m pip install --upgrade pip
56+
python -m pip install --no-deps .[server]
5557
5658
- name: Build package
5759
run: SETUPTOOLS_SCM_PRETEND_VERSION=${{env.NEXT_RELEASE}} python -m build

0 commit comments

Comments
 (0)