Conversation
Replace system Python + pip/poetry/setuptools with uv in all three workflow files (build.yml, unit-tests.yml, sphinx-gh-pages.yml). This fixes CI failures caused by grf-py requiring Python >=3.12.10, which the base Ubuntu image does not provide. Co-authored-by: ahyangyi <700956+ahyangyi@users.noreply.github.com> Agent-Logs-Url: https://github.com/ahyangyi/agrf/sessions/9fd65e7f-8147-4fd6-8915-7aa797c78ddb
Copilot
AI
changed the title
[WIP] Update CI workflow to use Python 3.12.10 in venv
Rework CI workflows to use uv-managed venv with Python 3.12.10
Mar 23, 2026
Fix CI failures where `uv run` re-resolved dependencies against requires-python>=3.9, conflicting with grf-py's >=3.12.10 requirement. - Activate venv via GITHUB_ENV/GITHUB_PATH so subsequent steps use it - Update requires-python to >=3.12.10 to match grf-py requirement - Use direct pytest/make commands since venv is activated Co-authored-by: ahyangyi <700956+ahyangyi@users.noreply.github.com> Agent-Logs-Url: https://github.com/ahyangyi/agrf/sessions/50cc3807-9657-4883-befe-6f5c5e55cadb
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.
uv runfails becauserequires-python >= 3.9conflicts withgrf>=3.12.10requires-pythoninpyproject.tomlfrom>=3.9to>=3.12.10build.yml— activate venv via GITHUB_ENV/GITHUB_PATHunit-tests.yml— activate venv, use directpytestcommandsphinx-gh-pages.yml— activate venv, use directmake doccommand💡 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.