Skip to content

Commit

Permalink
ci: can't use numpy 1 with python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
lgarrison committed Feb 12, 2025
1 parent ac65eb1 commit 0901f72
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,23 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ["ubuntu-24.04", "macos-14"]
compiler: [gcc, clang]
python-version: ["3.9", "3.13"]
numpy-version: ["1", "2"]

exclude:
# Only run with 'clang' on OSX
- os: "macos-14"
include:
- os: ubuntu-24.04
compiler: gcc

# Don't use 'clang' on linux
- os: "ubuntu-24.04"
python-version: 3.9
numpy-version: 1
- os: ubuntu-24.04
compiler: gcc
python-version: 3.13
numpy-version: 2
- os: macos-14
compiler: clang
python-version: 3.9
numpy-version: 1
- os: macos-14
compiler: clang
python-version: 3.13
numpy-version: 2

env:
CC: ${{ matrix.compiler }}
Expand Down

0 comments on commit 0901f72

Please sign in to comment.