Closed
Description
It looks like there's mistake in the release of GitPython 3.1.28 with respect to the version.
Here's the output I'm getting when GitPython 3.1.28 is installed (using pip3 install
)
$ python3 -c 'import git; print(git.__version__)'
git
With older GitPython versions, I'm getting a proper version instead:
$ python3 -c 'import git; print(git.__version__)'
3.1.27
Metadata
Metadata
Assignees
Type
Projects
Relationships
Development
No branches or pull requests
Activity
branfosj commentedon Oct 10, 2022
In 21ec529 there is the change:
However,
setup.py
puts the version in by doing a find/replace with a search for'git'
:and that fails, which leaves
"git"
in two places in__init__.py
.fix version replacement in `setup.py` (#1500)
Byron commentedon Oct 10, 2022
Thanks for letting me know! This should be fixed with v3.1.29, please let me know in the comments if it isn't though.
boegel commentedon Oct 11, 2022
I can confirm that a proper versio is printed for GitPython 3.1.29, thanks a lot for the quick fix!