From 55ce5a70acdb6bda57e5d8149b55e6d000064362 Mon Sep 17 00:00:00 2001 From: Gavin Jaeger-Freeborn Date: Fri, 11 Oct 2024 11:23:01 -0700 Subject: [PATCH] update other references to the python version Signed-off-by: Gavin Jaeger-Freeborn --- .github/workflows/controller_unittests.yml | 2 +- README.md | 2 +- oidc-controller/tox.ini | 2 +- pyproject.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/controller_unittests.yml b/.github/workflows/controller_unittests.yml index de06b8c8..323cab08 100644 --- a/.github/workflows/controller_unittests.yml +++ b/.github/workflows/controller_unittests.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.11"] + python-version: ["3.12"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} diff --git a/README.md b/README.md index be7e873a..847779c9 100644 --- a/README.md +++ b/README.md @@ -135,7 +135,7 @@ This is a sample debugger launch configuration for VSCode that can be used by ad }, { "localRoot": "${workspaceFolder}/.venv/Lib/site-packages", - "remoteRoot": "/usr/local/lib/python3.11/site-packages" + "remoteRoot": "/usr/local/lib/python3.12/site-packages" } ], "justMyCode": false diff --git a/oidc-controller/tox.ini b/oidc-controller/tox.ini index fd5c0252..0ad6c5c0 100644 --- a/oidc-controller/tox.ini +++ b/oidc-controller/tox.ini @@ -31,4 +31,4 @@ commands = [gh-actions] python = - 3.11: py311 + 3.12: py312 diff --git a/pyproject.toml b/pyproject.toml index 0faeaf36..48e2bcc3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,7 +42,7 @@ testpaths = "oidc-controller" asyncio_default_fixture_loop_scope = "function" [tool.pyright] -pythonVersion = "3.11" +pythonVersion = "3.12" [build-system] requires = ["poetry-core"]