Skip to content

Commit

Permalink
Merge branch 'main' into ui/refactor-huge
Browse files Browse the repository at this point in the history
  • Loading branch information
DimaAmega committed Dec 14, 2024
2 parents a8e3d80 + 9817cc1 commit 2c838ec
Show file tree
Hide file tree
Showing 41 changed files with 1,081 additions and 955 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
install_requires=[
"plotly>=5.10.0",
"statsmodels>=0.12.2",
"scikit-learn>=1.0.1",
"scikit-learn>=1.0.1,<1.6.0",
"pandas[parquet]>=1.3.5",
"numpy>=1.22.0,<2.1",
"nltk>=3.6.7",
Expand Down
3 changes: 3 additions & 0 deletions src/evidently/_pydantic_compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
from pydantic.v1 import PrivateAttr
from pydantic.v1 import SecretStr
from pydantic.v1 import ValidationError
from pydantic.v1 import create_model
from pydantic.v1 import parse_obj_as
from pydantic.v1 import validator
from pydantic.v1.fields import SHAPE_DICT
Expand All @@ -37,6 +38,7 @@
from pydantic import PrivateAttr
from pydantic import SecretStr # type: ignore[assignment]
from pydantic import ValidationError # type: ignore[assignment]
from pydantic import create_model # type: ignore[attr-defined,no-redef]
from pydantic import parse_obj_as
from pydantic import validator
from pydantic.fields import SHAPE_DICT # type: ignore[attr-defined,no-redef]
Expand Down Expand Up @@ -77,4 +79,5 @@
"DictStrAny",
"PrivateAttr",
"Extra",
"create_model",
]
2 changes: 1 addition & 1 deletion src/evidently/_version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# coding: utf-8

version_info = (0, 5, 0)
version_info = (0, 5, 1)
__version__ = ".".join(map(str, version_info))


Expand Down
78 changes: 39 additions & 39 deletions src/evidently/nbextension/static/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/evidently/ui/api/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
from evidently.ui.base import EntityType
from evidently.ui.base import Org
from evidently.ui.base import Project
from evidently.ui.base import Role
from evidently.ui.base import SnapshotMetadata
from evidently.ui.base import Team
from evidently.ui.base import User
from evidently.ui.managers.auth import Role
from evidently.ui.type_aliases import ZERO_UUID
from evidently.ui.type_aliases import OrgID
from evidently.ui.type_aliases import RoleID
Expand Down
Loading

0 comments on commit 2c838ec

Please sign in to comment.