Remove Python 3.8 support and deprecate usage of 3.9#1334
Open
Remove Python 3.8 support and deprecate usage of 3.9#1334
Conversation
35a58c4 to
a8cfdd3
Compare
schaubh
added a commit
that referenced
this pull request
Mar 19, 2026
schaubh
added a commit
that referenced
this pull request
Mar 19, 2026
Ninja support sccache and builds BSK faster
f2b4aed to
b6ed1fc
Compare
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.
Description
This PR removes Python 3.8 support from the supported build/install matrix and marks Python 3.9 as deprecated.
The work is split into two commits for easier review:
7c6670e262removes Python 3.8 support from packaging metadata, dependency markers, CI minimum-version coverage, CMake minimum-version enforcement, and the build/install documentation.35a58c4d24adds Python 3.9 deprecation messaging with a March 2027 removal date in the install docs, CMake warning text, and release-note snippet.Verification
Validated by:
developgit diff --checkpyproject.tomlwithtomllibto confirmrequires-python = ">=3.9, <3.15"and nocp38wheel targets remain.github/workflows/pull-request.ymlsuccessfullyNo automated tests were added or updated because this PR only changes support policy, CI configuration, packaging metadata, CMake version gating, and documentation. I did not run a full build or test suite.
Documentation
Updated documentation/artifacts:
docs/source/Build/installOnLinux.rstdocs/source/Build/installOnMacOS.rstdocs/source/Build/installOnWindows.rstdocs/source/Build/customPython.rstdocs/source/Support/bskReleaseNotesSnippets/1329-drop-py38-deprecate-py39.rstReviewers should also check:
pyproject.toml.github/workflows/pull-request.ymlsrc/CMakeLists.txtFuture work
After the Python 3.9 deprecation window ends in March 2027, the remaining follow-up should be to remove Python 3.9 support entirely, raise the minimum supported version to Python 3.10, and delete the temporary deprecation warning/path.