Conversation
Ruff 0.13+ changed isort behavior with force-single-line, requiring import reordering. Also applies C420 (dict.fromkeys) and minor formatting.
- Add Python 3.14 to CI test matrix and classifiers - Update mypy python_version and ruff target-version to 3.14 - Update release workflow and ReadTheDocs to Python 3.14 - Remove stale Python 3.7 pydot step from CI - Add UP037 and UP042 to ruff ignore (require future annotations / 3.11+) - Remove stale UP038 ignore (rule removed from ruff) - Add match parameter to pytest.warns (PT030) - Upgrade ruff 0.8.1 -> 0.15.0, mypy 1.4.1 -> 1.14.1, watchfiles 0.24.0 -> 1.1.1
Pillow 11.0.0 has no pre-built wheel for Python 3.14 and fails to compile from source in CI due to missing libjpeg headers.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## develop #552 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 25 25
Lines 1631 1620 -11
Branches 257 200 -57
=========================================
- Hits 1631 1620 -11
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
coverage.py < 7.6.10 incorrectly reports class annotations as uncovered on Python 3.14 due to PEP 649 deferred evaluation (coveragepy#1908). Pin pytest-cov >= 6.0.0 on Python >= 3.9 to pull coverage >= 7.6.10.
|
fgmacedo
added a commit
that referenced
this pull request
Feb 11, 2026
Resolve conflicts from Python 3.14 support merge (PR #552): - CI matrix: keep scxml's min Python 3.9, add 3.14 - pyproject.toml: add 3.14 classifier, update ruff ignore list - statemachine.py: use `is not None` check, keep history_values and id-keyed listeners from scxml branch - docs/guards.md: keep expanded declaration order docs from develop - Fix trailing whitespace and unused imports from scxml branch
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
from __future__ import annotations), UP042 (needs Python 3.11+), remove stale UP038Notes
target-versionset topy314(supported since ruff 0.12)force-single-line, so import reordering is in a separate commitTest plan