From a1981552ec477e276ffb6cdaa9abaff9ad3e6f75 Mon Sep 17 00:00:00 2001 From: Weston Steimel Date: Tue, 18 Jun 2024 16:43:31 +0100 Subject: [PATCH] chore: validations for python 3.12 Signed-off-by: Weston Steimel --- .github/actions/bootstrap/action.yaml | 4 ++-- .github/workflows/validations.yaml | 3 +++ tox.ini | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/actions/bootstrap/action.yaml b/.github/actions/bootstrap/action.yaml index 4a347df0..bafedf10 100644 --- a/.github/actions/bootstrap/action.yaml +++ b/.github/actions/bootstrap/action.yaml @@ -4,7 +4,7 @@ inputs: go-version: description: "Go version to install" required: true - default: "1.21.x" + default: "1.22.x" python-version: description: "Python version to install" required: true @@ -14,7 +14,7 @@ inputs: poetry-version: description: "Poetry version to install" required: true - default: "1.7.0" + default: "1.8.3" use-poetry-cache: description: "Restore poetry cache" required: true diff --git a/.github/workflows/validations.yaml b/.github/workflows/validations.yaml index 70935950..cfcd33da 100644 --- a/.github/workflows/validations.yaml +++ b/.github/workflows/validations.yaml @@ -48,6 +48,9 @@ jobs: - version: '3.11' toxEnv: py311 + + - version: '3.12' + toxEnv: py312 steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 #v4.1.7 with: diff --git a/tox.ini b/tox.ini index 7944ae11..7331af78 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] # note: this is not a single source of truth (this is also in the .github/workflows/valiations.yml file) -envlist = py39, py310, py311 +envlist = py39, py310, py311, py312 isolated_build = True [testenv]