tests: add python v3.12

This commit is contained in:
Daylin Morgan 2024-07-12 11:40:33 -05:00
parent cf2414c0d1
commit 68e12d643c
Signed by: daylin
GPG key ID: 950D13E9719334AD
3 changed files with 3 additions and 3 deletions

View file

@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
python-version: ['3.8','3.9','3.10','3.11'] python-version: ['3.8','3.9','3.10','3.11', '3.12']
os: os:
- ubuntu-latest - ubuntu-latest
- windows-latest - windows-latest

View file

@ -55,7 +55,7 @@ def release(session):
session.run("./scripts/release.py", external=True) session.run("./scripts/release.py", external=True)
@nox.session(python=["3.8", "3.9", "3.10", "3.11"]) @nox.session(python=["3.8", "3.9", "3.10", "3.11", "3.12"])
def test(session): def test(session):
pdm_install(session, "test") pdm_install(session, "test")
session.run("pytest", "tests/") session.run("pytest", "tests/")

View file

@ -54,7 +54,7 @@ from typing import (
Union, Union,
) )
__version__ = "2024.1005" __version__ = "2024.1005-dev"
#### START VENDORED TOMLI #### #### START VENDORED TOMLI ####