From 9de531cb2c5c33c6563190d8603372ec337ab911 Mon Sep 17 00:00:00 2001 From: Aki Ariga Date: Sun, 19 Nov 2023 15:00:48 -0800 Subject: [PATCH] Support Python 3.12 --- .github/workflows/pythontest.yml | 1 + noxfile.py | 2 +- pyproject.toml | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pythontest.yml b/.github/workflows/pythontest.yml index 9c20469..3f414d3 100644 --- a/.github/workflows/pythontest.yml +++ b/.github/workflows/pythontest.yml @@ -26,6 +26,7 @@ jobs: 3.9 3.10 3.11 + 3.12 - name: Install dependencies and test run: | python -m pip install --upgrade pip diff --git a/noxfile.py b/noxfile.py index 668d266..8622224 100644 --- a/noxfile.py +++ b/noxfile.py @@ -27,7 +27,7 @@ def lint(session): ("3.9", True), ("3.10", True), ("3.11", True), - # ("3.12", False), + ("3.12", False), ], ) def tests(session, jpype): diff --git a/pyproject.toml b/pyproject.toml index 8384caf..3237c11 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,6 +17,7 @@ classifiers = [ "Development Status :: 5 - Production/Stable", "Topic :: Text Processing :: General", "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.9",