chore: move pydantic and websocket in sync dependencies target

This commit is contained in:
Yohan Boniface 2024-10-21 11:50:10 +02:00
parent b3e88b6096
commit c74971bc0e
2 changed files with 2 additions and 3 deletions

View file

@ -34,13 +34,11 @@ dependencies = [
"django-probes==1.7.0", "django-probes==1.7.0",
"Pillow==10.4.0", "Pillow==10.4.0",
"psycopg==3.2.3", "psycopg==3.2.3",
"pydantic==2.9.2",
"requests==2.32.3", "requests==2.32.3",
"rcssmin==1.1.2", "rcssmin==1.1.2",
"rjsmin==1.2.2", "rjsmin==1.2.2",
"social-auth-core==4.5.4", "social-auth-core==4.5.4",
"social-auth-app-django==5.4.2", "social-auth-app-django==5.4.2",
"websockets==13.1",
] ]
[project.optional-dependencies] [project.optional-dependencies]
@ -70,6 +68,8 @@ docker = [
sync = [ sync = [
"channels==4.1.0", "channels==4.1.0",
"daphne==4.1.2", "daphne==4.1.2",
"pydantic==2.9.2",
"websockets==13.1",
] ]
[project.scripts] [project.scripts]

View file

@ -11,6 +11,5 @@ django_asgi_app = get_asgi_application()
application = ProtocolTypeRouter( application = ProtocolTypeRouter(
{ {
"http": django_asgi_app, "http": django_asgi_app,
# Just HTTP for now. (We can add other protocols later.)
} }
) )