Skip to content

Commit

Permalink
fix(macos): skip python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Curve authored Nov 2, 2024
1 parent f34bf39 commit 48ea9d6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,13 @@ jobs:
include:
- os: ubuntu-latest
container: ghcr.io/viennatools/vienna-builder:python
skip: "cp36-* cp37-* cp38-* cp39-*"

- os: windows-latest
skip: "cp36-* cp37-* cp38-* cp39-*"

- os: macos-latest
skip: "cp36-* cp37-* cp38-* cp39-* cp310-*"

runs-on: ${{ matrix.os }}
container: ${{ matrix.container }}
Expand Down Expand Up @@ -120,7 +125,7 @@ jobs:
- name: 🏗️ Build Wheels
run: python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_SKIP: "cp36-* cp37-* cp38-* cp39-*"
CIBW_SKIP: ${{ matrix.skip }}
CIBW_ARCHS_WINDOWS: auto64

- name: 📦 Upload Artifact
Expand Down

0 comments on commit 48ea9d6

Please sign in to comment.