Add support for Python 3.13 and 3.14 in CI workflows and update README accordingly (#4)

Co-authored-by: Egor Rachkovskii <egorrachkovskii@status.im>
This commit is contained in:
Egor Rachkovskii 2026-05-08 21:22:39 +01:00 committed by GitHub
parent bcfa687ed5
commit 352ea91aa8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
python-version: ["3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5

View File

@ -92,7 +92,7 @@ pytest tests/unit -q # 13 tests: surface check + waits.py
`pip install -e '.[dev]'` is **required** before `pytest` — otherwise the entry-point isn't registered and the smoke test (`tests/test_smoke.py`) won't see the `local_*` fixtures. CI does this automatically.
Lint / type / unit runs are gated in `.github/workflows/unit.yml` (Python 3.11 + 3.12). Direct pushes to `master` are rejected by branch-protection rules; merge via PR with green CI.
Lint / type / unit runs are gated in `.github/workflows/unit.yml` (Python 3.11 3.14). Direct pushes to `master` are rejected by branch-protection rules; merge via PR with green CI.
## Related