Skip to content

Commit

Permalink
evidentlyai#862: Bump pydantic version
Browse files Browse the repository at this point in the history
  • Loading branch information
maciejmajerczyk committed Jan 9, 2024
1 parent 6f9da2f commit 9f6dc4c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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 src/evidently/_version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
# coding: utf-8

version_info = (0, 4, 13)
version_info = (0, 4, 14)
__version__ = ".".join(map(str, version_info))
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

0 comments on commit 9f6dc4c

Please sign in to comment.