-
Notifications
You must be signed in to change notification settings - Fork 23
chore: pin GitPython for release bump #359
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
leongdl
merged 1 commit into
OpenJobDescription:mainline
from
leongdl:chore/pin-gitpython-release
Aug 26, 2026
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,7 @@ | ||
| python-semantic-release == 10.6.* | ||
| python-semantic-release == 10.6.* | ||
| # GitPython 3.1.60 dropped Actor.name_email_regex, which python-semantic-release | ||
| # 10.6.1 still references; the release bump dies with | ||
| # "type object 'Actor' has no attribute 'name_email_regex'" before it does any | ||
| # git work. PSR depends on `gitpython~=3.0`, so the bad version floats in on a | ||
| # fresh install. Unpin once PSR ships a release compatible with 3.1.60+. | ||
| GitPython == 3.1.59 | ||
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This pin is likely to be silently reverted by the repository automation, reintroducing the exact breakage it guards against.
.github/dependabot.ymlruns thepipecosystem on directory/, which covers this file — it has bumpedpython-semantic-releasehere many times already. OnceGitPython == 3.1.59is a tracked requirement, Dependabot will propose3.1.60, which is a patch bump and therefore matches thepip-minor-patchgroup..github/workflows/auto_approve.ymlthen auto-approves anydependabot[bot]PR, so the unpin can land on an approval nobody actually read, and the nextRelease: Bumprun dies again withActor has no attribute name_email_regex.The explanatory comment above the pin is genuinely useful for humans, but Dependabot does not read it. Consider pairing the pin with an ignore rule so the constraint is machine-enforced — under the
pipentry in.github/dependabot.yml:That also keeps the two places in sync: whoever removes the ignore rule has to look at the pin, and vice versa.