diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 7949c4d98..6498e2ad8 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -47,7 +47,7 @@ jobs: fail-fast: false matrix: os: ['ubuntu-latest', 'macos-latest'] - python: ['3.8', '3.9', '3.10', '3.11'] + python: ['3.8', '3.9', '3.10', '3.11', '3.12'] runs-on: ${{ matrix.os }} diff --git a/ci/github/build_linux_wheel.sh b/ci/github/build_linux_wheel.sh index 36ed98dcd..8cf8c1374 100755 --- a/ci/github/build_linux_wheel.sh +++ b/ci/github/build_linux_wheel.sh @@ -6,6 +6,7 @@ case "$1" in 3.9) pyver=cp39-cp39 ;; 3.10) pyver=cp310-cp310 ;; 3.11) pyver=cp311-cp311 ;; + 3.11) pyver=cp312-cp312 ;; *) echo "Unknown Python version $1" exit 1 diff --git a/setup.py b/setup.py index ce048a0df..cfd676070 100644 --- a/setup.py +++ b/setup.py @@ -103,6 +103,7 @@ def utility_wrappers(): "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Physics", "Topic :: Software Development :: Libraries",