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]