fix: declare Python 3.10 as minimum version and expand CI matrix#17
Merged
Conversation
Add python_requires=">=3.10" to setup.py to accurately reflect the use of structural pattern matching (PEP 622) and union type annotations (PEP 604) already present in the codebase. Expand CI to test against Python 3.10–3.13 on all platforms, add a ruff lint job to catch future syntax regressions, and document the requirement in the README.
ruff removed the E999 rule; use python -m compileall instead to check for syntax errors against the installed Python version.
Replace the removed ruff E999 rule with vermin, which statically detects the minimum Python version a codebase requires and fails if any file uses syntax or stdlib features beyond the declared floor. Also remove the ruff config from setup.cfg for now.
drewr95
previously approved these changes
Jun 18, 2026
khauersp
previously approved these changes
Jun 18, 2026
…r_claim_fixed_reduced_time The 100 ms margin (sleep 0.3 s after start(0.2)) was insufficient on loaded macOS CI runners, causing a spurious failure. Switch to the same poll-until-empty + hard deadline pattern used by the other address-claim tests so the assertion fires as soon as the TX message is consumed.
…le versions Bump actions/checkout@v4 → v4.2.2 and actions/setup-python@v5 → v5.3.0, both of which declare node24 as their runtime and silence the deprecation warning introduced when GitHub runners defaulted to Node.js 24 in June 2026. https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
khauersp
approved these changes
Jun 19, 2026
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.
Fix: juergenH87#91 from https://github.com/j-c-cook
But considering 3.10 the latest supported version
Add python_requires=">=3.10" to setup.py to accurately reflect the use of structural pattern matching (PEP 622) and union type annotations (PEP 604) already present in the codebase. Expand CI to test against Python 3.10–3.13 on all platforms, add a ruff lint job to catch future syntax regressions, and document the requirement in the README.