From 169dad91b8316a7138bec2f7b51db80cab0aadc4 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Sat, 23 May 2020 22:40:39 -0400 Subject: [PATCH] Move workaround for python/mypy#8627 to tox.ini, as adding it to setup.cfg prevents releases to PyPI. Fixes jaraco/skeleton#19. --- setup.cfg | 2 -- tox.ini | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 0cf95493..e2dcebb1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -29,8 +29,6 @@ testing = pytest-black >= 0.3.7 pytest-cov pytest-mypy - # workaround for python/mypy#8627 - mypy@git+https://github.com/python/mypy # local diff --git a/tox.ini b/tox.ini index ba5857a3..97cc4261 100644 --- a/tox.ini +++ b/tox.ini @@ -7,6 +7,8 @@ tox_pip_extensions_ext_venv_update = true [testenv] deps = + # workaround for python/mypy#8627 + mypy@git+https://github.com/python/mypy commands = pytest {posargs} usedevelop = True