Skip to content

deps: sync dev tool versions - #889

Merged
stranske merged 1 commit into
mainfrom
deps/sync-dev-versions-78366c3dcf60
Jun 24, 2026
Merged

stranske merged 1 commit into
mainfrom
deps/sync-dev-versions-78366c3dcf60

Conversation

@stranske

@stranske stranske commented Jun 24, 2026

Copy link
Copy Markdown
Owner

Dev Tool Version Sync

This PR updates dev tool versions in pyproject.toml to match the central
version pins from stranske/Workflows.

Changes

Found 1 version updates:
  - ruff: ==0.15.18 -> ==0.15.19

Run with --apply to update dependency files

Why

Consistent dev tool versions across repos ensures:

  • CI behaviors match between repos
  • No surprises from version drift
  • Easier debugging when tools behave the same everywhere

Source: .github/workflows/autofix-versions.env

Summary by CodeRabbit

  • Chores
    • Updated the pinned formatter/type-checker version to a newer patch release.
    • Kept development tooling versions in sync across project configuration files.
    • Clarified the version-pin guidance in the shared workflow header comment.

Automated sync from stranske/Workflows autofix-versions.env
Versions hash: 78366c3dcf60

This ensures consistent dev tool versions across all repos.
@coderabbitai

coderabbitai Bot commented Jun 24, 2026

Copy link
Copy Markdown

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: 7e55873c-ebec-497d-86ec-04819e886a8f

📥 Commits

Reviewing files that changed from the base of the PR and between 6f895ba and feb139a.

📒 Files selected for processing (2)
  • .github/workflows/autofix-versions.env
  • pyproject.toml
🔗 Linked repositories identified

CodeRabbit considers these linked repositories for cross-repo context during reviews:

  • stranske/Workflows (auto-detected)
  • stranske/Template (auto-detected)
📜 Recent review details
⏰ Context from checks skipped due to timeout. (3)
  • GitHub Check: Python CI / lint-ruff
  • GitHub Check: Python CI / lint-format
  • GitHub Check: Python CI / typecheck-mypy
🧰 Additional context used
📓 Path-based instructions (3)
pyproject.toml

📄 CodeRabbit inference engine (.github/copilot-instructions.md)

pyproject.toml: In Python projects with mypy type checking, add module overrides to pyproject.toml using [[tool.mypy.overrides]] to ignore errors in modules with existing type issues instead of using the exclude pattern
In the Manager-Database repository (stranske/Manager-Database), modules with type issues (adapters/, api/, etl/, embeddings.py) require mypy overrides configured in pyproject.toml

Files:

  • pyproject.toml
{pyproject.toml,.github/workflows/*.{yml,yaml}}

📄 CodeRabbit inference engine (.github/copilot-instructions.md)

{pyproject.toml,.github/workflows/*.{yml,yaml}}: Ensure coverage thresholds in pyproject.toml ([tool.coverage.report] fail_under) match the coverage-min settings in CI workflow files to avoid threshold conflicts
The Manager-Database repository has a coverage threshold of 75%

Files:

  • pyproject.toml
{requirements*.txt,pyproject.toml,setup.py,setup.cfg}

📄 CodeRabbit inference engine (.github/copilot-instructions.md)

Pin jsonschema to a compatible range: jsonschema>=4.17.3,<4.23.0 to avoid breaking changes in version 4.23.0+

Files:

  • pyproject.toml
🔀 Multi-repo context

Linked repositories findings

stranske/Workflows

  • .github/workflows/autofix-versions.env:8RUFF_VERSION=0.15.19 is now the canonical pin.
  • .github/workflows/maint-52-sync-dev-versions.yml:15,23,181,269,287,301 — this workflow syncs autofix-versions.env into consumer repos’ pyproject.toml, so this bump is intended to cascade outward.
  • .github/workflows/maint-sync-env-from-pyproject.yml:10-12,47-61 — explicitly copies the canonical autofix-versions.env into templates, including templates/consumer-repo/... and templates/integration-repo/....
  • .github/workflows/reusable-10-ci-python.yml:578-594,980-996,1298-1314,1647-1663 and .github/workflows/reusable-18-autofix.yml:437-445 — both read RUFF_VERSION from autofix-versions.env and install ruff==${RUFF_VERSION}.

stranske/Template

  • pyproject.toml:29 — still pins ruff==0.15.18, so it’s behind the Workflows canonical version.
  • .github/workflows/autofix-versions.env:8 — still has RUFF_VERSION=0.15.18.
  • requirements.lock:49 — also still pins ruff==0.15.18.
  • scripts/sync_dev_dependencies.py:2-5,27,34,49,361 — this repo is set up to sync dev-tool pins from .github/workflows/autofix-versions.env into pyproject.toml, so the version bump should be propagated here too.
🔇 Additional comments (2)
.github/workflows/autofix-versions.env (1)

1-8: LGTM!

pyproject.toml (1)

36-36: LGTM!


📝 Walkthrough

Walkthrough

RUFF_VERSION is bumped from 0.15.18 to 0.15.19 in .github/workflows/autofix-versions.env, and the ruff dev dependency in pyproject.toml is updated to match. The env file header comment is also lightly revised.

Changes

Ruff version bump to 0.15.19

Layer / File(s) Summary
Ruff 0.15.19 pin in env and pyproject.toml
.github/workflows/autofix-versions.env, pyproject.toml
RUFF_VERSION updated from 0.15.18 to 0.15.19 in the CI autofix env file, and the matching ruff pin in pyproject.toml [project.optional-dependencies].dev updated to 0.15.19. Header comment in the env file lightly revised.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Possibly related PRs

  • stranske/Collab-Admin#873: Updates the same ruff version pin in pyproject.toml and synchronizes it via .github/workflows/autofix-versions.env, the same two files changed here.
🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly reflects the main change: syncing development tool version pins.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch deps/sync-dev-versions-78366c3dcf60

Comment @coderabbitai help to get the list of available commands.

@stranske
stranske merged commit 8dc64cf into main Jun 24, 2026
41 checks passed
@stranske
stranske deleted the deps/sync-dev-versions-78366c3dcf60 branch June 24, 2026 10:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant