From 1e78df4f5c6b21f9a6a647441a3e3971c6279c39 Mon Sep 17 00:00:00 2001 From: Sandra McCann Date: Fri, 1 Aug 2025 16:02:06 -0400 Subject: [PATCH] missed a few python 3.12 updates (#2936) --- .github/workflows/pip-compile-docs.yml | 2 +- .github/workflows/reusable-nox.yml | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/pip-compile-docs.yml b/.github/workflows/pip-compile-docs.yml index 3c805e232e..4e6d44fce5 100644 --- a/.github/workflows/pip-compile-docs.yml +++ b/.github/workflows/pip-compile-docs.yml @@ -32,5 +32,5 @@ jobs: 'pip-compile(requirements)' reset-branch: "${{ inputs.reset-branch || false }}" labels: "${{ inputs.labels || 'doc builds,no_backport' }}" - python-versions: "3.11" + python-versions: "3.12" secrets: inherit diff --git a/.github/workflows/reusable-nox.yml b/.github/workflows/reusable-nox.yml index 9406fd4b34..4e7525a1a6 100644 --- a/.github/workflows/reusable-nox.yml +++ b/.github/workflows/reusable-nox.yml @@ -16,24 +16,24 @@ jobs: # python-versions: comma-separated list of Python versions to install # extra-args (optional): extra arguments to pass to nox session. - session: static - python-versions: "3.11" + python-versions: "3.12" - session: formatters_check - python-versions: "3.11" + python-versions: "3.12" - session: typing - python-versions: "3.11" + python-versions: "3.12" - session: spelling - python-versions: "3.11" + python-versions: "3.12" - session: "checkers(rstcheck)" - python-versions: "3.11" + python-versions: "3.12" - session: "checkers(rst-yamllint)" - python-versions: "3.11" + python-versions: "3.12" - session: "checkers(docs-build)" - python-versions: "3.11" + python-versions: "3.12" - session: "actionlint" - python-versions: "3.11" + python-versions: "3.12" - session: "pip-compile" extra-args: "--check" - python-versions: "3.11" + python-versions: "3.12" name: "Run nox ${{ matrix.session }} session" steps: - name: Check out repo