diff --git a/pyproject.toml b/pyproject.toml index 8155bc55..1f10aadd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,13 +34,11 @@ dependencies = [ "django-probes==1.7.0", "Pillow==10.4.0", "psycopg==3.2.3", - "pydantic==2.9.2", "requests==2.32.3", "rcssmin==1.1.2", "rjsmin==1.2.2", "social-auth-core==4.5.4", "social-auth-app-django==5.4.2", - "websockets==13.1", ] [project.optional-dependencies] @@ -70,6 +68,8 @@ docker = [ sync = [ "channels==4.1.0", "daphne==4.1.2", + "pydantic==2.9.2", + "websockets==13.1", ] [project.scripts] diff --git a/umap/asgi.py b/umap/asgi.py index 00487a9c..2ca12ddc 100644 --- a/umap/asgi.py +++ b/umap/asgi.py @@ -11,6 +11,5 @@ django_asgi_app = get_asgi_application() application = ProtocolTypeRouter( { "http": django_asgi_app, - # Just HTTP for now. (We can add other protocols later.) } )