Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ri-gilfanov committed Sep 16, 2024
1 parent 553a0a2 commit 5ec449a
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
20 changes: 10 additions & 10 deletions poetry.lock

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

14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,20 +45,20 @@ classifiers = [
python = "^3.8"
aiohttp = "^3.10.5"
aiohttp-things = "^1.0.0"
sqlalchemy-things = "^1.0.0"
aiomysql = { version = ">=0.2.0", optional = true }
aiosqlite = { version = ">=0.20.0", optional = true }
asyncpg = { version = ">=0.29.0", optional = true }
sqlalchemy-things = "^1.0.1"
aiomysql = { version = ">=0.2.0,<1", optional = true }
aiosqlite = { version = ">=0.20.0,<1", optional = true }
asyncpg = { version = ">=0.29.0,<1", optional = true }

[tool.poetry.extras]
mysql = ["aiomysql"]
postgresql = ["asyncpg"]
sqlite = ["aiosqlite"]

[tool.poetry.dev-dependencies]
aiomysql = ">=0.2.0"
aiosqlite = ">=0.20.0"
asyncpg = ">=0.29.0"
aiomysql = ">=0.2.0,<1"
aiosqlite = ">=0.20.0,<1"
asyncpg = ">=0.29.0,<1"
ruff = ">=0.6.5"
mypy = ">=1.11.2"
pytest = ">=8.3.3"
Expand Down

0 comments on commit 5ec449a

Please sign in to comment.