From 4f23236467384e5dcd4627987f4a6734ca4a1f09 Mon Sep 17 00:00:00 2001 From: Bastian Krause Date: Wed, 13 Dec 2023 13:03:30 +0100 Subject: [PATCH] github/workflows: test Python 3.12 crossbar is not compatible with Python 3.12, yet: [1] and [2] are not part of a release. A release will probably take some more time [3][4]. We shouldn't advertise Python 3.12 support until that happens. But we can make sure that everything else keeps working fine with Python 3.12 by running the test suite. A previous commit marked the failing crossbar tests as XFAIL for 3.12. [1] https://github.com/crossbario/crossbar/pull/2091 [2] https://github.com/crossbario/crossbar/pull/2093 [3] https://github.com/crossbario/crossbar/pull/2093#issuecomment-1853007773 [4] https://github.com/crossbario/crossbar/pull/2091#issuecomment-1850126501 Signed-off-by: Bastian Krause --- .github/workflows/push-pr-unit-tests.yml | 2 +- .github/workflows/scheduled-unit-tests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/push-pr-unit-tests.yml b/.github/workflows/push-pr-unit-tests.yml index 8477cd113..4eb35620d 100644 --- a/.github/workflows/push-pr-unit-tests.yml +++ b/.github/workflows/push-pr-unit-tests.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] uses: ./.github/workflows/reusable-unit-tests.yml with: python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/scheduled-unit-tests.yml b/.github/workflows/scheduled-unit-tests.yml index faadf9cc7..096e7aee6 100644 --- a/.github/workflows/scheduled-unit-tests.yml +++ b/.github/workflows/scheduled-unit-tests.yml @@ -10,7 +10,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] branch: ['master'] uses: ./.github/workflows/reusable-unit-tests.yml with: