From d99abe137c4f1e98a1d548576409924bdb9ef8df Mon Sep 17 00:00:00 2001 From: Oliver Bristow Date: Sat, 7 Sep 2019 14:03:30 +0100 Subject: [PATCH] Do not overlap python_version requirements This was noticed while trying to install the package using poetry and encountering an issue [like this](https://github.com/sdispater/poetry/issues/1238) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c64d62a..a7eb66c 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ def read(fname): 'pytest>=2.8,<4.7; python_version<"3.5"', 'pytest>=2.8; python_version>="3.5"', 'mypy>=0.570,<0.700; python_version<"3.5"', - 'mypy>=0.570; python_version>="3.5"', + 'mypy>=0.570; python_version>="3.5" and python_version<"3.8.0b1"', 'mypy>=0.701; python_version>="3.8.0b1"', ], classifiers=[