-
-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* cis: do not build wheels on 3.11 yet (betas are not ABI stable) Alos update to setup-pythonv4 * Revert use of nullptr in PyTuple_SET_ITEM This reverts commit 4a568b7fb6ef9996181013b960a18ceec56d8889, reversing changes made to 13b6186. * cis: force to use 3.11beta4 and update checkout action * fix typo
- Loading branch information
1 parent
081a5f4
commit c782d1d
Showing
5 changed files
with
15 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,9 +19,9 @@ jobs: | |
git fetch --prune --unshallow | ||
git fetch --depth=1 origin +refs/tags/*:refs/tags/* | ||
- name: Setup Python | ||
uses: actions/setup-python@v3 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.10' | ||
python-version: '3.x' | ||
- name: Build sdist | ||
run: | | ||
pip install --upgrade pip | ||
|
@@ -77,9 +77,9 @@ jobs: | |
git fetch --prune --unshallow | ||
git fetch --depth=1 origin +refs/tags/*:refs/tags/* | ||
- name: Setup Python | ||
uses: actions/setup-python@v3 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.9' | ||
python-version: '3.x' | ||
- name: Set up QEMU | ||
if: runner.os == 'Linux' && matrix.archs != 'auto' | ||
uses: docker/setup-qemu-action@v1 | ||
|
@@ -102,7 +102,7 @@ jobs: | |
uses: pypa/[email protected] | ||
if: matrix.manylinux_version == 'manylinux2010' | ||
env: | ||
CIBW_BUILD: "cp39-* cp310-* cp311-* pp37-*" | ||
CIBW_BUILD: "cp39-* cp310-* pp37-*" | ||
CIBW_ARCHS_MACOS: x86_64 universal2 arm64 | ||
CIBW_ARCHS_LINUX: ${{ matrix.archs }} | ||
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2010 | ||
|
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