mirror of
https://github.com/deepset-ai/haystack.git
synced 2025-11-03 11:19:57 +00:00
* update ui package: first try * update README * fixes * update schemas * restore schemas * use matrix folder in tests * fix tests * fix schemas * really fix schemas * don't use matrix folder * remove blank line * cleaner pytest command
11 lines
221 B
Python
11 lines
221 B
Python
import logging
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
__version__ = "0.0.0"
|
|
try:
|
|
__version__ = open(Path(__file__).parent.parent / "VERSION.txt", "r").read()
|
|
except Exception as e:
|
|
logging.exception("No VERSION.txt found!")
|