Hi,
Thanks for this nice library. What do you think about using git tag to track releases in git as well? I prefer fetching python dependencies from source and having a 1:1 relationship between pypi releases and git tags at least for upcoming releases would simplify things quite a lot.
Just git tag "v$version" HEAD && git push origin "v$version" should suffice, and maybe custom "upload" task in setup.py could enable this without complicating things for maintainers? What do you think?
Hi, Thanks for this nice library. What do you think about using
git tag
to track releases in git as well? I prefer fetching python dependencies from source and having a 1:1 relationship between pypi releases and git tags at least for upcoming releases would simplify things quite a lot.Just git tag "v$version" HEAD && git push origin "v$version" should suffice, and maybe custom "upload" task in setup.py could enable this without complicating things for maintainers? What do you think?