| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Signed-off-by: AlexTranAmz <167144297+AlexTranAmz@users.noreply.github.com>
| @@ -1 +1,2 @@ | |||
| python-semantic-release == 10.6.* No newline at end of file | |||
| python-semantic-release == 10.6.* | |||
| GitPython == 3.1.59 No newline at end of file | |||
There was a problem hiding this comment.
GitPython is not imported anywhere in this repo (grep -rn "import git" finds nothing) — it is a transitive dependency of python-semantic-release. Hard-pinning a transitive dep to an exact patch version has two downsides worth weighing:
Every other requirement in this repo uses a minor-series wildcard (python-semantic-release == 10.6.*, and all of requirements-testing.txt). Suggest matching that convention:
GitPython == 3.1.*
If an exact pin is deliberate — i.e. a specific GitPython release broke the bump — please add a short comment naming the breakage (as requirements-testing.txt:8-9 does for black), so a future reader knows when the pin can be relaxed. The commit message ("chore: pin GitPython for release bump") does not record the reason.
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
python-semantic-release/python-semantic-release#1477 - GitPython break semantic, pin to an older version pending fixes from upstream