refactor: version fallback to 0.0.0+unknown (drop hardcoded literal)

Signed-off-by: disqualifier <dev@disqualifier.me>
This commit is contained in:
2026-07-03 17:01:33 -04:00
parent 5885839f06
commit c670ab952e
+1 -1
View File
@@ -16,7 +16,7 @@ from .dpy_cache import (
try: try:
__version__ = version("dpy_cache") __version__ = version("dpy_cache")
except PackageNotFoundError: except PackageNotFoundError:
__version__ = "0.1.2" __version__ = "0.0.0+unknown"
__all__ = [ __all__ = [
"DPYCache", "DPYCache",