🧪 Make Python 3.13 and 3.14 supported officially#825
Merged
webknjaz merged 4 commits intoansible:develfrom Mar 15, 2026
Merged
Conversation
This comment was marked as outdated.
This comment was marked as outdated.
52e0012 to
35e361b
Compare
`sysmon` is slow in certain envs and is unsupported by coverage plugins implementing file tracers, like the one provided by Cython that we use. Python 3.14 has `sysmon` selected by default, which causes coveragepy emit a warning, that turns into an error by `pytest` guardrails implemented through `fiterwarnings`. Refs: * coveragepy/coveragepy#2099 * coveragepy/coveragepy#2082
35e361b to
8d4f93f
Compare
This patch adds respective Trove classifiers to the core packaging metadata to announce support. These have no effect on the dependency resolution and are purely informative.
webknjaz
added a commit
to webknjaz/ansible--pylibssh
that referenced
this pull request
Mar 15, 2026
05e82c7 to
d493cc0
Compare
9475280 to
f3cf31b
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.
SUMMARY
This change fully integrates the infrastructure for testing the wheels built for Python 3.13 and 3.14. It also reflects this in the core packaging metadata as Trove classifiers.
ISSUE TYPE
ADDITIONAL INFORMATION
Some of the initial effort is coming from #809 and a few other experimental PRs that didn't end up complete. The coverage configuration needed to be included in the scope of this PR as there was a warning-turned-error that was happening in newly-added Python 3.14 jobs.