Skip to content

Commit

Permalink
Fix Python 13 version in GitHub Action
Browse files Browse the repository at this point in the history
  • Loading branch information
orome committed Nov 10, 2024
1 parent ea08d93 commit 0587efa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ jobs:
test:
name: Test - Python ${{ matrix.python-version }} (${{ matrix.os }})
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.python-version == '3.13.0-alpha.1' }}
continue-on-error: ${{ matrix.python-version == '3.13' }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest, macos-13]
python-version: ["3.12", "3.10", "3.11"]
include:
- os: macos-13
python-version: "3.13.0-alpha.1"
python-version: "3.13"

steps:

Expand Down

0 comments on commit 0587efa

Please sign in to comment.