mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-12-21 18:20:45 -06:00
tests: add python v3.12
This commit is contained in:
parent
cf2414c0d1
commit
68e12d643c
3 changed files with 3 additions and 3 deletions
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
@ -15,7 +15,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ['3.8','3.9','3.10','3.11']
|
||||
python-version: ['3.8','3.9','3.10','3.11', '3.12']
|
||||
os:
|
||||
- ubuntu-latest
|
||||
- windows-latest
|
||||
|
|
|
@ -55,7 +55,7 @@ def release(session):
|
|||
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):
|
||||
pdm_install(session, "test")
|
||||
session.run("pytest", "tests/")
|
||||
|
|
|
@ -54,7 +54,7 @@ from typing import (
|
|||
Union,
|
||||
)
|
||||
|
||||
__version__ = "2024.1005"
|
||||
__version__ = "2024.1005-dev"
|
||||
|
||||
|
||||
#### START VENDORED TOMLI ####
|
||||
|
|
Loading…
Reference in a new issue