From bae96193634375840879333d3aa03b74c587f49d Mon Sep 17 00:00:00 2001 From: ZdenekSrotyr Date: Tue, 31 Mar 2026 19:23:24 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20restore=20authlib=20+=20argon2-cffi=20?= =?UTF-8?q?=E2=80=94=20needed=20by=20FastAPI=20auth=20providers?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Google OAuth uses authlib, password auth uses argon2. These were incorrectly removed as 'legacy' but are used by app/auth/providers/. --- requirements.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/requirements.txt b/requirements.txt index 0111ebe..bbf3e98 100644 --- a/requirements.txt +++ b/requirements.txt @@ -10,6 +10,8 @@ jinja2>=3.1.0 # Authentication PyJWT>=2.8.0 itsdangerous>=2.1.0 +authlib>=1.3.0 +argon2-cffi>=23.1.0 # HTTP client httpx>=0.27.0