chore: add Dependabot and test across Python 3.10-3.14 - #11
Conversation
Add .github/dependabot.yml for Python (Poetry, via pyproject.toml/poetry.lock) and GitHub Actions updates (weekly, grouped patch/minor, majors ignored). Declare 3.13 and 3.14 support via classifiers, default CI to Python 3.13, and add a test matrix exercising the full >=3.10 range (3.10-3.14), gating releases on it. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using default effort and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 8cadea3. Configure here.
| open-pull-requests-limit: 5 | ||
| labels: | ||
| - "dependencies" | ||
| versioning-strategy: "increase" |
There was a problem hiding this comment.
Dependabot tightens broad constraint
Medium Severity
versioning-strategy: increase always raises lower bounds to match new versions, so Dependabot would gradually tighten the intentionally broad squawk-cli = ">=2.0" constraint in pyproject.toml. That can conflict with consumers who pin their own squawk version via additional_dependencies.
Triggered by learned rule: squawk-cli broad version constraint is intentional
Reviewed by Cursor Bugbot for commit 8cadea3. Configure here.
There was a problem hiding this comment.
PR Risk Assessment
Risk level: Very Low
Review required: No
Action taken: Approved
Rationale
Per-cluster assessment (max across clusters = PR tier):
- Dependabot config (
.github/dependabot.yml): Weekly pip and GitHub Actions update automation only. No runtime behavior change; trivially reversible by deleting or editing the file. Very Low. - CI / release gating (
.github/workflows/ci.yml,.github/actions/setup-python-poetry/action.yml): Adds a Python 3.10–3.14 test matrix, bumps the default CI Python to 3.13, and gatesauto-tagon the matrix. CI-only tooling with no shared-resource or production blast radius. Very Low. - Package metadata (
pyproject.tomlclassifiers + version bump,squawk_alembic/__init__.pyversion constant): Metadata-only edits; no hook or library logic changed. Very Low.
No production logic was modified, so no new tests are required. All CI checks (including the new matrix jobs on 3.10–3.14) are passing.
risk_level: Very Low
review_required: false
reviewers: []
action_taken: approved
rationale: Changes are limited to Dependabot config, CI test-matrix/default Python version, and package metadata (version bump + PyPI classifiers). No production hook/library logic was modified; all matrix CI jobs pass.
Sent by Cursor Automation: Assign PR reviewers & Assess Risk & Approve if Safe




Summary
.github/dependabot.yml: weekly updates for Python (Poetry, viapyproject.toml/poetry.lock) and GitHub Actions, grouped patch/minor, majors ignored.>=3.10).test-matrixjob running the suite on 3.10, 3.11, 3.12, 3.13, and 3.14 (fail-fast: false), so every supported version is exercised. Releases are gated on the matrix.Notes
ubuntu-latest(GitHub-hosted), appropriate for a public repository.Note
Low Risk
Changes are limited to CI, Dependabot, and version/classifier metadata with no modifications to hook or library behavior.
Overview
Adds Dependabot via
.github/dependabot.ymlfor weekly Poetry/pip updates (grouped patch/minor, majors ignored) and GitHub Actions bumps, with cooldowns and dependency labels.CI now defaults the shared setup action to Python 3.13 (was 3.12) and introduces a
test-matrixjob that runspyteston 3.10 through 3.14 withfail-fast: false.auto-tagmust pass bothlint-and-testandtest-matrixbefore tagging releases.Package metadata bumps to 0.3.6 and adds PyPI classifiers for 3.13 and 3.14; runtime dependency remains
python >= 3.10.Reviewed by Cursor Bugbot for commit 8cadea3. Bugbot is set up for automated code reviews on this repo. Configure here.