bump and fix project deps

This commit is contained in:
grillazz
2025-11-13 12:15:17 +01:00
parent 6db1436aa8
commit adf87bc582
3 changed files with 729 additions and 857 deletions

View File

@@ -1,15 +1,15 @@
[project]
name = "fastapi-sqlalchemy-asyncpg"
version = "0.21.0"
version = "0.22.0"
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."
readme = "README.md"
requires-python = ">=3.13"
requires-python = ">=3.14"
dependencies = [
"fastapi[all]>=0.116.2",
"pydantic[email]>=2.12.0a1",
"pydantic-settings>=2.10.1",
"sqlalchemy>=2.0.43",
"uvicorn[standard]>=0.36.0",
"sqlalchemy==2.0.44",
"uvicorn==0.38.0",
"asyncpg>=0.30.0",
"alembic>=1.16.5",
"httpx>=0.28.1",
@@ -21,7 +21,7 @@ dependencies = [
"pyjwt>=2.10.1",
"redis>=6.4.0",
"bcrypt>=4.3.0",
"polars[pyarrow]>=1.33.1",
"polars==1.35.2",
"python-multipart>=0.0.20",
"fastexcel>=0.15.1",
"inline-snapshot>=0.29.0",
@@ -29,7 +29,7 @@ dependencies = [
"polyfactory>=2.22.2",
"granian>=2.5.4",
"apscheduler[redis,sqlalchemy]>=4.0.0a6",
"rotoger>=0.1.1",
"rotoger==0.1.1",
]
[tool.uv]