Add max deps and bump old ones
All checks were successful
Publish documentation / publish (push) Successful in 51s
Check / Test on Python 3.10 (push) Successful in 1m1s
Check / Lint, format & type checks (push) Successful in 1m9s
Check / Test on Python 3.11 (push) Successful in 51s
Check / Test on Python 3.12 (push) Successful in 58s
Check / Test on Python 3.13 (push) Successful in 55s

This commit is contained in:
Andras Schmelczer 2026-06-06 22:29:16 +01:00
parent 2403a20ed0
commit c55eba2077
18 changed files with 98 additions and 75 deletions

View file

@ -1,6 +1,4 @@
from typing import List
from typing_extensions import Literal # <= Python 3.7
from typing import List, Literal
Operator = Literal[">=", "<=", "<", ">", "!=", "=", "contains"]

View file

@ -1,6 +1,4 @@
from typing import Any, List, Optional
from typing_extensions import Literal # <= Python 3.7
from typing import Any, List, Literal, Optional
from ..hashable_base_model import HashableBaseModel

View file

@ -1,5 +1,6 @@
from typing import Literal
from pydantic import BaseModel
from typing_extensions import Literal # <= Python 3.7
class SortBy(BaseModel):

View file

@ -9,7 +9,7 @@ from .model import Model
T = TypeVar("T")
class Trace(Generic[T], HashableBaseModel):
class Trace(HashableBaseModel, Generic[T]):
"""Universal structure for storing prediction traces and training data.
Attributes: