refactor: replace Trio with asyncio/uvloop

This commit is contained in:
Stefan Stammberger
2021-08-30 19:55:02 +02:00
parent fe79709698
commit d9849d43d2
21 changed files with 332 additions and 317 deletions
+4 -6
View File
@@ -16,22 +16,20 @@ pyscss = "*"
shortuuid = "*"
typing-extensions = "*"
httpx = "*"
trio = "==0.16.0"
sqlalchemy-aio = "*"
embit = "*"
pyqrcode = "*"
pypng = "*"
sqlalchemy = "==1.3.23"
psycopg2-binary = "*"
fastapi = {ref = "anyio", git = "https://github.com/graingert/fastapi"}
trio-asyncio = "*"
hypercorn = {extras = ["trio"], version = "*"}
aiofiles = "*"
asyncio = "*"
fastapi = "*"
uvicorn = {extras = ["standard"], version = "*"}
sse-starlette = "*"
[dev-packages]
black = "==20.8b1"
pytest = "*"
pytest-cov = "*"
mypy = "latest"
pytest-trio = "*"
trio-typing = "*"