Skip to content

Commit

Permalink
Allow failures on Python 3.13 for MUSL install
Browse files Browse the repository at this point in the history
python:alpine 3.13 not available yet
  • Loading branch information
milesgranger committed Sep 5, 2024
1 parent c45b3ba commit b3a2506
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
fail-fast: ${{ !( startsWith(github.ref, 'refs/heads/master') || startsWith(github.ref, 'refs/tags/') ) }}
matrix:
python-version:
- '3.8'
- '3.9'
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
Expand Down Expand Up @@ -216,7 +216,8 @@ jobs:
# Could use 'distro: alpine_latest' in 'run-on-arch-action' but seems difficult to install a specific version of python
# so we'll just use existing python alpine images to test import and cli use w/o testing archs other than x86_64
- name: Install built wheel and Test (musllinux)
if: startsWith(matrix.conf.manylinux, 'musl') && matrix.conf.target == 'x86_64'
# TODO: python:3.13-alpine doesn't exist yet
if: startsWith(matrix.conf.manylinux, 'musl') && matrix.conf.target == 'x86_64' && matrix.python-version != '3.13'
run: |
docker run \
-v $(pwd)/dist:/wheels \
Expand Down

0 comments on commit b3a2506

Please sign in to comment.