diff --git a/.circleci/config.yml b/.circleci/config.yml index 96510792..98e32e1d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -180,6 +180,9 @@ workflows: - tests-python: name: test-3.9 python-image: "cimg/python:3.9" + - tests-python: + name: test-3.10 + python-image: "cimg/python:3.10" nightly: triggers: diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e6e20dd..5d3a2770 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ## 1.25.0 [unreleased] +### CI +1. [#54](https://github.com/influxdata/influxdb-client-python/pull/370): Add Python 3.10 to CI builds ## 1.24.0 [2021-11-26] ### Features diff --git a/setup.py b/setup.py index 46880b2c..48344c25 100644 --- a/setup.py +++ b/setup.py @@ -66,6 +66,7 @@ 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', 'Topic :: Database', 'Topic :: Software Development :: Libraries', 'Topic :: Software Development :: Libraries :: Python Modules',