Spaces:
Running
Running
File size: 386 Bytes
e58615a | 1 2 3 4 5 6 7 8 9 10 11 | """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"
|