Update dependencies (#1197)

* Update dependencies

* Accept databases 0.8.0 or higher

* Keep what was optional optional, be more inclusive towards patch versions upwards
This commit is contained in:
TouwaStar
2023-11-24 11:40:59 +01:00
committed by GitHub
parent c5909ff647
commit 11b3e85273
2 changed files with 381 additions and 350 deletions

719
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -42,19 +42,19 @@ classifiers = [
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.7.0" python = "^3.7.0"
databases = ">=0.3.2,!=0.5.0,!=0.5.1,!=0.5.2,!=0.5.3,<0.6.3" databases = "^0.8.0"
pydantic = ">=1.6.1,!=1.7,!=1.7.1,!=1.7.2,!=1.7.3,!=1.8,!=1.8.1,<1.10.12" pydantic = ">=1.6.1,!=1.7,!=1.7.1,!=1.7.2,!=1.7.3,!=1.8,!=1.8.1,<1.10.12"
SQLAlchemy = ">=1.3.18,<1.4.42" SQLAlchemy = "^1.4.48"
cryptography = { version = ">=35,<42", optional = true } cryptography = { version = "^41.0.3", optional = true }
# Async database drivers # Async database drivers
aiosqlite = { version = ">=0.17,<0.20", optional = true } aiosqlite = { version = "^0.19.0", optional = true }
aiomysql = { version = ">=0.1.0", optional = true } aiomysql = { version = ">=0.1.0", optional = true }
aiopg = { version = "^1.3.3", optional = true } aiopg = { version = "^1.3.3", optional = true }
asyncpg = { version = ">=0.24,<0.29", optional = true } asyncpg = { version = "^0.28.0", optional = true }
# Sync database drivers for standard tooling around setup/teardown/migrations. # Sync database drivers for standard tooling around setup/teardown/migrations.
psycopg2-binary = { version = "^2.9.1", optional = true } psycopg2-binary = { version = "^2.9.1", optional = true }
mysqlclient = { version = "^2.1.0", optional = true } mysqlclient = { version = "^2.1.0", optional = true }
PyMySQL = { version = ">=0.9", optional = true } PyMySQL = { version = "^1.1.0", optional = true }
[tool.poetry.dependencies.orjson] [tool.poetry.dependencies.orjson]