add support of numpy2.0 #23
Workflow file for this run
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
name: publish-mocpy-wheels | |
on: | |
push: | |
tags: | |
- v* | |
# Allows to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
# Linux is specific: because of manylinux, we have to use a docker file | |
build-linux64-wheels: | |
runs-on: ubuntu-latest | |
# CentOS 7 64 bits Docker Hub image that 'build-linux-wheels' executes in. | |
# See https://github.com/pypa/manylinux for this particular container: | |
# * CPython 3.8, 3.9, 3.10, 3.11 and 3.12 installed in /opt/python/<python tag>-<abi tag> | |
container: quay.io/pypa/manylinux_2_28_x86_64:latest | |
steps: | |
- name: "Checkout the full project" | |
uses: actions/checkout@v3 | |
- name: "Install Rust" | |
run: | | |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y | |
- name: "Build and publish wheels" | |
shell: bash | |
env: | |
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN_FXP }} | |
run: | | |
source $HOME/.cargo/env | |
for PYBIN in /opt/python/cp3{8,9,10,11,12,13}-*/bin; do | |
"${PYBIN}/pip" install --upgrade pip | |
"${PYBIN}/pip" install maturin | |
"${PYBIN}/maturin" publish -i "${PYBIN}/python" --skip-existing --compatibility manylinux_2_28 | |
# "${PYBIN}/maturin" publish -i "${PYBIN}/python" --no-sdist --skip-existing --compatibility musllinux_1_2 | |
done | |
build-linux64-wheels-manylinux2014: | |
runs-on: ubuntu-latest | |
# CentOS 7 64 bits Docker Hub image that 'build-linux-wheels' executes in. | |
# See https://github.com/pypa/manylinux for this particular container: | |
# * CPython 3.8, 3.9, 3.10, 3.11 and 3.12 installed in /opt/python/<python tag>-<abi tag> | |
container: quay.io/pypa/manylinux2014_x86_64:latest | |
env: {ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true} # Allow using Node16 actions required for CentOS7 | |
steps: | |
- name: "Checkout the full project" | |
uses: actions/checkout@v3 | |
- name: "Install Rust" | |
run: | | |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y | |
- name: "Build and publish wheels" | |
shell: bash | |
env: | |
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN_FXP }} | |
run: | | |
source $HOME/.cargo/env | |
for PYBIN in /opt/python/cp3{8,9,10,11,12,13}-*/bin; do | |
"${PYBIN}/pip" install --upgrade pip | |
"${PYBIN}/pip" install maturin | |
"${PYBIN}/maturin" publish -i "${PYBIN}/python" --skip-existing --compatibility manylinux2014 | |
# "${PYBIN}/maturin" publish -i "${PYBIN}/python" --no-sdist --skip-existing --compatibility musllinux_1_2 | |
done | |
# Linux is specific: because of manylinux, we have to use a docker file | |
build-linux32-wheels: | |
runs-on: ubuntu-latest | |
# CentOS 7 32 bits Docker Hub image that 'build-linux-wheels' executes in. | |
# See https://github.com/pypa/manylinux for this particular container: | |
# * CPython 3.7, 3.8, 3.9, 3.10, 3.11, 3.12, 13 installed in /opt/python/<python tag>-<abi tag> | |
env: | |
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN_FXP }} | |
img: quay.io/pypa/manylinux2014_i686 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: "Set up QEMU" | |
id: qemu | |
uses: docker/setup-qemu-action@v3 | |
- name: Install dependencies | |
run: | | |
docker run --rm -v ${{ github.workspace }}:/ws:rw --workdir=/ws \ | |
-e MATURIN_PYPI_TOKEN=${{ secrets.PYPI_API_TOKEN_FXP }} \ | |
${{ env.img }} \ | |
bash -exc 'curl --proto "=https" --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && \ | |
source $HOME/.cargo/env && \ | |
for PYBIN in /opt/python/cp3{8,9,10,11,12,13}-*/bin; do | |
echo "Loop on PYBIN: $PYBIN" | |
"${PYBIN}/pip" install --upgrade pip | |
"${PYBIN}/pip" install maturin | |
"${PYBIN}/maturin" -V | |
"${PYBIN}/maturin" publish -i "${PYBIN}/python" -v --no-sdist --skip-existing --compatibility manylinux2014 | |
"${PYBIN}/maturin" publish -i "${PYBIN}/python" -v --no-sdist --skip-existing --compatibility musllinux_1_2 | |
done' | |
build-aarch64-wheels: | |
runs-on: ubuntu-latest | |
env: | |
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN_FXP }} | |
img: quay.io/pypa/manylinux2014_aarch64 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: "Set up QEMU" | |
id: qemu | |
uses: docker/setup-qemu-action@v3 | |
- name: Install dependencies | |
run: | | |
docker run --rm -v ${{ github.workspace }}:/ws:rw --workdir=/ws \ | |
-e MATURIN_PYPI_TOKEN=${{ secrets.PYPI_API_TOKEN_FXP }} \ | |
${{ env.img }} \ | |
bash -exc 'curl --proto "=https" --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-host aarch64-unknown-linux-gnu -y && \ | |
source $HOME/.cargo/env && \ | |
for PYBIN in /opt/python/cp3{8,9,10,11,12,13}-*/bin; do | |
echo "Loop on PYBIN: $PYBIN" | |
"${PYBIN}/pip" install maturin | |
"${PYBIN}/maturin" -V | |
"${PYBIN}/maturin" publish -i "${PYBIN}/python" --no-sdist --skip-existing --compatibility manylinux2014 --target aarch64-unknown-linux-gnu --config "net.git-fetch-with-cli = true" | |
"${PYBIN}/maturin" publish -i "${PYBIN}/python" --no-sdist --skip-existing --compatibility musllinux_1_2 --target aarch64-unknown-linux-gnu --config "net.git-fetch-with-cli = true" | |
done' | |
build-windows-wheels: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
# See https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast | |
# run all matrix jobs even if on is failing (default behavior is to stop all jobs) | |
fail-fast: false | |
matrix: | |
os: [windows-latest] | |
python-version: ['3.8', '3.9', '3.10', '3.11','3.12'] | |
steps: | |
# Checkout the project | |
- uses: actions/checkout@v4 | |
# Set up python, see https://docs.github.com/en/actions/guides/building-and-testing-python | |
- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
# For secrets, see https://docs.github.com/en/actions/reference/encrypted-secrets | |
- name: Build and publish wheel for Python ${{ matrix.python-version }} on ${{ matrix.os }} | |
# We do not use environement variable for user, because it seems that the way of providing it in the command | |
# line is not the same for macos and for windows. We should create 2 different actions (see | |
# https://docs.github.com/en/actions/reference/encrypted-secrets ) | |
env: | |
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN_FXP }} | |
run: | | |
#python3 -m pip install maturin | |
pip install --upgrade pip | |
pip install maturin | |
#maturin build --release --no-sdist | |
#maturin publish --no-sdist --skip-existing | |
maturin -V | |
rustc -vV | |
maturin publish --interpreter python${{matrix.python_version}} --no-sdist --skip-existing | |
build-macos-wheels: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
# See https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast | |
# run all matrix jobs even if on is failling (default behaviour is to stop all jobs) | |
fail-fast: false | |
matrix: | |
os: [macOS-latest] | |
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] | |
steps: | |
# Checkout the project | |
- uses: actions/checkout@v4 | |
# Set up python, see https://docs.github.com/en/actions/guides/building-and-testing-python | |
- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
# For secrets, see https://docs.github.com/en/actions/reference/encrypted-secrets | |
- name: Build and publish wheel for Python ${{ matrix.python-version }} on ${{ matrix.os }} | |
# We do not use environement variable for user, because it seems that the way of providing it in the command | |
# line is not the same for macos and for windows. We should create 2 different actions (see | |
# https://docs.github.com/en/actions/reference/encrypted-secrets ) | |
env: | |
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN_FXP }} | |
run: | | |
#python3 -m pip install maturin | |
rustup target add x86_64-apple-darwin | |
pip install --upgrade pip | |
pip install maturin | |
maturin -V | |
maturin publish --interpreter python${{matrix.python_version}} --no-sdist --target universal2-apple-darwin --skip-existing | |
maturin publish --interpreter python${{matrix.python_version}} --no-sdist --skip-existing | |