Skip to content

Commit

Permalink
Change Python version used for documentation build to Python 3.11 (#101)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
mdickinson authored Oct 7, 2023
1 parent affcef0 commit 0c4e2ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.12'
python-version: '3.11'
cache: 'pip'
cache-dependency-path: 'docs/requirements.txt'
- run: python -m pip install -r docs/requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ version: 2
build:
os: ubuntu-22.04
tools:
python: "3.12"
python: "3.11"

sphinx:
configuration: docs/source/conf.py
Expand Down

0 comments on commit 0c4e2ed

Please sign in to comment.