From af8f9d92caa4a8cc661942a5d7871fd97d810df3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arne=20S=C3=B8rli?= <81353974+arneso-ssb@users.noreply.github.com> Date: Mon, 25 Mar 2024 11:08:27 +0100 Subject: [PATCH] Fix failing nox-sessions after update to python 3.12 - Revert to use python 3.10 for typeguard, xdoctest and docs-build sessions --- {{cookiecutter.project_name}}/.github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/{{cookiecutter.project_name}}/.github/workflows/tests.yml b/{{cookiecutter.project_name}}/.github/workflows/tests.yml index 271ff8390..c82051c84 100644 --- a/{{cookiecutter.project_name}}/.github/workflows/tests.yml +++ b/{{cookiecutter.project_name}}/.github/workflows/tests.yml @@ -24,9 +24,9 @@ jobs: - { python: "3.12", os: "ubuntu-latest", session: "tests" } - { python: "3.12", os: "windows-latest", session: "tests" } - { python: "3.12", os: "macos-latest", session: "tests" } - - { python: "3.12", os: "ubuntu-latest", session: "typeguard" } - - { python: "3.12", os: "ubuntu-latest", session: "xdoctest" } - - { python: "3.12", os: "ubuntu-latest", session: "docs-build" } + - { python: "3.10", os: "ubuntu-latest", session: "typeguard" } + - { python: "3.10", os: "ubuntu-latest", session: "xdoctest" } + - { python: "3.10", os: "ubuntu-latest", session: "docs-build" } env: NOXSESSION: ${{"{{"}} matrix.session {{"}}"}}