Support Python 3.12 and bump rustworkx
to 0.13.2 (#990)
#89
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: Wheel Builds | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
rustworkx-core: | |
name: Publish rustworkx-core | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Run cargo publish | |
run: | | |
cd rustworkx-core | |
cargo publish | |
env: | |
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} | |
sdist: | |
name: Build sdist | |
runs-on: ubuntu-latest | |
needs: ["build_wheels", "build-win32-wheels"] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
name: Install Python | |
with: | |
python-version: '3.7' | |
- name: Install deps | |
run: pip install -U twine setuptools-rust | |
- name: Build sdist | |
run: python setup.py sdist | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./dist/* | |
- name: Upload to PyPI | |
run: twine upload ./dist/* | |
env: | |
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} | |
TWINE_USERNAME: retworkx-ci | |
build_wheels: | |
name: Build wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
name: Install Python | |
with: | |
python-version: '3.7' | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Install cibuildwheel | |
run: | | |
python -m pip install cibuildwheel==2.16.1 twine | |
- name: Build wheels | |
run: | | |
python -m cibuildwheel --output-dir wheelhouse | |
env: | |
CIBW_BEFORE_ALL_LINUX: "yum install -y wget && {package}/tools/install_rust.sh" | |
CIBW_ENVIRONMENT_LINUX: 'PATH="$PATH:$HOME/.cargo/bin"' | |
CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET=10.9 | |
CIBW_MANYLINUX_X86_64_IMAGE: quay.io/pypa/manylinux2014_x86_64:latest | |
CIBW_MANYLINUX_I686_IMAGE: quay.io/pypa/manylinux2014_i686:latest | |
CIBW_SKIP: cp36-* pp* *win32 *musl* | |
CIBW_BEFORE_BUILD: pip install -U setuptools-rust | |
CIBW_TEST_REQUIRES: networkx testtools fixtures | |
CIBW_TEST_COMMAND: python -m unittest discover {project}/tests/rustworkx_tests | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./wheelhouse/*.whl | |
- name: Upload to PyPI | |
run: twine upload ./wheelhouse/*.whl | |
env: | |
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} | |
TWINE_USERNAME: retworkx-ci | |
build_wheels_aarch64: | |
name: Build wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
name: Install Python | |
with: | |
python-version: '3.7' | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
with: | |
platforms: all | |
- name: Install cibuildwheel | |
run: | | |
python -m pip install cibuildwheel==2.16.1 twine | |
- name: Build wheels | |
run: | | |
python -m cibuildwheel --output-dir wheelhouse | |
env: | |
CIBW_BEFORE_ALL_LINUX: "yum install -y wget && {package}/tools/install_rust.sh" | |
CIBW_ENVIRONMENT_LINUX: 'PATH="$PATH:$HOME/.cargo/bin" CARGO_NET_GIT_FETCH_WITH_CLI="true"' | |
CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET=10.9 | |
CIBW_MANYLINUX_X86_64_IMAGE: quay.io/pypa/manylinux2014_x86_64:latest | |
CIBW_MANYLINUX_I686_IMAGE: quay.io/pypa/manylinux2014_i686:latest | |
CIBW_SKIP: cp36-* pp* *win32 *musl* | |
CIBW_BEFORE_BUILD: pip install -U setuptools-rust | |
CIBW_TEST_REQUIRES: networkx scipy testtools fixtures | |
CIBW_TEST_COMMAND: python -m unittest discover {project}/tests/rustworkx_tests | |
CIBW_ARCHS_LINUX: aarch64 | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./wheelhouse/*.whl | |
- name: Upload to PyPI | |
run: twine upload ./wheelhouse/*.whl | |
env: | |
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} | |
TWINE_USERNAME: retworkx-ci | |
build_wheels_ppc64le: | |
name: Build wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
name: Install Python | |
with: | |
python-version: '3.7' | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
with: | |
platforms: all | |
- name: Install cibuildwheel | |
run: | | |
python -m pip install cibuildwheel==2.16.1 twine | |
- name: Build wheels | |
run: | | |
python -m cibuildwheel --output-dir wheelhouse | |
env: | |
CIBW_BEFORE_ALL_LINUX: "yum install -y wget && {package}/tools/install_rust.sh" | |
CIBW_ENVIRONMENT_LINUX: 'PATH="$PATH:$HOME/.cargo/bin" CARGO_NET_GIT_FETCH_WITH_CLI="true"' | |
CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET=10.9 | |
CIBW_MANYLINUX_X86_64_IMAGE: quay.io/pypa/manylinux2014_x86_64:latest | |
CIBW_MANYLINUX_I686_IMAGE: quay.io/pypa/manylinux2014_i686:latest | |
CIBW_SKIP: cp36-* cp39-* cp310-* cp311-* pp* *win32 *musl* | |
CIBW_BEFORE_BUILD: pip install -U setuptools-rust | |
CIBW_TEST_REQUIRES: networkx testtools fixtures | |
CIBW_TEST_COMMAND: python -m unittest discover {project}/tests/rustworkx_tests | |
CIBW_ARCHS_LINUX: ppc64le | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./wheelhouse/*.whl | |
- name: Upload to PyPI | |
run: twine upload ./wheelhouse/*.whl | |
env: | |
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} | |
TWINE_USERNAME: retworkx-ci | |
build_wheels_ppc64le_part2: | |
name: Build wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
name: Install Python | |
with: | |
python-version: '3.7' | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
with: | |
platforms: all | |
- name: Install cibuildwheel | |
run: | | |
python -m pip install cibuildwheel==2.16.1 twine | |
- name: Build wheels | |
run: | | |
python -m cibuildwheel --output-dir wheelhouse | |
env: | |
CIBW_BEFORE_ALL_LINUX: "yum install -y wget && {package}/tools/install_rust.sh" | |
CIBW_ENVIRONMENT_LINUX: 'PATH="$PATH:$HOME/.cargo/bin" CARGO_NET_GIT_FETCH_WITH_CLI="true"' | |
CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET=10.9 | |
CIBW_MANYLINUX_X86_64_IMAGE: quay.io/pypa/manylinux2014_x86_64:latest | |
CIBW_MANYLINUX_I686_IMAGE: quay.io/pypa/manylinux2014_i686:latest | |
CIBW_SKIP: cp36-* cp37-* cp38-* pp* *win32 *musl* | |
CIBW_BEFORE_BUILD: pip install -U setuptools-rust | |
CIBW_TEST_REQUIRES: networkx testtools fixtures | |
CIBW_TEST_COMMAND: python -m unittest discover {project}/tests/rustworkx_tests | |
CIBW_ARCHS_LINUX: ppc64le | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./wheelhouse/*.whl | |
- name: Upload to PyPI | |
run: twine upload ./wheelhouse/*.whl | |
env: | |
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} | |
TWINE_USERNAME: retworkx-ci | |
build_wheels_s390x: | |
name: Build wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
name: Install Python | |
with: | |
python-version: '3.7' | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
with: | |
platforms: all | |
- name: Install cibuildwheel | |
run: | | |
python -m pip install cibuildwheel==2.16.1 twine | |
- name: Build wheels | |
run: | | |
python -m cibuildwheel --output-dir wheelhouse | |
env: | |
CIBW_BEFORE_ALL_LINUX: "yum install -y wget && {package}/tools/install_rust.sh" | |
CIBW_ENVIRONMENT_LINUX: 'PATH="$PATH:$HOME/.cargo/bin" CARGO_NET_GIT_FETCH_WITH_CLI="true"' | |
CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET=10.9 | |
CIBW_MANYLINUX_X86_64_IMAGE: quay.io/pypa/manylinux2014_x86_64:latest | |
CIBW_MANYLINUX_I686_IMAGE: quay.io/pypa/manylinux2014_i686:latest | |
CIBW_SKIP: cp36-* cp39-* cp310-* cp311-* pp* *win32 *musl* | |
CIBW_BEFORE_BUILD: pip install -U setuptools-rust | |
CIBW_TEST_REQUIRES: networkx testtools fixtures | |
CIBW_TEST_COMMAND: python -m unittest discover {project}/tests/rustworkx_tests | |
CIBW_ARCHS_LINUX: s390x | |
CIBW_TEST_SKIP: "*-*linux_s390x" | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./wheelhouse/*.whl | |
- name: Upload to PyPI | |
run: twine upload ./wheelhouse/*.whl | |
env: | |
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} | |
TWINE_USERNAME: retworkx-ci | |
build_wheels_s390x_part2: | |
name: Build wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
name: Install Python | |
with: | |
python-version: '3.7' | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
with: | |
platforms: all | |
- name: Install cibuildwheel | |
run: | | |
python -m pip install cibuildwheel==2.16.1 twine | |
- name: Build wheels | |
run: | | |
python -m cibuildwheel --output-dir wheelhouse | |
env: | |
CIBW_BEFORE_ALL_LINUX: "yum install -y wget && {package}/tools/install_rust.sh" | |
CIBW_ENVIRONMENT_LINUX: 'PATH="$PATH:$HOME/.cargo/bin" CARGO_NET_GIT_FETCH_WITH_CLI="true"' | |
CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET=10.9 | |
CIBW_MANYLINUX_X86_64_IMAGE: quay.io/pypa/manylinux2014_x86_64:latest | |
CIBW_MANYLINUX_I686_IMAGE: quay.io/pypa/manylinux2014_i686:latest | |
CIBW_SKIP: cp36-* cp37-* cp38-* pp* *win32 *musl* | |
CIBW_BEFORE_BUILD: pip install -U setuptools-rust | |
CIBW_TEST_REQUIRES: networkx testtools fixtures | |
CIBW_TEST_COMMAND: python -m unittest discover {project}/tests/rustworkx_tests | |
CIBW_ARCHS_LINUX: s390x | |
CIBW_TEST_SKIP: "*-*linux_s390x" | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./wheelhouse/*.whl | |
- name: Upload to PyPI | |
run: twine upload ./wheelhouse/*.whl | |
env: | |
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} | |
TWINE_USERNAME: retworkx-ci | |
build-mac-arm-wheels: | |
name: Build wheels on macos for arm and universal2 | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build wheels | |
uses: joerick/cibuildwheel@v2.16.1 | |
env: | |
CIBW_BEFORE_ALL: rustup target add aarch64-apple-darwin | |
CIBW_ARCHS_MACOS: arm64 universal2 | |
CIBW_BEFORE_BUILD: pip install -U setuptools-rust | |
CIBW_ENVIRONMENT: CARGO_BUILD_TARGET="aarch64-apple-darwin" PYO3_CROSS_LIB_DIR="/Library/Frameworks/Python.framework/Versions/$(python -c 'import sys; print(str(sys.version_info[0])+"."+str(sys.version_info[1]))')/lib/python$(python -c 'import sys; print(str(sys.version_info[0])+"."+str(sys.version_info[1]))')" | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./wheelhouse/*.whl | |
- uses: actions/setup-python@v4 | |
name: Install Python | |
with: | |
python-version: '3.8' | |
- name: Install twine | |
run: | | |
python -m pip install twine | |
- name: Upload to PyPI | |
run: twine upload ./wheelhouse/*.whl | |
env: | |
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} | |
TWINE_USERNAME: retworkx-ci | |
build-win32-wheels: | |
name: Build wheels on win32 | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
name: Install Python | |
with: | |
python-version: '3.7' | |
architecture: 'x86' | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: i686-pc-windows-msvc | |
- name: Force win32 rust | |
run: rustup default stable-i686-pc-windows-msvc | |
- name: Install cibuildwheel | |
run: | | |
python -m pip install cibuildwheel==2.16.1 twine | |
- name: Build wheels | |
run: | | |
python -m cibuildwheel --output-dir wheelhouse | |
env: | |
CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET=10.9 | |
CIBW_SKIP: cp36-* pp* *amd64 *musl* | |
CIBW_BEFORE_BUILD: pip install -U setuptools-rust | |
CIBW_TEST_REQUIRES: networkx testtools fixtures | |
CIBW_TEST_COMMAND: python -m unittest discover {project}/tests/rustworkx_tests | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./wheelhouse/*.whl | |
- name: Upload to PyPI | |
run: twine upload ./wheelhouse/*.whl | |
env: | |
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} | |
TWINE_USERNAME: retworkx-ci | |
retworkx-compat-build: | |
name: Build retworkx | |
runs-on: ubuntu-latest | |
needs: ["build_wheels", "build-win32-wheels"] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
name: Install Python | |
with: | |
python-version: '3.10' | |
- name: Install deps | |
run: pip install -U twine setuptools-rust wheel build | |
- name: Build sdist | |
run: python setup.py bdist_wheel | |
env: | |
RUSTWORKX_PKG_NAME: retworkx | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./dist/* | |
- name: Upload to PyPI | |
run: twine upload ./dist/* | |
env: | |
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} | |
TWINE_USERNAME: retworkx-ci |