Skip to content

Commit

Permalink
Test on Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
tomwhite committed Sep 24, 2024
1 parent d522c0f commit 21c4f6a
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-numpy-2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
python-version: ["3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
python-version: ["3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
matrix:
# don't use macos-latest as it uses M1 which doesn't work
os: [ubuntu-latest, macos-12]
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
runs-on: ${{ matrix.os }}
steps:
# checkout repo to subdirectory to get access to scripts
Expand Down
2 changes: 2 additions & 0 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ queue_rules:
- status-success=build (3.9)
- status-success=build (3.10)
- status-success=build (3.11)
- status-success=build (3.12)
- status-success=win_build (3.9)
- approved-reviews-by=@sgkit-dev/committers
- "#approved-reviews-by>=1"
Expand All @@ -17,6 +18,7 @@ pull_request_rules:
- status-success=build (3.9)
- status-success=build (3.10)
- status-success=build (3.11)
- status-success=build (3.12)
- status-success=win_build (3.9)
- approved-reviews-by=@sgkit-dev/committers
- "#approved-reviews-by>=1"
Expand Down
2 changes: 1 addition & 1 deletion docs/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Getting Started
Installation
------------

You can install sgkit with pip. Python 3.9, 3.10, or 3.11 is required::
You can install sgkit with pip. Python 3.9, 3.10, 3.11, or 3.12 is required::

$ pip install sgkit

Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ classifiers =
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Scientific/Engineering

[options]
Expand Down

0 comments on commit 21c4f6a

Please sign in to comment.