Skip to content

Commit 3448f24

Browse files
committed
pull-request: use standard pip install
1 parent 7ffa837 commit 3448f24

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pull-request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
run: sudo apt-get update && sudo apt-get install chromium-chromedriver
2626
- name: Install dependencies
2727
run: |
28-
python${{ matrix.python-version }} -m pip install --upgrade pip pip-tools
28+
python${{ matrix.python-version }} -m pip install --upgrade pip
2929
python${{ matrix.python-version }} -m pip install `grep numpy== requirements/ubuntu-latest_py${{ matrix.python-version }}_extras.txt`
30-
python${{ matrix.python-version }} -m piptools sync requirements/ubuntu-latest_py${{ matrix.python-version }}_extras.txt
30+
python${{ matrix.python-version }} -m pip install -r requirements/ubuntu-latest_py${{ matrix.python-version }}_extras.txt
3131
python${{ matrix.python-version }} -m pip install --no-deps .
3232
- name: Test modules
3333
run: python${{ matrix.python-version }} -m pytest tests

0 commit comments

Comments
 (0)