You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pyproject.toml
+26-15Lines changed: 26 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -1,45 +1,45 @@
1
1
[project]
2
2
name = "fastapi-sqlalchemy-asyncpg"
3
-
version = "0.18.0"
3
+
version = "0.19.0"
4
4
description = "A modern FastAPI application with SQLAlchemy 2.0 and AsyncPG for high-performance async database operations. Features include JWT authentication with Redis token storage, password hashing, connection pooling, data processing with Polars, Rich logging, task scheduling with APScheduler, and Shakespeare datasets integration."
5
5
readme = "README.md"
6
6
requires-python = ">=3.13"
7
7
dependencies = [
8
8
"fastapi[all]>=0.115.12",
9
-
"pydantic[email]>=2.11.4",
9
+
"pydantic[email]>=2.11.5",
10
10
"pydantic-settings>=2.9.1",
11
-
"sqlalchemy>=2.0.40",
12
-
"uvicorn[standard]>=0.34.2",
11
+
"sqlalchemy>=2.0.41",
12
+
"uvicorn[standard]>=0.34.3",
13
13
"asyncpg>=0.30.0",
14
-
"alembic>=1.15.2",
14
+
"alembic>=1.16.1",
15
15
"httpx>=0.28.1",
16
-
"pytest>=8.3.5",
16
+
"pytest>=8.4.0",
17
17
"pytest-cov>=6.1.1",
18
18
"uvloop>=0.21.0",
19
19
"httptools>=0.6.4",
20
20
"rich>=14.0.0",
21
21
"pyjwt>=2.10.1",
22
-
"redis>=6.0.0",
22
+
"redis>=6.2.0",
23
23
"bcrypt>=4.3.0",
24
-
"polars>=1.29.0",
24
+
"polars>=1.30.0",
25
25
"python-multipart>=0.0.20",
26
26
"fastexcel>=0.14.0",
27
-
"inline-snapshot>=0.23.0",
27
+
"inline-snapshot>=0.23.2",
28
28
"dirty-equals>=0.9.0",
29
29
"polyfactory>=2.21.0",
30
-
"granian>=2.2.5",
30
+
"granian>=2.3.2",
31
31
"apscheduler[redis,sqlalchemy]>=4.0.0a6",
32
32
]
33
33
34
34
[tool.uv]
35
35
dev-dependencies = [
36
-
"ruff>=0.11.8",
36
+
"ruff>=0.11.13",
37
37
"devtools[pygments]>=0.12.2",
38
-
"pyupgrade>=3.19.1",
39
-
"ipython>=9.2.0",
38
+
"pyupgrade>=3.20.0",
39
+
"ipython>=9.3.0",
40
40
"sqlacodegen>=3.0.0",
41
41
"tryceratops>=2.4.1",
42
-
"locust>=2.36.2"
42
+
"locust>=2.37.9"
43
43
44
44
]
45
45
@@ -72,4 +72,15 @@ ignore = [
72
72
73
73
[tool.ruff.lint.pyupgrade]
74
74
# Preserve types, even if a file imports `from __future__ import annotations`.
75
-
keep-runtime-typing = true
75
+
keep-runtime-typing = true
76
+
77
+
[tool.inline-snapshot]
78
+
hash-length=15
79
+
default-flags=["report"]
80
+
default-flags-tui=["create", "review"]
81
+
show-updates=false
82
+
format-command="ruff format --stdin-filename {filename}"
0 commit comments