mirror of
https://github.com/grillazz/fastapi-sqlalchemy-asyncpg.git
synced 2025-11-30 13:20:40 +03:00
bump to python 3.14 and the latest version of project deps
This commit is contained in:
@@ -47,7 +47,7 @@ async def lifespan(app: FastAPI):
|
|||||||
def create_app() -> FastAPI:
|
def create_app() -> FastAPI:
|
||||||
app = FastAPI(
|
app = FastAPI(
|
||||||
title="Stuff And Nonsense API",
|
title="Stuff And Nonsense API",
|
||||||
version="0.20.0",
|
version="1.22.0",
|
||||||
lifespan=lifespan,
|
lifespan=lifespan,
|
||||||
)
|
)
|
||||||
app.include_router(stuff_router)
|
app.include_router(stuff_router)
|
||||||
|
|||||||
@@ -1,47 +1,44 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "fastapi-sqlalchemy-asyncpg"
|
name = "fastapi-sqlalchemy-asyncpg"
|
||||||
version = "0.21.0"
|
version = "1.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."
|
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"
|
readme = "README.md"
|
||||||
requires-python = ">=3.13"
|
requires-python = "==3.14.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"fastapi[all]>=0.116.2",
|
"fastapi[all]==0.121.1",
|
||||||
"pydantic[email]>=2.12.0a1",
|
"pydantic[email]==2.12.4",
|
||||||
"pydantic-settings>=2.10.1",
|
"pydantic-settings==2.12.0",
|
||||||
"sqlalchemy>=2.0.43",
|
"sqlalchemy==2.0.44",
|
||||||
"uvicorn[standard]>=0.36.0",
|
"uvicorn[standard]==0.38.0",
|
||||||
"asyncpg>=0.30.0",
|
"asyncpg==0.30.0",
|
||||||
"alembic>=1.16.5",
|
"alembic==1.17.2",
|
||||||
"httpx>=0.28.1",
|
"httpx==0.28.1",
|
||||||
"pytest>=8.4.2",
|
"pytest==9.0.1",
|
||||||
"pytest-cov>=7.0.0",
|
"pytest-cov==7.0.0",
|
||||||
"uvloop>=0.21.0",
|
"uvloop==0.22.1",
|
||||||
"httptools>=0.6.4",
|
"httptools==0.7.1",
|
||||||
"rich>=14.1.0",
|
"rich==14.2.0",
|
||||||
"pyjwt>=2.10.1",
|
"pyjwt==2.10.1",
|
||||||
"redis>=6.4.0",
|
"redis==7.0.1",
|
||||||
"bcrypt>=4.3.0",
|
"bcrypt==5.0.0",
|
||||||
"polars[pyarrow]>=1.33.1",
|
"polars[pyarrow]==1.35.2",
|
||||||
"python-multipart>=0.0.20",
|
"python-multipart==0.0.20",
|
||||||
"fastexcel>=0.15.1",
|
"fastexcel==0.16.0",
|
||||||
"inline-snapshot>=0.29.0",
|
"inline-snapshot==0.31.1",
|
||||||
"dirty-equals>=0.10.0",
|
"dirty-equals==0.10.0",
|
||||||
"polyfactory>=2.22.2",
|
"polyfactory==3.0.0",
|
||||||
"granian>=2.5.4",
|
"granian==2.5.7",
|
||||||
"apscheduler[redis,sqlalchemy]>=4.0.0a6",
|
"apscheduler[redis,sqlalchemy]>=4.0.0a6",
|
||||||
"rotoger>=0.1.1",
|
"rotoger==0.2.1",
|
||||||
]
|
]
|
||||||
|
|
||||||
[tool.uv]
|
[tool.uv]
|
||||||
dev-dependencies = [
|
dev-dependencies = [
|
||||||
"ruff>=0.13.1",
|
"ruff>=0.14.5",
|
||||||
"devtools[pygments]>=0.12.2",
|
"devtools[pygments]>=0.12.2",
|
||||||
"pyupgrade>=3.20.0",
|
"pyupgrade==3.21.1",
|
||||||
"ipython>=9.5.0",
|
"ipython==9.7.0",
|
||||||
"sqlacodegen<=3.1.1",
|
"tryceratops==2.4.1",
|
||||||
"tryceratops>=2.4.1",
|
|
||||||
"locust>=2.40.5"
|
|
||||||
|
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
@@ -50,7 +47,7 @@ strict = true
|
|||||||
exclude = ["venv", ".venv", "alembic"]
|
exclude = ["venv", ".venv", "alembic"]
|
||||||
|
|
||||||
[tool.ruff]
|
[tool.ruff]
|
||||||
target-version = "py313"
|
target-version = "py314"
|
||||||
exclude = ["alembic"]
|
exclude = ["alembic"]
|
||||||
|
|
||||||
[tool.ruff.lint]
|
[tool.ruff.lint]
|
||||||
|
|||||||
Reference in New Issue
Block a user