From 6a79454ae11e66c319ceedd5b3b6d49e93e3b9ad Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Sun, 12 Nov 2023 02:47:29 +0100 Subject: [PATCH] Add support for Python 3.12 --- .github/workflows/tests.yml | 2 +- CHANGES.rst | 1 + pyproject.toml | 3 ++- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index cf3c0bc..0fd8945 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,7 +21,7 @@ jobs: strategy: matrix: os: ["ubuntu-latest"] - python-version: ["3.8", "3.11"] + python-version: ["3.8", "3.12"] influxdb-version: [ "2.6", "2.7" ] fail-fast: false diff --git a/CHANGES.rst b/CHANGES.rst index 7100fd8..4fdc4ef 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -5,6 +5,7 @@ influxio changelog in progress =========== +- Add support for Python 3.12 2023-11-12 v0.1.1 ================= diff --git a/pyproject.toml b/pyproject.toml index 6394b9a..a0f33ad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,7 +33,7 @@ authors = [ { name = "Andreas Motl", email = "andreas.motl@panodata.org" }, { name = "Richard Pobering", email = "richard.pobering@panodata.org" }, ] -requires-python = ">=3.8,<3.12" +requires-python = ">=3.8,<3.13" classifiers = [ "Development Status :: 3 - Alpha", "Environment :: Console", @@ -57,6 +57,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Communications", "Topic :: Database", "Topic :: Documentation",