From 68e12d643cab0ac079ab2d21970bde4b86f252c2 Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Fri, 12 Jul 2024 11:40:33 -0500 Subject: [PATCH] tests: add python v3.12 --- .github/workflows/test.yml | 2 +- noxfile.py | 2 +- src/viv/viv.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index db87071..7f2cae1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 diff --git a/noxfile.py b/noxfile.py index 5b7a81d..43f8e10 100644 --- a/noxfile.py +++ b/noxfile.py @@ -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/") diff --git a/src/viv/viv.py b/src/viv/viv.py index 3d81fd0..635581c 100755 --- a/src/viv/viv.py +++ b/src/viv/viv.py @@ -54,7 +54,7 @@ from typing import ( Union, ) -__version__ = "2024.1005" +__version__ = "2024.1005-dev" #### START VENDORED TOMLI ####