From d38a91d22936f176a3109c188555b1456ec61a4a Mon Sep 17 00:00:00 2001 From: Semyon Pupkov Date: Mon, 18 Dec 2023 18:46:52 +0500 Subject: [PATCH] Add py 3.12 to build matrix --- .github/workflows/pytest.yml | 6 +++--- noxfile.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 3d86f948..d6a0e8e0 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -14,12 +14,12 @@ 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"] extras: ["[diagrams]"] include: - - python-version: "3.11" + - python-version: "3.12" extras: "[]" - - python-version: "3.11" + - python-version: "3.12" extras: "[diagrams,mypy]" steps: diff --git a/noxfile.py b/noxfile.py index 8240bc06..ce89aa6d 100644 --- a/noxfile.py +++ b/noxfile.py @@ -1,7 +1,7 @@ import nox -python = ["2.7", "3.7", "3.8", "3.9", "3.10", "3.11"] +python = ["2.7", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] nox.options.stop_on_first_error = True