This commit is contained in:
Ethan Paul 2024-03-21 22:37:51 +00:00 committed by GitHub
commit 7e6fc5d832
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 5 additions and 2 deletions

View File

@ -6,7 +6,7 @@ on:
push: push:
branches: ["devel"] branches: ["devel"]
env: env:
POETRY_VERSION: 1.4.1 POETRY_VERSION: 1.5.1
jobs: jobs:
Test: Test:
name: Python ${{ matrix.python.version }} name: Python ${{ matrix.python.version }}
@ -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