Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions dashboard/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@
import sys
from pathlib import Path

if sys.version_info < (3, 10): # noqa: UP036 — intentional guard for clear error message
raise RuntimeError(
f"Python ≥ 3.10 is required (running {sys.version}). "
"Please recreate your virtualenv with Python 3.10+."
)

import numpy as np
import pandas as pd
import streamlit as st
Expand Down
Loading