fix(auth): Fix passlib/bcrypt dependency resolution
Some checks failed
CI / style (push) Has been cancelled
CI / build-client (push) Has been cancelled
CI / build-amd64 (push) Has been cancelled
CI / build-tester (push) Has been cancelled
CI / test (cockroachdb) (push) Has been cancelled
CI / test (mariadb) (push) Has been cancelled
CI / test (postgres) (push) Has been cancelled
CI / test (sqlite) (push) Has been cancelled
CI / build-arm64 (push) Has been cancelled
CI / build-armv7 (push) Has been cancelled
CI / publish-images (push) Has been cancelled
CI / publish-release (push) Has been cancelled

This commit is contained in:
2026-01-16 00:49:47 -06:00
parent 3613e7739a
commit a730dd1ec9
2 changed files with 263 additions and 3 deletions

View File

@@ -26,8 +26,9 @@ dependencies = [
"httpx~=0.28",
"hishel~=0.1",
"python-multipart~=0.0",
"passlib[bcrypt]~=1.7",
"python-jose[cryptography]~=3.3",
"passlib>=1.7",
"bcrypt>=4.0",
"python-jose[cryptography]>=3.3",
]
requires-python = ">=3.9,<3.13"