File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 25
25
run : sudo apt-get update && sudo apt-get install chromium-chromedriver
26
26
- name : Install dependencies
27
27
run : |
28
- python -m pip install --user --upgrade pip pip-tools numpy
29
- python -m piptools sync --user requirements/ubuntu-latest_py${{ matrix.python-version }}_extras.txt
30
- python -m pip install --user --no-deps .
28
+ python${{ matrix.python-version }} -m pip install --upgrade pip pip-tools
29
+ 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
31
+ python${{ matrix.python-version }} -m pip install --no-deps .
31
32
- name : Test modules
32
33
run : pytest tests
33
34
- name : Test example apps
Original file line number Diff line number Diff line change 26
26
- name : Upgrade Python dependencies
27
27
shell : bash
28
28
run : |
29
- python -m pip install --upgrade pip pip-tools numpy
30
- python -m piptools compile -q --upgrade --resolver=backtracking -o requirements/${{ matrix.os }}_py${{ matrix.python-version }}.txt pyproject.toml
31
- python -m piptools compile -q --upgrade --resolver=backtracking --all-extras -o requirements/${{ matrix.os }}_py${{ matrix.python-version }}_extras.txt pyproject.toml
29
+ python${{ matrix.python-version }} -m pip install --upgrade pip pip-tools
30
+ python${{ matrix.python-version }} -m pip install `grep numpy== requirements/{{ matrix.os }}_py${{ matrix.python-version }}_extras.txt`
31
+ python${{ matrix.python-version }} -m piptools compile -q --upgrade --resolver=backtracking -o requirements/${{ matrix.os }}_py${{ matrix.python-version }}.txt pyproject.toml
32
+ python${{ matrix.python-version }} -m piptools compile -q --upgrade --resolver=backtracking --all-extras -o requirements/${{ matrix.os }}_py${{ matrix.python-version }}_extras.txt pyproject.toml
32
33
- name : Detect changes
33
34
id : changes
34
35
shell : bash
You can’t perform that action at this time.
0 commit comments