Add support for Python 3.13 and 3.14 in CI workflows and update README accordingly

This commit is contained in:
Egor Rachkovskii 2026-05-08 14:23:46 +01:00
parent 40bcc1f529
commit d68ffe8d65
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
python-version: ["3.11", "3.12"] python-version: ["3.11", "3.12", "3.13", "3.14"]
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-python@v5 - 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. `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 ## Related