Skip to content

Commit

Permalink
fixes & tests Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
wjakob committed Jan 3, 2024
1 parent f5a4d24 commit 96b0dd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
fail-fast: false
matrix:
os: ['ubuntu-latest', 'windows-2022', 'macos-latest']
python: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3.9-v7.3.12', 'pypy3.10-v7.3.12']
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13.0-alpha.2', 'pypy3.9-v7.3.12', 'pypy3.10-v7.3.12']

name: "Python ${{ matrix.python }} / ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
python -m pip install pytest pytest-github-actions-annotate-failures
- name: Install NumPy
if: ${{ !startsWith(matrix.python, 'pypy') }}
if: ${{ !startsWith(matrix.python, 'pypy') && !contains(matrix.python, 'alpha') }}
run: |
python -m pip install numpy scipy
Expand Down

0 comments on commit 96b0dd4

Please sign in to comment.