Skip to content

Commit 0c4e2ed

Browse files
authored
Change Python version used for documentation build to Python 3.11 (#101)
Read the Docs doesn't yet support using Python 3.12 for documentation builds; this PR changes the Python version that we're using to Python 3.11.
1 parent affcef0 commit 0c4e2ed

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/checkout@v4
1111
- uses: actions/setup-python@v4
1212
with:
13-
python-version: '3.12'
13+
python-version: '3.11'
1414
cache: 'pip'
1515
cache-dependency-path: 'docs/requirements.txt'
1616
- run: python -m pip install -r docs/requirements.txt

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version: 2
66
build:
77
os: ubuntu-22.04
88
tools:
9-
python: "3.12"
9+
python: "3.11"
1010

1111
sphinx:
1212
configuration: docs/source/conf.py

0 commit comments

Comments
 (0)