Skip to content

Commit

Permalink
build(deps): update dependency sqlalchemy to v2.0.27 (#174)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Feb 27, 2024
1 parent c95ed1b commit 2431c11
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 57 deletions.
2 changes: 1 addition & 1 deletion chii/curd/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@


async def count(db: AsyncSession, *where) -> int:
query = sa.select(sa.func.count(1)).where(*where)
query = sa.select(sa.func.count(1)).where(*where) # type: ignore
return int(await db.scalar(query))
110 changes: 55 additions & 55 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ authors = []
python = "^3.10"
# dependencies
loguru = "==0.7.2"
SQLAlchemy = { extras = ["mypy", "asyncio"], version = "2.0.23" }
SQLAlchemy = { extras = ["mypy", "asyncio"], version = "2.0.27" }
grpcio = "1.60.1"
grpcio-tools = "1.60.0"
libphpserialize = "0.0.8"
Expand Down

0 comments on commit 2431c11

Please sign in to comment.