From 33197c2f62534a065ee21fb907600b51d47bbbc0 Mon Sep 17 00:00:00 2001 From: Elliott Date: Mon, 10 Jul 2023 10:33:13 -0400 Subject: [PATCH] Pin pydantic below 2 (#710) --- dataquality/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dataquality/__init__.py b/dataquality/__init__.py index 203bfcad3..a9d02fe6a 100644 --- a/dataquality/__init__.py +++ b/dataquality/__init__.py @@ -31,7 +31,7 @@ """ -__version__ = "0.9.4" +__version__ = "0.9.5" import sys from typing import Any, List, Optional diff --git a/pyproject.toml b/pyproject.toml index e18f74784..53507ffb1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ readme = "README.md" license = {text = 'See LICENSE'} requires-python = ">=3.7" dependencies = [ - "pydantic>=1.8.2", + "pydantic>=1.8.2,<2.0.0", "requests>=2.25.1", "types-requests>=2.25.2", "pandas>=0.20.0",