fastapi-sqla 3.5.0__py3-none-any.whl → 3.5.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- fastapi_sqla/_pytest_plugin.py +2 -2
- {fastapi_sqla-3.5.0.dist-info → fastapi_sqla-3.5.2.dist-info}/METADATA +3 -3
- {fastapi_sqla-3.5.0.dist-info → fastapi_sqla-3.5.2.dist-info}/RECORD +6 -6
- {fastapi_sqla-3.5.0.dist-info → fastapi_sqla-3.5.2.dist-info}/LICENSE +0 -0
- {fastapi_sqla-3.5.0.dist-info → fastapi_sqla-3.5.2.dist-info}/WHEEL +0 -0
- {fastapi_sqla-3.5.0.dist-info → fastapi_sqla-3.5.2.dist-info}/entry_points.txt +0 -0
fastapi_sqla/_pytest_plugin.py
CHANGED
|
@@ -102,7 +102,7 @@ def sqla_modules():
|
|
|
102
102
|
|
|
103
103
|
@fixture
|
|
104
104
|
def sqla_reflection(sqla_modules, sqla_connection: Connection):
|
|
105
|
-
import fastapi_sqla
|
|
105
|
+
import fastapi_sqla # noqa: PLC0415
|
|
106
106
|
|
|
107
107
|
fastapi_sqla.Base.metadata.bind = sqla_connection # type: ignore
|
|
108
108
|
fastapi_sqla.Base.prepare(sqla_connection.engine)
|
|
@@ -188,7 +188,7 @@ if asyncio_support:
|
|
|
188
188
|
async def async_sqla_reflection(
|
|
189
189
|
sqla_modules, async_sqla_connection: AsyncConnection
|
|
190
190
|
):
|
|
191
|
-
from fastapi_sqla import Base
|
|
191
|
+
from fastapi_sqla import Base # noqa: PLC0415
|
|
192
192
|
|
|
193
193
|
await async_sqla_connection.run_sync(lambda conn: Base.prepare(conn.engine))
|
|
194
194
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: fastapi-sqla
|
|
3
|
-
Version: 3.5.
|
|
3
|
+
Version: 3.5.2
|
|
4
4
|
Summary: SQLAlchemy extension for FastAPI with support for pagination, asyncio, SQLModel, and pytest, ready for production.
|
|
5
5
|
Home-page: https://github.com/dialoguemd/fastapi-sqla
|
|
6
6
|
License: MIT
|
|
@@ -43,11 +43,11 @@ Requires-Dist: alembic (>=1.4.3,<2) ; extra == "pytest-plugin"
|
|
|
43
43
|
Requires-Dist: asyncpg (>=0.28.0,<0.31.0) ; extra == "asyncpg"
|
|
44
44
|
Requires-Dist: boto3 (>=1.24.74,<2) ; extra == "aws-rds-iam"
|
|
45
45
|
Requires-Dist: deprecated (>=1.2,<2)
|
|
46
|
-
Requires-Dist: fastapi (>=0.95.1,<0.
|
|
46
|
+
Requires-Dist: fastapi (>=0.95.1,<0.117)
|
|
47
47
|
Requires-Dist: psycopg2 (>=2.8.6,<3) ; extra == "psycopg2"
|
|
48
48
|
Requires-Dist: pydantic (>=1,<3)
|
|
49
49
|
Requires-Dist: sqlalchemy (>=1.3,<3)
|
|
50
|
-
Requires-Dist: sqlmodel (>=0.0.14,<0.0.
|
|
50
|
+
Requires-Dist: sqlmodel (>=0.0.14,<0.0.26) ; extra == "sqlmodel"
|
|
51
51
|
Requires-Dist: structlog (>=20,<26)
|
|
52
52
|
Project-URL: Repository, https://github.com/dialoguemd/fastapi-sqla
|
|
53
53
|
Description-Content-Type: text/markdown
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
fastapi_sqla/__init__.py,sha256=RRkwo9xZzidQ-k3BRXfqT0jtWm8d08w94XuOLteFCdU,1221
|
|
2
|
-
fastapi_sqla/_pytest_plugin.py,sha256=
|
|
2
|
+
fastapi_sqla/_pytest_plugin.py,sha256=g-rzK0hYFzwNbI1idXLsV-hDRkkzEtVo2x7jb2JBGHw,6210
|
|
3
3
|
fastapi_sqla/async_pagination.py,sha256=3DHGUjvrpkbWMIc_BEX4GvM-_PTcn62K9z48ucTJlH0,3164
|
|
4
4
|
fastapi_sqla/async_sqla.py,sha256=ogctvsj3TFL6xTqhB57DLlcANrocjy1LWUEb799w4AI,7498
|
|
5
5
|
fastapi_sqla/aws_aurora_support.py,sha256=4dxLKOqDccgLwFqlz81L6f4HzrOXMZkY7Zuf4t_310U,838
|
|
@@ -9,8 +9,8 @@ fastapi_sqla/models.py,sha256=-B1xwINpTc9rEQd3KYHEC1s5s7jdVQkJ6Gy6xpmT13c,1108
|
|
|
9
9
|
fastapi_sqla/pagination.py,sha256=1gfIGcmt1OFspbRgtJ8AZOZdFd14DGRc4FkDgyh5bJ8,4517
|
|
10
10
|
fastapi_sqla/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
11
|
fastapi_sqla/sqla.py,sha256=RLBDuBjs2QvkZuVdgoeEBPnDokRQlmdPeHtdBji8WhE,7609
|
|
12
|
-
fastapi_sqla-3.5.
|
|
13
|
-
fastapi_sqla-3.5.
|
|
14
|
-
fastapi_sqla-3.5.
|
|
15
|
-
fastapi_sqla-3.5.
|
|
16
|
-
fastapi_sqla-3.5.
|
|
12
|
+
fastapi_sqla-3.5.2.dist-info/LICENSE,sha256=8G0-nWLqi3xRYRrtRlTE8n1mkYJcnCRoZGUhv6ZE29c,1064
|
|
13
|
+
fastapi_sqla-3.5.2.dist-info/METADATA,sha256=ER9HgCl780xX9EDNnHHwHZTmQ6gZYa5pU3HjYDU9qUQ,21031
|
|
14
|
+
fastapi_sqla-3.5.2.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
15
|
+
fastapi_sqla-3.5.2.dist-info/entry_points.txt,sha256=haa0EueKcRo8-AlJTpHBMn08wMBiULNGA53nkvaDWj0,53
|
|
16
|
+
fastapi_sqla-3.5.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|