2 Commits

Author SHA1 Message Date
60462c78b6 Update CI poetry version 2024-03-21 18:37:36 -04:00
6fda354928 Add python 3.12 classifier and testing 2024-03-21 18:34:38 -04:00
3 changed files with 5 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ on:
push:
branches: ["devel"]
env:
POETRY_VERSION: 1.4.1
POETRY_VERSION: 1.5.1
jobs:
Test:
name: Python ${{ matrix.python.version }}
@@ -25,6 +25,8 @@ jobs:
toxenv: py310
- version: "3.11"
toxenv: py311
- version: "3.12"
toxenv: py312
steps:
- name: Checkout
uses: actions/checkout@v2

View File

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

View File

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