Skip to content

Commit

Permalink
Update CI scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
jfowkes committed Sep 15, 2023
1 parent f036383 commit 71b5b0a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@ jobs:
# Note: builds on these are backward compatible
# (Linux builds use manylinux Docker containers)
# (macOS builds target old versions by default)
os: [ubuntu-20.04, macos-11, windows-2019]
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
- uses: actions/checkout@v3

- name: Build wheels
uses: pypa/cibuildwheel@v2.8.0
uses: pypa/cibuildwheel@v2.15.0
# to supply options, put them in 'env', like:
# env:
# CIBW_SOME_OPTION: value
env:
# List of platforms to build on
CIBW_BUILD: cp3{8,9,10}-manylinux_x86_64 cp3{8,9,10}-macosx_x86_64 cp3{8,9,10}-macosx_arm64 cp3{8,9,10}-win_amd64
CIBW_BUILD: cp3{8,9,10,11}-manylinux_x86_64 cp3{8,9,10,11}-macosx_x86_64 cp3{8,9,10,11}-macosx_arm64 cp3{8,9,10,11}-win_amd64

# Install Eigen and pybind11 on manylinux images (no brew, need Eigen >= 3.4)
CIBW_BEFORE_ALL_LINUX: >
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9"]
python-version: ["3.8","3.9","3.10","3.11"]

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 71b5b0a

Please sign in to comment.