Skip to content

Commit

Permalink
fix uvicorn support >=0.18.2
Browse files Browse the repository at this point in the history
fix uvicorn version more then 0.18.2 support, remove debug flag encode/uvicorn#1640 from 0.19.0 version
  • Loading branch information
just495 committed Feb 2, 2023
1 parent 8397405 commit 6c177fa
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion examples/api_for_sqlalchemy/main.py
Expand Up @@ -57,7 +57,6 @@ def create_app() -> FastAPI:
"asgi:app",
host="0.0.0.0",
port=8082,
debug=True,
reload=True,
app_dir=str(CURRENT_DIR),
)
2 changes: 1 addition & 1 deletion requirements.txt
@@ -1,6 +1,6 @@
SQLAlchemy>=1.4.39,<2.0.0
pydantic>=1.9.1
fastapi>=0.79.0
uvicorn>=0.18.2,<0.20.0
uvicorn>=0.18.2
simplejson>=3.17.6
tortoise-orm>=0.19.2

0 comments on commit 6c177fa

Please sign in to comment.