Skip to content

Stop cibuildwheel from building for Python 3.12 with the env CIBW_BUI… #23

Stop cibuildwheel from building for Python 3.12 with the env CIBW_BUI…

Stop cibuildwheel from building for Python 3.12 with the env CIBW_BUI… #23

Workflow file for this run

name: Build
on: [push, pull_request]
env:
CIBW_BEFORE_BUILD: pip install setuptools oldest-supported-numpy
# CIBW_BUILD_VERBOSITY: 1
# CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: python -c "import sys, pyfastnoisesimd; sys.exit(0 if pyfastnoisesimd.test().wasSuccessful() else 1)"
CIBW_SKIP: "*musllinux*"
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
permissions:
contents: write
env:
CIBW_BUILD: ${{ matrix.cibw_build }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
cibw_build: ["cp3{8,9,10,11}-*"]
p_ver: ["3.8-3.11"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
name: Install Python
with:
python-version: '3.x'
- name: Install cibuildwheel
run: |
python -m pip install cibuildwheel
- name: Build wheels for Python
run: |
python -m cibuildwheel --output-dir wheelhouse
- name: Make sdist
if: ${{ matrix.os == 'windows-latest' }}
run: |
python -m pip install build
python -m build --sdist --outdir wheelhouse .
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*
- name: Upload to GitHub Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: wheelhouse/*