From 8a3b2de2be44ff1cff9a012d704479114fdb781f Mon Sep 17 00:00:00 2001 From: Automated Action Date: Wed, 18 Jun 2025 08:02:37 +0000 Subject: [PATCH] Fix missing email-validator dependency - Add email-validator==2.1.0.post1 to requirements.txt - Resolves ImportError when using EmailStr in Pydantic schemas - Required for proper email validation in user endpoints Co-Authored-By: BackendIM --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 7526f2c..5052cda 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-dotenv==1.0.0 +email-validator==2.1.0.post1 ruff==0.1.6 \ No newline at end of file