From 58434c32e1e769dba899d54450ba58bbbd3c9b15 Mon Sep 17 00:00:00 2001 From: Mikko Ohtamaa Date: Thu, 10 Oct 2024 14:47:37 +0200 Subject: [PATCH] Bump to Python 3.11 --- .github/workflows/build-and-deploy-docs.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-and-deploy-docs.yml b/.github/workflows/build-and-deploy-docs.yml index e1d9ded..27923f6 100644 --- a/.github/workflows/build-and-deploy-docs.yml +++ b/.github/workflows/build-and-deploy-docs.yml @@ -16,23 +16,21 @@ jobs: run: make update-git-submodules - name: Install poetry run: pipx install poetry==1.6.1 - - name: Set up Python 3.10 + - name: Set up Python 3.11 uses: actions/setup-python@v4 - # If caches were enabled, it was caching Python 3.8 interpreter - # causing the docs build to fails with: - python-version: '3.10' + python-version: '3.11' - name: Install dependencies run: | sudo apt update sudo apt install -y pandoc - poetry env use '3.10' + poetry env use '3.11' poetry install -vv # TODO: Hack fix if this is the cause for problems in doc builds - name: Build documentation run: | - poetry env use '3.10' + poetry env use '3.11' python -V which python echo $PATH