"""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"