chore: update deps
This commit is contained in:
parent
f0bc3126e9
commit
b8b6df0b65
2
Makefile
2
Makefile
@ -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
1523
poetry.lock
generated
File diff suppressed because it is too large
Load Diff
@ -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']
|
||||||
|
Loading…
x
Reference in New Issue
Block a user