fix(ci): use Python 3.13 for packages requiring >= 3.13 in build-plugin workflow#630
Closed
Copilot wants to merge 2 commits intofi-7_use-uv-and-ruff-for-main-repo-managementfrom
Closed
fix(ci): use Python 3.13 for packages requiring >= 3.13 in build-plugin workflow#630Copilot wants to merge 2 commits intofi-7_use-uv-and-ruff-for-main-repo-managementfrom
Copilot wants to merge 2 commits intofi-7_use-uv-and-ruff-for-main-repo-managementfrom
Conversation
8 tasks
…r/max builds Co-authored-by: dennisweil <35080133+dennisweil@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] [WIP] Address feedback on Python version change in migration PR
fix(ci): use Python 3.13 for packages requiring >= 3.13 in build-plugin workflow
Mar 19, 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.
The
build-plugin.ymlworkflow was setting up Python 3.11 for packages (nuke-studio,framework-houdini,framework-blender,framework-max) that all declarerequires-python = ">= 3.13, < 3.14", causing a version mismatch that would failuv build.Resolves :
This PR has been tested on :
Overview
Purpose: Fix Python version mismatch in CI that would cause
uv buildto fail for packages pinned to Python 3.13.Scope:
.github/workflows/build-plugin.ymlonly.Implementation Details
Approach: Change
python-version: '3.11'→python-version: '3.13'in thesetup-pythonstep gatingnuke-studio,framework-houdini,framework-blender, andframework-max.Reasoning: All four packages declare
requires-python = ">= 3.13, < 3.14". Using 3.11 violates that constraint at build time; 3.13 is the direct, minimal fix.Changes:
.github/workflows/build-plugin.yml: single line change,'3.11'→'3.13'on thesetup-pythonstep for the affected packages.Trade-offs: None — this strictly aligns the CI Python version with what the packages already require.
Testing
Tests Added: N/A — workflow-only change.
Manual Testing: Verified all four
pyproject.tomlfiles declarerequires-python = ">= 3.13, < 3.14", confirming 3.13 is the correct target.Testing Environment: CI (GitHub Actions).
Notes for Reviewers
Focus Areas: Confirm no other workflow steps or matrix jobs set a conflicting Python version for these packages.
Dependencies: Requires the GitHub Actions runner to have Python 3.13 available via
actions/setup-python@v4(it does).Known Issues: None.
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.