From eb4b094a65cf4bc6fc4d985aae7ed15076149f41 Mon Sep 17 00:00:00 2001 From: Clemens Brunner Date: Tue, 3 Oct 2023 08:19:28 +0200 Subject: [PATCH] Add support for Python 3.12 --- .github/workflows/tests.yml | 2 +- .github/workflows/wheels.yml | 2 +- setup.py | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d75f9ab..d6047de 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-2019, windows-latest, macos-latest] - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v3 - name: Setup Python diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index e81def4..3a2d2f3 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -67,7 +67,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: [37, 38, 39, 310, 311] + python: [37, 38, 39, 310, 311, 312] include: - os: ubuntu-latest arch: aarch64 diff --git a/setup.py b/setup.py index 3b9a187..0a3c74b 100644 --- a/setup.py +++ b/setup.py @@ -290,6 +290,7 @@ def install_for_development(self): "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Software Development :: Libraries :: Python Modules" ], platforms=["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"],