Update uvicorn

This commit is contained in:
Andras Schmelczer 2022-06-25 15:31:24 +02:00
parent 0bf865ce2a
commit a4fa69eb0e
2 changed files with 2 additions and 2 deletions

View file

@ -41,7 +41,7 @@ install_requires =
fastapi >= 0.70.0 fastapi >= 0.70.0
plotly >= 5.8.0 plotly >= 5.8.0
dash >= 2.4.0 dash >= 2.4.0
uvicorn[standard] >= 0.17.0 uvicorn[standard] >= 0.18.0
watchdog >= 2.1.0 watchdog >= 2.1.0
pymongo >= 4.0.0 pymongo >= 4.0.0

View file

@ -8,8 +8,8 @@ from pathlib import Path
from typing import Optional from typing import Optional
import uvicorn import uvicorn
from uvicorn._subprocess import get_subprocess
from uvicorn.config import LOGGING_CONFIG, Config from uvicorn.config import LOGGING_CONFIG, Config
from uvicorn.subprocess import get_subprocess
from uvicorn.supervisors.basereload import BaseReload from uvicorn.supervisors.basereload import BaseReload
from watchdog.events import FileSystemEvent, PatternMatchingEventHandler from watchdog.events import FileSystemEvent, PatternMatchingEventHandler
from watchdog.observers import Observer from watchdog.observers import Observer