Skip to content

Commit

Permalink
Bump to Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
miohtama committed Oct 10, 2024
1 parent f751e2a commit 58434c3
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/build-and-deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 58434c3

Please sign in to comment.