CLI(V1): Patch release (#11349)

This commit is contained in:
Rohit Malhotra
2025-10-13 18:11:59 -04:00
committed by GitHub
parent 2640d43159
commit 5076f21e86
3 changed files with 9 additions and 4 deletions

View File

@@ -1,3 +1,8 @@
"""OpenHands CLI package."""
"""OpenHands package."""
__version__ = '0.1.0'
from importlib.metadata import version, PackageNotFoundError
try:
__version__ = version("openhands")
except PackageNotFoundError:
__version__ = "0.0.0"