Merge pull request #84 from enpaul/enp/py311

Add official support for Python 3.11
This commit is contained in:
Ethan Paul 2023-02-24 18:12:29 -05:00 committed by GitHub
commit bd102605b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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