chore: update deps

This commit is contained in:
long2ice 2023-05-12 15:27:50 +08:00
parent f0bc3126e9
commit b8b6df0b65
3 changed files with 885 additions and 649 deletions

View File

@ -20,7 +20,7 @@ style: deps
check: deps
@black --check $(black_opts) $(checkfiles) || (echo "Please run 'make style' to auto-fix style issues" && false)
@pflake8 $(checkfiles)
@ruff $(checkfiles)
test: deps
$(py_warn) TEST_DB=sqlite://:memory: py.test

1523
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -19,13 +19,13 @@ python = "^3.7"
tortoise-orm = "*"
click = "*"
asyncpg = { version = "*", optional = true }
asyncmy = { version = "*", optional = true }
asyncmy = { version = "^0.2.8rc1", optional = true, allow-prereleases = true }
pydantic = "*"
dictdiffer = "*"
tomlkit = "*"
[tool.poetry.dev-dependencies]
flake8 = "*"
ruff = "*"
isort = "*"
black = "*"
pytest = "*"
@ -34,7 +34,6 @@ pytest-asyncio = "*"
bandit = "*"
pytest-mock = "*"
cryptography = "*"
pyproject-flake8 = "*"
[tool.poetry.extras]
asyncmy = ["asyncmy"]
@ -63,5 +62,5 @@ asyncio_mode = 'auto'
pretty = true
ignore_missing_imports = true
[tool.flake8]
ignore = 'E501,W503,E203'
[tool.ruff]
ignore = ['E501']