Skip to content

Commit

Permalink
GHA: Ignore python3.13 failures for now (#2557)
Browse files Browse the repository at this point in the history
Until all dependencies work with Python3.13. pyarrow wheels are still missing.
  • Loading branch information
dweindl authored Oct 19, 2024
1 parent 91054b3 commit 40b496f
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/test_python_ver_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,15 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13']
experimental: [false]
include:
- python-version: '3.10'
experimental: false
- python-version: '3.11'
experimental: false
- python-version: '3.12'
experimental: false
- python-version: '3.13'
experimental: true

steps:
- run: echo "AMICI_DIR=$(pwd)" >> $GITHUB_ENV
Expand Down

0 comments on commit 40b496f

Please sign in to comment.