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 check: deps
@black --check $(black_opts) $(checkfiles) || (echo "Please run 'make style' to auto-fix style issues" && false) @black --check $(black_opts) $(checkfiles) || (echo "Please run 'make style' to auto-fix style issues" && false)
@pflake8 $(checkfiles) @ruff $(checkfiles)
test: deps test: deps
$(py_warn) TEST_DB=sqlite://:memory: py.test $(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 = "*" tortoise-orm = "*"
click = "*" click = "*"
asyncpg = { version = "*", optional = true } asyncpg = { version = "*", optional = true }
asyncmy = { version = "*", optional = true } asyncmy = { version = "^0.2.8rc1", optional = true, allow-prereleases = true }
pydantic = "*" pydantic = "*"
dictdiffer = "*" dictdiffer = "*"
tomlkit = "*" tomlkit = "*"
[tool.poetry.dev-dependencies] [tool.poetry.dev-dependencies]
flake8 = "*" ruff = "*"
isort = "*" isort = "*"
black = "*" black = "*"
pytest = "*" pytest = "*"
@ -34,7 +34,6 @@ pytest-asyncio = "*"
bandit = "*" bandit = "*"
pytest-mock = "*" pytest-mock = "*"
cryptography = "*" cryptography = "*"
pyproject-flake8 = "*"
[tool.poetry.extras] [tool.poetry.extras]
asyncmy = ["asyncmy"] asyncmy = ["asyncmy"]
@ -63,5 +62,5 @@ asyncio_mode = 'auto'
pretty = true pretty = true
ignore_missing_imports = true ignore_missing_imports = true
[tool.flake8] [tool.ruff]
ignore = 'E501,W503,E203' ignore = ['E501']