Skip to content

Commit b858436

Browse files
authored
Update release.yml
1 parent 6de65da commit b858436

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,21 @@ jobs:
1515
python-version: ["3.10"]
1616

1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
with:
2020
fetch-depth: 0
2121
token: ${{ secrets.PAT }}
2222

2323
- name: Set up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@v4
24+
uses: actions/setup-python@v5
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727
cache: "pip"
2828
cache-dependency-path: '**/pyproject.toml'
2929

3030
- name: Install dependencies
3131
run: |
32-
python${{ matrix.python-version }} -m pip install --upgrade pip packaging wheel build
32+
python${{ matrix.python-version }} -m pip install --upgrade pip packaging wheel build cython setuptools
3333
python${{ matrix.python-version }} -m pip install `grep numpy== requirements/ubuntu-latest_py${{ matrix.python-version }}_extras.txt`
3434
python${{ matrix.python-version }} -m pip install -r requirements/ubuntu-latest_py${{ matrix.python-version }}_extras.txt
3535
python${{ matrix.python-version }} -m pip install --upgrade pip

0 commit comments

Comments
 (0)