From 8fb07a6c9e1c2c1bd1a78677c6c2afa1f7dc9b7d Mon Sep 17 00:00:00 2001 From: long2ice Date: Sat, 13 Mar 2021 16:40:27 +0800 Subject: [PATCH] update deps --- Makefile | 2 +- poetry.lock | 3 ++- pyproject.toml | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9fbdebd..e5124f2 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ up: @poetry update deps: - @poetry install -E asyncpg -E asyncmy + @poetry install -E asyncpg -E asyncmy -E aiomysql style: deps isort -src $(checkfiles) diff --git a/poetry.lock b/poetry.lock index 3856146..0f90b31 100644 --- a/poetry.lock +++ b/poetry.lock @@ -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"] [extras] +aiomysql = ["aiomysql"] asyncmy = [] asyncpg = ["asyncpg"] [metadata] lock-version = "1.1" python-versions = "^3.7" -content-hash = "51da4f34825ed51379b2aba39e73949f43d1041a3093bf24d7350386e9a4793f" +content-hash = "fdf0c27a94c558e62d13cca6de14ea3a1836468bb0246ad101e4014eaa09b3b5" [metadata.files] aiomysql = [ diff --git a/pyproject.toml b/pyproject.toml index 43baf6a..fa72b3a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,6 +37,7 @@ pytest-mock = "*" [tool.poetry.extras] asyncmy = ["asyncmy"] asyncpg = ["asyncpg"] +aiomysql = ["aiomysql"] [build-system] requires = ["poetry>=0.12"]