Update GitHub workflows to Python 3.10#194
Merged
mishushakov merged 5 commits intomainfrom Mar 11, 2026
Merged
Conversation
Upgrade all Python workflow jobs from Python 3.12 (and 3.10 for linting) to Python 3.13, and update setup-python action from v4 to v6 to support the new version. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
Add a .tool-versions file (python 3.13, poetry 1.8.1) and use wistia/parse-tool-versions to read versions in all workflows, replacing hardcoded version strings with env var references. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
jakubno
approved these changes
Mar 11, 2026
jakubno
requested changes
Mar 11, 2026
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Update build_prod_template.yml to use TOOL_VERSION_PYTHON from .tool-versions instead of hardcoded '3.13', matching the pattern used in build_test_template.yml. This ensures consistency between test and production template builds. Co-authored-by: Mish Ushakov <mishushakov@users.noreply.github.com>
jakubno
approved these changes
Mar 11, 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.
Summary
Affected Workflows
🤖 Generated with Claude Code
Note
Medium Risk
CI behavior changes across multiple workflows by switching Python/Poetry versions and upgrading
setup-pythonusage, which can surface runtime or dependency incompatibilities. No production code paths are modified.Overview
Standardizes GitHub Actions workflows to source tool versions from a new
.tool-versionsfile by adding aParse .tool-versionsstep and using${{ env.TOOL_VERSION_PYTHON }}/${{ env.TOOL_VERSION_POETRY }}instead of hardcoded versions.Updates multiple CI/release workflows to
actions/setup-python@v6and aligns Python/Poetry setup (including template build jobs), reducing version drift between jobs.Written by Cursor Bugbot for commit 0f92090. This will update automatically on new commits. Configure here.