Fix "Update website" CI: upgrade Python 3.8 → 3.12 and Sphinx 4 → 7 - #8
Merged
jobovy merged 2 commits intoJun 22, 2026
Conversation
Copilot
AI
changed the title
Fix failing "Update website" CI: upgrade Python 3.8 → 3.12
Upgrade Python 3.8 → 3.12 in website CI
Jun 22, 2026
Copilot created this pull request from a session on behalf of
jobovy
June 22, 2026 17:16
View session
jobovy
marked this pull request as ready for review
June 22, 2026 17:19
Copilot
AI
changed the title
Upgrade Python 3.8 → 3.12 in website CI
Fix "Update website" CI: upgrade Python 3.8 → 3.12 and Sphinx 4 → 7
Jun 22, 2026
jobovy
merged commit Jun 22, 2026
4798067
into
dependabot/github_actions/actions/checkout-7
2 checks passed
jobovy
pushed a commit
that referenced
this pull request
Jun 22, 2026
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The "Update website" workflow fails because dependencies (
mistune3.3.1, then Sphinx 4.0.2 itself) use type annotation syntax incompatible with Python 3.8/3.12 respectively. Python 3.8 is EOL.Changes
.github/workflows/update-website.yml: Bump Python from 3.8 to 3.12notes/requirements.txt: Upgradesphinx==4.0.2→sphinx>=7.4,<8(Sphinx 4 cannot import on Python 3.12:from types import Unionno longer exists)notes/source/conf.py: Updateextlinksto Sphinx 7 format (requires%splaceholder in URL pattern and caption)