-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prep for 4.0.0b2 release supporting py3.11 (#297)
* prep for 4.0.0b2 release supporting py3.11 * update [email protected] * update a few actions * actions/[email protected] * ilammy/[email protected] * docker/[email protected] * changelog
- Loading branch information
Showing
6 changed files
with
25 additions
and
17 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
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
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
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 |
---|---|---|
|
@@ -2,9 +2,9 @@ name: wheels | |
|
||
on: | ||
push: | ||
branches: [master, dev_v4] | ||
branches: [master] | ||
pull_request: | ||
branches: [master, dev_v4] | ||
branches: [master] | ||
types: | ||
# Opened, synchronize, and reopened are the default types | ||
# We add ready_for_review to additionally trigger when converting from draft to non-draft | ||
|
@@ -33,7 +33,7 @@ jobs: | |
submodules: recursive | ||
|
||
- name: Setup Python | ||
uses: actions/setup-python@v3.1.2 | ||
uses: actions/setup-python@v4.3.0 | ||
|
||
- name: Make sdist | ||
run: | | ||
|
@@ -128,6 +128,9 @@ jobs: | |
- os: ubuntu-latest | ||
build: "cp310-manylinux_aarch64" | ||
name: Linux Aarch64 3.10 | ||
- os: ubuntu-latest | ||
build: "cp311-manylinux_aarch64" | ||
name: Linux Aarch64 3.11 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
@@ -136,7 +139,7 @@ jobs: | |
|
||
## Setup Env | ||
|
||
- uses: ilammy/msvc-dev-cmd@v1.10.0 | ||
- uses: ilammy/msvc-dev-cmd@v1.12.0 | ||
if: runner.os == 'Windows' | ||
|
||
- name: Set Windows variables | ||
|
@@ -148,13 +151,13 @@ jobs: | |
- name: Set up QEMU | ||
if: runner.os == 'Linux' | ||
uses: docker/setup-qemu-action@v1.2.0 | ||
uses: docker/setup-qemu-action@v2.1.0 | ||
with: | ||
platforms: aarch64 | ||
|
||
## Build | ||
|
||
- uses: pypa/cibuildwheel@v2.4.0 | ||
- uses: pypa/cibuildwheel@v2.11.2 | ||
env: | ||
CIBW_TEST_REQUIRES: pytest numpy | ||
CIBW_TEST_COMMAND: pytest {project}/tests | ||
|
@@ -183,6 +186,6 @@ jobs: | |
name: artifact | ||
path: dist | ||
|
||
- uses: pypa/[email protected].0 | ||
- uses: pypa/[email protected].1 | ||
with: | ||
password: ${{ secrets.pypi_password }} |
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
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