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,90 +0,0 @@
[tool.poetry]
name = "fastapi-sqlalchemy-asyncpg"
version = "0.0.17"
description = ""
authors = ["Jakub Miazek <the@grillazz.com>"]
packages = []
license = "MIT"
package-mode = false
[tool.poetry.dependencies]
python = "^3.13"
fastapi = {version = "^0.115.6", extras = ["all"]}
pydantic = {version = "^2.10.3", extras = ["email"]}
pydantic-settings = "^2.7.0"
sqlalchemy = "^2.0.36"
uvicorn = { version = "^0.34.0", extras = ["standard"]}
asyncpg = "^0.30.0"
alembic = "^1.14.0"
httpx = "^0.28.1"
pytest = "^8.3.4"
pytest-cov = "^6.0.0"
uvloop = "^0.21.0"
httptools = "^0.6.4"
rich = "^13.9.4"
pyjwt = {version = "^2.10.1", extras = ["cryptography"]}
redis = "^5.2.1"
bcrypt = "^4.2.1"
polars = "^1.17.1"
python-multipart = "^0.0.20"
fastexcel = "^0.12.0"
fastapi-cache2 = "^0.2.1"
inline-snapshot = "^0.17.0"
dirty-equals = "^0.8.0"
polyfactory = "^2.18.1"
granian = "^1.7.0"
apscheduler = {version = "^4.0.0a5", extras = ["redis,sqlalchemy"]}
pendulum = {git = "https://github.com/sdispater/pendulum.git", rev="develop"}
[tool.poetry.group.dev.dependencies]
devtools = { extras = ["pygments"], version = "^0.12.2" }
safety = "*"
pyupgrade = "*"
ipython = "^8.26.0"
ruff = "^0.6.1"
sqlacodegen = "^3.0.0rc5"
tryceratops = "^2.3.3"
locust = "^2.31.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
indent-width = 4
lint.select = ["E", "F", "UP", "N", "C", "B"]
lint.ignore = ["E501"]
# Exclude a variety of commonly ignored directories.
exclude = ["alembic",]
# Assume Python 3.13
target-version = "py313"
[tool.ruff.lint.flake8-quotes]
docstring-quotes = "double"
[tool.ruff.lint.flake8-bugbear]
extend-immutable-calls = ["fastapi.Depends",]
[tool.pytest.ini_options]
addopts = "-v --doctest-modules --doctest-glob=*.md --ignore=alembic"
asyncio_mode = "strict"
env_files = [".env"]
[tool.tryceratops]
exclude = ["alembic",]
[tool.ruff.format]
# Like Black, use double quotes for strings.
quote-style = "double"
# Like Black, indent with spaces, rather than tabs.
indent-style = "space"
# Like Black, respect magic trailing commas.
skip-magic-trailing-comma = false
# Like Black, automatically detect the appropriate line ending.
line-ending = "auto"

View File

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

1484
uv.lock generated

File diff suppressed because it is too large Load Diff