Skip to content

Commit

Permalink
try 3.9+
Browse files Browse the repository at this point in the history
  • Loading branch information
gmweaver committed Jun 5, 2024
1 parent 718f214 commit 11014d4
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ on: [push, pull_request]

jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
name: Build wheels on ${{ matrix.os }} ${{ matrix.cibw_arch }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-13, macos-14]
cibw_arch: ["native"]
cibw_build: ["cp39-* cp310-* cp311-*"]

steps:
- uses: actions/checkout@v4
Expand All @@ -21,9 +23,9 @@ jobs:

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
# to supply options, put them in 'env', like:
# env:
# CIBW_SOME_OPTION: value
env:
CIBW_BEFORE_ALL_LINUX: sudo apt-get install -y clang curl autoconf automake libtool pkg-config
CIBW_BEFORE_ALL_MACOS: brew install curl autoconf automake libtool pkg-config

- uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 11014d4

Please sign in to comment.