From 05777dbf9c8dbb6c72e49f4d892741b18eb4f20f Mon Sep 17 00:00:00 2001 From: Stevie Date: Mon, 23 Jan 2023 13:15:35 +0100 Subject: [PATCH] chore(tests): add Python 3.10 and 3.11 in CI runs/tox/trove classifier --- .travis.yml | 2 ++ setup.py | 2 ++ tox.ini | 1 + 3 files changed, 5 insertions(+) diff --git a/.travis.yml b/.travis.yml index 8c306d9..bf4dbaf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,6 +9,8 @@ python: - "3.7" - "3.8" - "3.9" + - "3.10" + - "3.11" install: - pip install coverage coveralls codecov diff --git a/setup.py b/setup.py index 06386c3..b7cfdc6 100644 --- a/setup.py +++ b/setup.py @@ -39,6 +39,8 @@ def read(file_name): 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: Implementation :: CPython', ], ) diff --git a/tox.ini b/tox.ini index 272d8c5..ae9f02a 100644 --- a/tox.ini +++ b/tox.ini @@ -7,6 +7,7 @@ envlist = py38, py39, py310, + py311, mypy [testenv]