Skip to content

Commit d99abe1

Browse files
authored
Do not overlap python_version requirements
This was noticed while trying to install the package using poetry and encountering an issue [like this](python-poetry/poetry#1238)
1 parent 28ad710 commit d99abe1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def read(fname):
3434
'pytest>=2.8,<4.7; python_version<"3.5"',
3535
'pytest>=2.8; python_version>="3.5"',
3636
'mypy>=0.570,<0.700; python_version<"3.5"',
37-
'mypy>=0.570; python_version>="3.5"',
37+
'mypy>=0.570; python_version>="3.5" and python_version<"3.8.0b1"',
3838
'mypy>=0.701; python_version>="3.8.0b1"',
3939
],
4040
classifiers=[

0 commit comments

Comments
 (0)