Skip to content

Commit 5f71056

Browse files
committed
GH actions: install wheel, update pytest-docs
1 parent 31b0c75 commit 5f71056

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ 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 packaging
28+
python${{ matrix.python-version }} -m pip install --upgrade pip packaging wheel
2929
python${{ matrix.python-version }} -m pip install `grep numpy== requirements/ubuntu-latest_py${{ matrix.python-version }}_extras.txt`
3030
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 .

.github/workflows/pytest-docs.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,10 @@ jobs:
2323
run: sudo apt-get update && sudo apt-get install firefox-geckodriver
2424
- name: Install dependencies
2525
run: |
26-
python -m pip install --user --upgrade pip pip-tools numpy
27-
python -m piptools sync --user requirements/ubuntu-latest_py${{ matrix.python-version }}_extras.txt
28-
python -m pip install --user --no-deps .
26+
python${{ matrix.python-version }} -m pip install --upgrade pip packaging wheel
27+
python${{ matrix.python-version }} -m pip install `grep numpy== requirements/ubuntu-latest_py${{ matrix.python-version }}_extras.txt`
28+
python${{ matrix.python-version }} -m pip install -r requirements/ubuntu-latest_py${{ matrix.python-version }}_extras.txt
29+
python${{ matrix.python-version }} -m pip install --no-deps .
2930
- name: Build new docs
3031
run: |
3132
cd docs_rst

0 commit comments

Comments
 (0)