-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
7 additions
and
3 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 |
---|---|---|
|
@@ -15,7 +15,9 @@ jobs: | |
- name: Build manylinux2010_x86_64 wheels | ||
uses: pypa/[email protected] | ||
env: | ||
CIBW_BEFORE_BUILD: "pip install wheel cython" | ||
CIBW_BEFORE_BUILD: | ||
pip install wheel cython | ||
pip install -U packaging | ||
CIBW_ARCHS_LINUX: "x86_64" | ||
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2010 | ||
# cp310 is deployed for manylinux2014 | ||
|
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 |
---|---|---|
|
@@ -15,10 +15,12 @@ jobs: | |
- name: Build manylinux2014_x86_64 wheels | ||
uses: pypa/[email protected] | ||
env: | ||
CIBW_BEFORE_BUILD: "pip install setuptools wheel cython" | ||
CIBW_BEFORE_BUILD: | ||
pip install setuptools wheel cython | ||
pip install -U packaging | ||
CIBW_ARCHS_LINUX: "x86_64" | ||
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014 | ||
# cp37 - cp39 are deployed for manylinux2010 | ||
# cp39 are deployed for manylinux2010 | ||
CIBW_BUILD: cp310-* cp311-* cp312-* cp313-* | ||
- name: Upload manylinux2014_x86_64 wheels to PyPI | ||
env: | ||
|