We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78db944 commit 5bc2356Copy full SHA for 5bc2356
fastapi_async_sqlalchemy/__init__.py
@@ -2,4 +2,4 @@
2
3
__all__ = ["db", "SQLAlchemyMiddleware"]
4
5
-__version__ = "0.3.1.dev5"
+__version__ = "0.3.2"
fastapi_async_sqlalchemy/exceptions.py
@@ -7,7 +7,7 @@ def __init__(self):
7
or you need to manually create a session context by using a `db` instance as
8
a context manager e.g.:
9
10
- with db():
+ async with db():
11
await db.session.execute(foo.select()).fetchall()
12
"""
13
requirements.txt
@@ -27,7 +27,7 @@ PyYAML>=5.4
27
regex==2020.2.20
28
requests==2.22.0
29
six==1.12.0
30
-SQLAlchemy==1.4.9
+SQLAlchemy==1.4.11
31
asyncpg==0.22.0
32
aiosqlite==0.17.0
33
sqlparse==0.4.1
0 commit comments