RRC / src /racing_reports /__init__.py
pablogrois's picture
Deploy MVP: API JSON + SPA + bundle/cache de artifacts CORE
e58615a
Raw
History Blame Contribute Delete
386 Bytes
"""Racing report generation package."""
# Forzar backend Agg antes de cualquier import de matplotlib.pyplot. Sin esto,
# en MacOS el job runner (que corre en threads daemon) intenta abrir el backend
# GUI y crashea con "Cannot create a GUI FigureManager outside the main thread".
import matplotlib as _matplotlib
_matplotlib.use("Agg")
__all__ = ["__version__"]
__version__ = "0.1.0"