Skip to content

PyPI manylinux2014_x86_64 deployer #81

PyPI manylinux2014_x86_64 deployer

PyPI manylinux2014_x86_64 deployer #81

name: PyPI manylinux2014_x86_64 deployer
on:
push:
tags:
- 'v*'
workflow_dispatch:
jobs:
# Build and deploy manylinux2014_x86_64 wheels
# follow numpy schema: https://pypi.org/project/numpy/#files
Linux-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build manylinux2014_x86_64 wheels
uses: pypa/[email protected]
env:
CIBW_BEFORE_BUILD: "pip install -U setuptools wheel cython packaging"
CIBW_ARCHS_LINUX: "x86_64"
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
# cp39 are deployed for manylinux2010
CIBW_BUILD: cp310-* cp311-* cp312-* cp313-*
- name: Upload manylinux2014_x86_64 wheels to PyPI
env:
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
run: |
ls -l ./wheelhouse
pip install -U packaging twine
twine upload --skip-existing ./wheelhouse/*.whl