From f464a69159631f585e8606a1841ca14046926c3a Mon Sep 17 00:00:00 2001 From: Dmitri Gavrilov Date: Tue, 13 Feb 2024 18:24:06 -0500 Subject: [PATCH] CI: add python 3.12 to the test matrix --- .github/workflows/testing.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 5c0726d3..6fa85855 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: use-ipykernel: [false, true] - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12"] pydantic-version: ["<2.0.0", ">=2.0.0"] group: [1, 2, 3] exclude: @@ -17,6 +17,8 @@ jobs: pydantic-version: "<2.0.0" - python-version: "3.10" pydantic-version: "<2.0.0" + - python-version: "3.12" + pydantic-version: "<2.0.0" fail-fast: false steps: