Skip to content

Commit 98a505d

Browse files
authored
Update release.yml
1 parent 7be4848 commit 98a505d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,16 @@ jobs:
2020
fetch-depth: 0
2121
token: ${{ secrets.PAT }}
2222

23-
- uses: actions/setup-python@v4
23+
- name: Set up Python ${{ matrix.python-version }}
24+
uses: actions/setup-python@v4
2425
with:
2526
python-version: ${{ matrix.python-version }}
2627
cache: "pip"
2728
cache-dependency-path: '**/pyproject.toml'
2829

2930
- name: Install dependencies
3031
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
3233
python${{ matrix.python-version }} -m pip install `grep numpy== requirements/ubuntu-latest_py${{ matrix.python-version }}_extras.txt`
3334
python${{ matrix.python-version }} -m pip install -r requirements/ubuntu-latest_py${{ matrix.python-version }}_extras.txt
3435
python${{ matrix.python-version }} -m pip install --no-deps .[server]

0 commit comments

Comments
 (0)