Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump pydantic version #942

Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"scipy>=1.5.4",
"requests>=2.21.0",
"PyYAML>=5.1",
"pydantic<2",
"pydantic<3",
"fastapi>=0.100.0",
"fastapi-restful>=0.5.0",
"typing-inspect>=0.9.0",
Expand Down
2 changes: 1 addition & 1 deletion tests/utils/test_pydantic_utils.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from typing import Dict

import pytest
from pydantic import parse_obj_as

from evidently._pydantic_compat import parse_obj_as
from evidently.base_metric import MetricResult
from evidently.pydantic_utils import PolymorphicModel

Expand Down