Fix auto-triage dependency install on Python 3.11#431
Merged
sellakumaran merged 1 commit intoMay 29, 2026
Conversation
Pin azure-functions to the latest 1.x release because azure-functions 2.1.0 requires Python 3.13+, while the auto-triage workflow runs on Python 3.11. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
gwharris7
approved these changes
May 29, 2026
sellakumaran
approved these changes
May 29, 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.
Pin azure-functions to the latest 1.x release because azure-functions 2.1.0 requires Python 3.13+, while the auto-triage workflow runs on Python 3.11.
Summary
Fixes the
Auto-Triage Issuesworkflow dependency install failure by pinningazure-functionsto a Python 3.11-compatible release.Why
The failing workflow run stopped in the
Install dependenciesstep before triage logic executed:Workflow: https://github.com/microsoft/Agent365-devTools/actions/runs/26569467763/workflow
Job: https://github.com/microsoft/Agent365-devTools/actions/runs/26569467763/job/78272607391
The workflow uses Python 3.11 and then installs
autoTriage/requirements.txt:azure-functions==2.1.0declaresRequires-Python: >=3.13, so it cannot be installed by the workflow's Python 3.11 environment.Fix
Changed:
azure-functions==1.24.0declaresRequires-Python: >=3.7, which is compatible with Python 3.11.Verification
Reproduced the workflow's dependency install path in a Python 3.11 environment.
Old pin fails:
Fixed pin installs successfully: