-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* windows-2019 to windows-2022 * actions/setup-python to v5 * actions/checkout to v5 in /.github/workflows
- Loading branch information
1 parent
6c1fd02
commit d53e057
Showing
1 changed file
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,9 +10,9 @@ jobs: | |
|
||
build_setup: | ||
name: Prepare environment for wheel builds | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v4 | ||
- name: Prepare wheel build | ||
run: make -C python/ setup | ||
- name: Store wheel configuration files | ||
|
@@ -27,14 +27,14 @@ jobs: | |
needs: [build_setup] | ||
strategy: | ||
matrix: | ||
os: [ubuntu-20.04, windows-2019] | ||
os: [ubuntu-24.04, windows-2022] | ||
arch: [auto32, auto64, aarch64] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-python@v2 | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
- name: Install cibuildwheel | ||
run: python -m pip install cibuildwheel==2.1.2 | ||
run: python -m pip install cibuildwheel | ||
- name: Get wheel configuration files | ||
uses: actions/[email protected] | ||
with: | ||
|
@@ -53,12 +53,12 @@ jobs: | |
|
||
build_sdist: | ||
name: Build source distribution | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-24.04 | ||
needs: [build_setup] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v4 | ||
- name: Install cython | ||
run: python -m pip install cython==0.29.24 | ||
run: python -m pip install cython | ||
- name: Get wheel configuration files | ||
uses: actions/[email protected] | ||
with: | ||
|
@@ -76,7 +76,7 @@ jobs: | |
|
||
upload_pypi: | ||
name: Upload binary wheels to PyPI | ||
runs-on: ubuntu-20.04 | ||
runs-on: ubuntu-24.04 | ||
needs: [build_wheels, build_sdist] | ||
|
||
steps: | ||
|