Add official support for Python 3.11

Add pypi classifier for py3.11
Update CI to test py3.11
This commit is contained in:
Ethan Paul 2023-02-24 17:49:31 -05:00
parent 41ac5423f9
commit 469cb251cf
Signed by: enpaul
GPG Key ID: DAF443CA3A2FA6FA
3 changed files with 4 additions and 1 deletions

View File

@ -20,6 +20,8 @@ jobs:
toxenv: py39
- version: "3.10"
toxenv: py310
- version: "3.11"
toxenv: py311
fail-fast: true
steps:
- name: Checkout

View File

@ -27,6 +27,7 @@ classifiers = [
"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",
]

View File

@ -1,5 +1,5 @@
[tox]
envlist = py37, py38, py39, py310, static, static-tests, security
envlist = py37, py38, py39, py310, py311, static, static-tests, security
isolated_build = true
skip_missing_interpreters = true