Update dependencies and improve Python path handling

Updated several frontend dependencies including MUI packages and added new ones like `@mui/x-charts`. Adjusted the Python path setup in the CI configuration to correctly point to the `aaredb` backend, ensuring accurate module resolution.
This commit is contained in:
GotthardG
2025-03-19 09:14:12 +01:00
parent 68f87f0d8d
commit 536cfcd34b
8 changed files with 487 additions and 63 deletions

View File

@ -363,6 +363,11 @@ class SampleEventResponse(SampleEventCreate):
from_attributes = True
class CurvePoint(BaseModel):
resolution: float
value: float
class Results(BaseModel):
pipeline: str
resolution: float
@ -371,8 +376,8 @@ class Results(BaseModel):
rmerge: float
rmeas: float
isig: float
cc: float
cchalf: float
cc: List[CurvePoint]
cchalf: List[CurvePoint]
completeness: float
multiplicity: float
nobs: int