From 8efceb0e5b8d5fdbbe5fdbd56ce116e0f33c9c3c Mon Sep 17 00:00:00 2001 From: Lars Scheibling Date: Tue, 23 Jan 2024 13:45:18 +0000 Subject: [PATCH] Add newer python versions to dev/prod testing --- .github/workflows/deploy_testing.yml | 1 + .github/workflows/dev_testing.yml | 7 +++---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy_testing.yml b/.github/workflows/deploy_testing.yml index 79ce510..a2a90b0 100644 --- a/.github/workflows/deploy_testing.yml +++ b/.github/workflows/deploy_testing.yml @@ -13,6 +13,7 @@ jobs: - "3.8" - "3.9" - "3.10" + - "3.11" os: - "ubuntu-latest" - "macOS-latest" diff --git a/.github/workflows/dev_testing.yml b/.github/workflows/dev_testing.yml index ead4678..090b482 100644 --- a/.github/workflows/dev_testing.yml +++ b/.github/workflows/dev_testing.yml @@ -4,10 +4,7 @@ on: paths-ignore: - "docs/**" - "*.md" - # pull_request: - # paths-ignore: - # - "docs/**" - # - "*.md" + jobs: testing: runs-on: ${{ matrix.os }} @@ -15,7 +12,9 @@ jobs: fail-fast: false matrix: python-version: + - "3.9" - "3.10" + - "3.11" os: - "ubuntu-latest" - "macOS-latest"