summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2022-04-29 11:30:38 +0000
committerGerrit Code Review <review@openstack.org>2022-04-29 11:30:38 +0000
commit4741b57c09852d8ca413f8ff5ba73f763636db1f (patch)
treec4d1c14b81af66e0453524e6455fc031a1d7c1ba
parentf1c431faeb3f76a680a61c78838b8646ec05b844 (diff)
parent2725612128a9159dcf30692c779950427d474180 (diff)
downloadtrove-4741b57c09852d8ca413f8ff5ba73f763636db1f.tar.gz
Merge "Add python3.9 support"
-rw-r--r--doc/source/contributor/testing.rst6
-rw-r--r--setup.cfg1
-rw-r--r--tox.ini2
3 files changed, 5 insertions, 4 deletions
diff --git a/doc/source/contributor/testing.rst b/doc/source/contributor/testing.rst
index 8cedfbbf..72d5839b 100644
--- a/doc/source/contributor/testing.rst
+++ b/doc/source/contributor/testing.rst
@@ -101,19 +101,19 @@ Run all the unit tests in one command:
.. code-block:: console
- tox -e py38
+ tox -e py39
Run all the tests of a specific test class:
.. code-block:: console
- tox -e py38 -- trove.tests.unittests.instance.test_service.TestInstanceController
+ tox -e py39 -- trove.tests.unittests.instance.test_service.TestInstanceController
Run a single test case:
.. code-block:: console
- tox -e py38 -- trove.tests.unittests.instance.test_service.TestInstanceController.test_create_multiple_versions
+ tox -e py39 -- trove.tests.unittests.instance.test_service.TestInstanceController.test_create_multiple_versions
References
----------
diff --git a/setup.cfg b/setup.cfg
index ad4e0d22..6516355d 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -17,6 +17,7 @@ classifier =
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
+ Programming Language :: Python :: 3.9
[files]
data_files =
diff --git a/tox.ini b/tox.ini
index 52bea255..799454a6 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py38,pep8,cover,api-ref,releasenotes,bandit,fakemodetests
+envlist = py39,pep8,cover,api-ref,releasenotes,bandit,fakemodetests
minversion = 3.18.0
skipsdist = True