fix(release): pin python-semantic-release + GitPython to unbreak version bump - #139
Merged
Conversation
…ion bump GitPython 3.1.60 removed Actor.name_email_regex, which python-semantic-release's `version` command calls directly. Since PSR declares gitpython~=3.0 (unbounded on patch), an unpinned `uv tool install`/`uv tool run` resolves the latest GitPython and breaks the release workflow with "type object 'Actor' has no attribute 'name_email_regex'". Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
akshaylive
requested review from
bai-uipath,
tmatup and
uipreliga
as code owners
August 27, 2026 18:10
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
release.yml's "Run semantic-release" step was failing withtype object 'Actor' has no attribute 'name_email_regex'(see https://github.com/UiPath/coder_eval/actions/runs/33101557604/job/98620318431).python-semantic-releasedeclaresgitpython~=3.0(unbounded on patch), and GitPython 3.1.60 removedActor.name_email_regex, which PSR'sversioncommand calls. An unpinneduv tool install/uv tool runresolved the latest (broken) GitPython.python-semantic-release==10.6.1andgitpython==3.1.59(last GitPython release before the removal) in the two places the tool is installed/invoked.Test plan
make test— 4367 passed, 2 skippeduv tool run --from python-semantic-release==10.6.1 --with gitpython==3.1.59 semantic-release version --printruns cleanly (noname_email_regexerror)🤖 Generated with Claude Code