From dda628e8669887367b1ab24886de17dd3289614e Mon Sep 17 00:00:00 2001 From: Dima Gerasimov Date: Fri, 11 Dec 2020 05:52:29 +0000 Subject: [PATCH] CI: fix extras_require after dependency resolver update https://github.com/pypa/pip/issues/8940 --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index e0872a7..d71c142 100644 --- a/tox.ini +++ b/tox.ini @@ -45,7 +45,7 @@ commands = ./demo.py [testenv:mypy-modules] whitelist_externals = bash commands = - pip install -e .[testing] .[optional] + pip install -e .[testing,optional] pip install orgparse pip install git+https://github.com/karlicoss/endoexport pip install git+https://github.com/karlicoss/ghexport @@ -86,5 +86,5 @@ commands = [testenv:mypy] skip_install = true commands = - pip install -e .[testing] .[optional] orgparse + pip install -e .[testing,optional] orgparse ./lint