Skip to content

Commit 1527b76

Browse files
committed
bump project deps
1 parent 41a8688 commit 1527b76

File tree

3 files changed

+149
-127
lines changed

3 files changed

+149
-127
lines changed

app/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ async def lifespan(_app: FastAPI):
4545
await _app.postgres_pool.close()
4646

4747

48-
app = FastAPI(title="Stuff And Nonsense API", version="0.17", lifespan=lifespan)
48+
app = FastAPI(title="Stuff And Nonsense API", version="0.18.0", lifespan=lifespan)
4949

5050
app.include_router(stuff_router)
5151
app.include_router(nonsense_router)

pyproject.toml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
11
[project]
22
name = "fastapi-sqlalchemy-asyncpg"
3-
version = "0.1.0"
3+
version = "0.18.0"
44
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."
55
readme = "README.md"
66
requires-python = ">=3.13"
77
dependencies = [
8-
"fastapi[all]>=0.115.11",
9-
"pydantic[email]>=2.10.6",
10-
"pydantic-settings>=2.8.1",
11-
"sqlalchemy>=2.0.38",
12-
"uvicorn[standard]>=0.34.0",
8+
"fastapi[all]>=0.115.12",
9+
"pydantic[email]>=2.11.4",
10+
"pydantic-settings>=2.9.1",
11+
"sqlalchemy>=2.0.40",
12+
"uvicorn[standard]>=0.34.2",
1313
"asyncpg>=0.30.0",
14-
"alembic>=1.15.1",
14+
"alembic>=1.15.2",
1515
"httpx>=0.28.1",
1616
"pytest>=8.3.5",
17-
"pytest-cov>=6.0.0",
17+
"pytest-cov>=6.1.1",
1818
"uvloop>=0.21.0",
1919
"httptools>=0.6.4",
20-
"rich>=13.9.4",
20+
"rich>=14.0.0",
2121
"pyjwt>=2.10.1",
22-
"redis>=5.2.1",
22+
"redis>=6.0.0",
2323
"bcrypt>=4.3.0",
24-
"polars>=1.24.0",
24+
"polars>=1.29.0",
2525
"python-multipart>=0.0.20",
26-
"fastexcel>=0.13.0",
27-
"inline-snapshot>=0.17.0",
28-
"dirty-equals>=0.8.0",
29-
"polyfactory>=2.18.1",
30-
"granian>=1.7.0",
31-
"apscheduler[redis,sqlalchemy]>=4.0.0a5",
26+
"fastexcel>=0.14.0",
27+
"inline-snapshot>=0.23.0",
28+
"dirty-equals>=0.9.0",
29+
"polyfactory>=2.21.0",
30+
"granian>=2.2.5",
31+
"apscheduler[redis,sqlalchemy]>=4.0.0a6",
3232
]
3333

3434
[tool.uv]

0 commit comments

Comments
 (0)