missed a few python 3.12 updates (#2936)

This commit is contained in:
Sandra McCann
2025-08-01 16:02:06 -04:00
committed by GitHub
parent 8495d7da0b
commit 1e78df4f5c
2 changed files with 10 additions and 10 deletions

View File

@@ -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

View File

@@ -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