diff options
author | 2023-09-04 20:29:38 +0100 | |
---|---|---|
committer | 2023-09-04 20:29:38 +0100 | |
commit | 51a47e95fd885185c1891aefcfc87dc0236c6934 (patch) | |
tree | bebc74b45cd0448128e1ace578d1f977e7fb2cbb | |
parent | Satisfy the linter (diff) |
Consistent version specifying for new dependencies
-rw-r--r-- | poetry.lock | 2 | ||||
-rw-r--r-- | pyproject.toml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/poetry.lock b/poetry.lock index f95d0a9..38bac99 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1469,4 +1469,4 @@ multidict = ">=4.0" [metadata] lock-version = "2.0" python-versions = "3.11.*" -content-hash = "ee89aec1e47c216c275c6152b0b18a164d730d1e0b7a6bf9fec2536943a61f87" +content-hash = "2f8f21b6051b017dc39a9376d4728355e786ab5a60ef9efcde8bff6b6e5734ba" diff --git a/pyproject.toml b/pyproject.toml index 2f566c8..6b68be7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,10 +14,10 @@ pydis-core = "10.2.0" alembic = "1.12.0" coloredlogs = "15.0.1" deepmerge = "1.1.0" -sqlalchemy = { extras = ["asyncio"], version = "^2.0.20" } +sqlalchemy = { extras = ["asyncio"], version = "2.0.20" } python-dotenv = "1.0.0" toml = "0.10.2" -asyncpg = "^0.28.0" +asyncpg = "0.28.0" [tool.poetry.dev-dependencies] pre-commit = "3.4.0" |