Remove Python 3.10 - #135
Merged
Merged
Conversation
Contributor
Reviewer's guide (collapsed on small PRs)Reviewer's GuideThis PR removes Python 3.10 and older support by requiring Python 3.11+, narrowing CI coverage to 3.11–3.13, and standardizing tooling and release workflows on Python 3.12. It also adopts the Python 3.11 stdlib tomllib module for Sphinx configuration, eliminating the toml dependency and its pre-commit compatibility workaround. Sequence diagram for Sphinx configuration loadingsequenceDiagram
participant Sphinx
participant DocsConfig as docs/conf.py
participant Python as Python 3.11+ stdlib
participant File as pyproject.toml
Sphinx->>DocsConfig: load configuration
DocsConfig->>Python: open(..., "rb")
Python-->>DocsConfig: file object
DocsConfig->>Python: tomllib.load(fp)
Python->>File: read TOML
File-->>Python: parsed TOML data
Python-->>DocsConfig: config
DocsConfig-->>Sphinx: configuration ready
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
hagenw
force-pushed
the
remove-python-3.10
branch
from
September 15, 2026 11:51
6cae3bd to
e9cc4bd
Compare
sourcery-ai
Bot
dismissed
their stale review
September 15, 2026 11:52
Sourcery withdrew this approval because the latest commits introduced blocking findings.
Python 3.12 warns about the invalid escape sequences in the openSMILE config example, and the docs build treats warnings as errors. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.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.
Removes support for Python 3.10 and adjusts code and dependencies to use new features of Python 3.11.
🤖 Generated with Claude Code