From 032d94381ae179f81c96341171d1f4b2dad65ce4 Mon Sep 17 00:00:00 2001 From: Malte Franken Date: Wed, 31 Jan 2024 21:01:52 +1100 Subject: [PATCH] Add Python 3.12 support (#28) --- .github/workflows/ci.yaml | 2 +- pyproject.toml | 2 +- setup.py | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ae0031e..6f4ef8b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: true matrix: - python-version: [ "3.8", "3.9", "3.10", "3.11" ] + python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ] steps: - uses: "actions/checkout@v2" - uses: "actions/setup-python@v2" diff --git a/pyproject.toml b/pyproject.toml index 81790ca..74aace5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [tool.black] -target-version = ['py38', 'py39', 'py310', 'py311'] +target-version = ['py38', 'py39', 'py310', 'py311', 'py312'] [tool.isort] profile = "black" diff --git a/setup.py b/setup.py index 2184b32..501fd05 100644 --- a/setup.py +++ b/setup.py @@ -40,6 +40,7 @@ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", ],