From 1542d74641576285af882c4cc002f248c93e1c84 Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Mon, 17 Apr 2023 12:30:31 -0400 Subject: [PATCH] Restrict pydantic requirement to < 2.0 --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index cba00a1..b71143b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -30,7 +30,7 @@ project_urls = python_requires = >=3.7 install_requires = jsonschema[format] - pydantic[email] >= 1.8.1 + pydantic[email] >= 1.8.1, < 2.0 typing_extensions; python_version < "3.8" requests zip_safe = False