update deps

This commit is contained in:
long2ice 2021-03-13 16:40:27 +08:00
parent 54da8b22af
commit 8fb07a6c9e
3 changed files with 4 additions and 2 deletions

View File

@ -12,7 +12,7 @@ up:
@poetry update @poetry update
deps: deps:
@poetry install -E asyncpg -E asyncmy @poetry install -E asyncpg -E asyncmy -E aiomysql
style: deps style: deps
isort -src $(checkfiles) isort -src $(checkfiles)

3
poetry.lock generated
View File

@ -561,13 +561,14 @@ docs = ["sphinx", "jaraco.packaging (>=8.2)", "rst.linker (>=1.9)"]
testing = ["pytest (>=4.6)", "pytest-checkdocs (>=1.2.3)", "pytest-flake8", "pytest-cov", "pytest-enabler", "jaraco.itertools", "func-timeout", "pytest-black (>=0.3.7)", "pytest-mypy"] testing = ["pytest (>=4.6)", "pytest-checkdocs (>=1.2.3)", "pytest-flake8", "pytest-cov", "pytest-enabler", "jaraco.itertools", "func-timeout", "pytest-black (>=0.3.7)", "pytest-mypy"]
[extras] [extras]
aiomysql = ["aiomysql"]
asyncmy = [] asyncmy = []
asyncpg = ["asyncpg"] asyncpg = ["asyncpg"]
[metadata] [metadata]
lock-version = "1.1" lock-version = "1.1"
python-versions = "^3.7" python-versions = "^3.7"
content-hash = "51da4f34825ed51379b2aba39e73949f43d1041a3093bf24d7350386e9a4793f" content-hash = "fdf0c27a94c558e62d13cca6de14ea3a1836468bb0246ad101e4014eaa09b3b5"
[metadata.files] [metadata.files]
aiomysql = [ aiomysql = [

View File

@ -37,6 +37,7 @@ pytest-mock = "*"
[tool.poetry.extras] [tool.poetry.extras]
asyncmy = ["asyncmy"] asyncmy = ["asyncmy"]
asyncpg = ["asyncpg"] asyncpg = ["asyncpg"]
aiomysql = ["aiomysql"]
[build-system] [build-system]
requires = ["poetry>=0.12"] requires = ["poetry>=0.12"]