From ca6bca6445899227ca2e557db81756008d65ae91 Mon Sep 17 00:00:00 2001 From: Automated Action Date: Thu, 26 Jun 2025 16:09:12 +0000 Subject: [PATCH] Fix email-validator dependency error Add email-validator package to requirements.txt to resolve ImportError when using EmailStr in Pydantic models --- requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 49a4dab..a1eb86d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,4 +6,5 @@ python-multipart==0.0.6 python-jose[cryptography]==3.3.0 passlib[bcrypt]==1.7.4 python-decouple==3.8 -ruff==0.1.6 \ No newline at end of file +ruff==0.1.6 +email-validator==2.1.0 \ No newline at end of file