Skip to content

Commit

Permalink
CHORE: Run tests on Python 3.12
Browse files Browse the repository at this point in the history
- Run tests on CI on Python 3.12.
- Limited NumPy version to at least 1.26.0 to fix an error with Python 3.12,
  numpy/numpy#23808.
- Updated poetry.lock.
  • Loading branch information
truhanen committed Oct 30, 2023
1 parent 6258c7f commit 561801b
Show file tree
Hide file tree
Showing 3 changed files with 514 additions and 470 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,15 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
# Test with only one Python version on macOS.
exclude:
- os: macos-latest
python-version: "3.10"
- os: macos-latest
python-version: "3.11"
- os: macos-latest
python-version: "3.12"

runs-on: ${{ matrix.os }}

Expand Down
Loading

0 comments on commit 561801b

Please sign in to comment.