Skip to content
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

Update __init__.py #155

Merged
merged 2 commits into from
May 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions hamilton/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
try:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we output this as __version__? Or keep it in caps...

Looking at this (old but I think still relevant, updated recently), I think we want the __version__. Can be tuple or string 🤷. https://stackoverflow.com/questions/458550/standard-way-to-embed-version-into-python-package.

from .version import VERSION as __version__ # noqa: F401
except ImportError:
from version import VERSION as __version__ # noqa: F401