-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[workflow] upgrad python version to 3.10 (#2472)
* [workflow] upgrad python version to 3.10 * [workflow] try to pass
- Loading branch information
1 parent
1792a67
commit 8bad166
Showing
4 changed files
with
8 additions
and
8 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 |
---|---|---|
|
@@ -21,13 +21,13 @@ jobs: | |
# Used to host cibuildwheel | ||
- uses: actions/setup-python@v3 | ||
with: | ||
python-version: '3.6' | ||
python-version: '3.10' | ||
|
||
- name: Build wheels | ||
uses: pypa/[email protected] | ||
env: | ||
CIBW_BUILD_VERBOSITY: 1 | ||
CIBW_BUILD: "cp36-* cp37-* cp38-* cp39-*" | ||
CIBW_BUILD: "cp36-* cp37-* cp38-* cp39-* cp310-*" | ||
# Disable building PyPy wheels on all platforms | ||
# Skip 32-bit builds | ||
CIBW_SKIP: "pp* *-win32 *-manylinux_i686 *-musllinux_*" | ||
|