From 75092233b95365a06d083f1917effe6004326211 Mon Sep 17 00:00:00 2001 From: Camillo Lugaresi Date: Tue, 9 Apr 2024 23:30:36 -0700 Subject: [PATCH] feat: allow pydantic 2 The setup currently specifies pydantic < 2, but this package can actually be used with Pydantic 2 now that Ormar supports it. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0795e72..81ec26f 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ install_requires = [ "databases[postgresql]>=0.5.4,<1.0.0", "ormar>=0.10.24,<1.0.0", - "pydantic>=1.9.0,<2.0.0", + "pydantic>=1.9.0", "sqlalchemy>=1.4.29,<2.0.0", ] test_requires = [