Skip to content

Commit

Permalink
edit deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
mozman committed Jan 24, 2025
1 parent ae818f2 commit ead8e86
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/deploy_manylinux2010_x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/deploy_manylinux2014_x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit ead8e86

Please sign in to comment.