From e032412ebd46a7582fa73e20b8cf3c805be2bb3d Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Fri, 27 Oct 2023 08:39:33 +0200 Subject: [PATCH] [ci] Added python 3.12 to pytest and examples workflows. (#212) --- .github/workflows/examples.yml | 2 +- .github/workflows/pytest.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/examples.yml b/.github/workflows/examples.yml index cd4f73c9..dd2fc4cf 100644 --- a/.github/workflows/examples.yml +++ b/.github/workflows/examples.yml @@ -17,7 +17,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - python-version: ["3.8", "3.10"] + python-version: ["3.8", "3.10", "3.12"] steps: - name: Checkout source diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index b6a5290f..b76dba9f 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -17,7 +17,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] include: - os: macos-latest python-version: "3.10"