From 7965bcc61120fe74e5cdb433304fab1b5a641d82 Mon Sep 17 00:00:00 2001 From: Yeison Vargas Date: Tue, 6 Feb 2024 23:51:45 -0500 Subject: [PATCH] fix: support pydantic2 by using safety_schemas 0.0.2 --- setup.cfg | 4 ++-- test_requirements.txt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.cfg b/setup.cfg index c831f0b..97a7254 100644 --- a/setup.cfg +++ b/setup.cfg @@ -49,8 +49,8 @@ install_requires = Authlib>=1.2.0 rich typer - pydantic>=1.10.12,<2.0 - safety_schemas>=0.0.1 + pydantic>=1.10.12 + safety_schemas>=0.0.2 typing-extensions>=4.7.1 [options.entry_points] diff --git a/test_requirements.txt b/test_requirements.txt index 3d5e5b5..f1cc7af 100644 --- a/test_requirements.txt +++ b/test_requirements.txt @@ -16,6 +16,6 @@ marshmallow>=3.15.0; python_version>="3.7" Authlib>=1.2.0 rich typer -pydantic>=1.10.12,<2.0 -safety_schemas>=0.0.1 +pydantic>=1.10.12 +safety_schemas>=0.0.2 typing-extensions>=4.7.1