File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -20,15 +20,16 @@ jobs:
20
20
fetch-depth : 0
21
21
token : ${{ secrets.PAT }}
22
22
23
- - uses : actions/setup-python@v4
23
+ - name : Set up Python ${{ matrix.python-version }}
24
+ uses : actions/setup-python@v4
24
25
with :
25
26
python-version : ${{ matrix.python-version }}
26
27
cache : " pip"
27
28
cache-dependency-path : ' **/pyproject.toml'
28
29
29
30
- name : Install dependencies
30
31
run : |
31
- python${{ matrix.python-version }} -m pip install --upgrade pip build
32
+ python${{ matrix.python-version }} -m pip install --upgrade pip packaging wheel build
32
33
python${{ matrix.python-version }} -m pip install `grep numpy== requirements/ubuntu-latest_py${{ matrix.python-version }}_extras.txt`
33
34
python${{ matrix.python-version }} -m pip install -r requirements/ubuntu-latest_py${{ matrix.python-version }}_extras.txt
34
35
python${{ matrix.python-version }} -m pip install --no-deps .[server]
You can’t perform that action at this time.
0 commit comments