diff --git a/.circleci/config.yml b/.circleci/config.yml index e471dfbb..a47bde06 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -202,6 +202,9 @@ workflows: - tests-python: name: test-3.11 python-image: "cimg/python:3.11" + - tests-python: + name: test-3.12 + python-image: "cimg/python:3.12" nightly: when: diff --git a/CHANGELOG.md b/CHANGELOG.md index e542413a..0852b97a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ ### Features 1. [#625](https://github.com/influxdata/influxdb-client-python/pull/625): Make class `Point` equatable +2. [#632](https://github.com/influxdata/influxdb-client-python/pull/632): Add support for Python 3.12 (no code changes) ### Bug Fixes 1. [#562](https://github.com/influxdata/influxdb-client-python/pull/562): Use `ThreadPoolScheduler` for `WriteApi`'s batch subject instead of `TimeoutScheduler` to prevent creating unnecessary threads repeatedly diff --git a/setup.py b/setup.py index e15b963e..ac1154d3 100644 --- a/setup.py +++ b/setup.py @@ -78,6 +78,7 @@ 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Topic :: Database', 'Topic :: Software Development :: Libraries', 'Topic :: Software Development :: Libraries :: Python Modules',