Spaces:
Sleeping
Sleeping
Commit ·
6c653a2
1
Parent(s): 1b35f8e
Add missing httpx dependency for Authlib's Starlette OAuth client
Browse filesDeployed login crashed with ModuleNotFoundError: httpx, since Authlib's
starlette_client integration imports httpx for its async HTTP client but
it wasn't in requirements.txt. Verified by hitting the real /auth/login
route end-to-end and confirming it now 302s to Google's consent screen
instead of 500ing.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
- requirements.txt +1 -0
requirements.txt
CHANGED
|
@@ -4,4 +4,5 @@ streamlit>=1.42
|
|
| 4 |
gspread
|
| 5 |
google-auth
|
| 6 |
Authlib
|
|
|
|
| 7 |
tomli_w
|
|
|
|
| 4 |
gspread
|
| 5 |
google-auth
|
| 6 |
Authlib
|
| 7 |
+
httpx
|
| 8 |
tomli_w
|