You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice to somehow add the latest commit hash as part of the version string or as a separate variable in __init__.py. This would be a useful piece of information to have when debugging issues reported by third parties, since they can always check out some random branch or commit instead of using what is in PyPI. If we proceed with #36, this would be particularly useful when debugging code built from the develop branch.
I'm not quite sure how to implement this (maybe via a git hook), but this information can be obtained via git rev-parse HEAD.
The text was updated successfully, but these errors were encountered:
It would be nice to somehow add the latest commit hash as part of the version string or as a separate variable in
__init__.py
. This would be a useful piece of information to have when debugging issues reported by third parties, since they can always check out some random branch or commit instead of using what is in PyPI. If we proceed with #36, this would be particularly useful when debugging code built from thedevelop
branch.I'm not quite sure how to implement this (maybe via a git hook), but this information can be obtained via
git rev-parse HEAD
.The text was updated successfully, but these errors were encountered: