Add python 3.12 classifier and testing

This commit is contained in:
Ethan Paul 2024-03-21 18:34:38 -04:00
parent 0bb654c2e2
commit 6fda354928
Signed by: enpaul
GPG Key ID: 4884CA087E5A472D
3 changed files with 4 additions and 1 deletions

View File

@ -25,6 +25,8 @@ jobs:
toxenv: py310 toxenv: py310
- version: "3.11" - version: "3.11"
toxenv: py311 toxenv: py311
- version: "3.12"
toxenv: py312
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2

View File

@ -27,6 +27,7 @@ classifiers = [
"Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython" "Programming Language :: Python :: Implementation :: CPython"
] ]

View File

@ -1,5 +1,5 @@
[tox] [tox]
envlist = py3{7-11}, static, static-tests, security envlist = py3{7-12}, static, static-tests, security
isolated_build = true isolated_build = true
skip_missing_interpreters = true skip_missing_interpreters = true