Skip to content

Commit f19d8ec

Browse files
authored
Merge pull request #61 from dmtucker/mypy
Add support for mypy-0.500 to mypy-0.570
2 parents 38ca579 + d01b6f8 commit f19d8ec

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ def read(fname):
3333
install_requires=[
3434
'pytest>=2.8,<4.7; python_version<"3.5"',
3535
'pytest>=2.8; python_version>="3.5"',
36-
'mypy>=0.570,<0.700; python_version<"3.5"',
37-
'mypy>=0.570; python_version>="3.5" and python_version<"3.8"',
36+
'mypy>=0.500,<0.700; python_version<"3.5"',
37+
'mypy>=0.500; python_version>="3.5" and python_version<"3.8"',
3838
'mypy>=0.700; python_version>="3.8"',
3939
],
4040
classifiers=[

tox.ini

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
min_version = 3.7.0
44
isolated_build = true
55
envlist =
6-
py34-pytest{2.8, 2.x, 3.0, 3.x, 4.0, 4.x}-mypy{0.57, 0.5x, 0.60, 0.6x}
7-
py35-pytest{2.8, 2.x, 3.0, 3.x, 4.0, 4.x, 5.0, 5.x}-mypy{0.57, 0.5x, 0.60, 0.6x, 0.70, 0.7x}
8-
py36-pytest{2.8, 2.x, 3.0, 3.x, 4.0, 4.x, 5.0, 5.x}-mypy{0.57, 0.5x, 0.60, 0.6x, 0.70, 0.7x}
9-
py37-pytest{2.8, 2.x, 3.0, 3.x, 4.0, 4.x, 5.0, 5.x}-mypy{0.57, 0.5x, 0.60, 0.6x, 0.70, 0.7x}
6+
py34-pytest{2.8, 2.x, 3.0, 3.x, 4.0, 4.x}-mypy{0.50, 0.5x, 0.60, 0.6x}
7+
py35-pytest{2.8, 2.x, 3.0, 3.x, 4.0, 4.x, 5.0, 5.x}-mypy{0.50, 0.5x, 0.60, 0.6x, 0.70, 0.7x}
8+
py36-pytest{2.8, 2.x, 3.0, 3.x, 4.0, 4.x, 5.0, 5.x}-mypy{0.50, 0.5x, 0.60, 0.6x, 0.70, 0.7x}
9+
py37-pytest{2.8, 2.x, 3.0, 3.x, 4.0, 4.x, 5.0, 5.x}-mypy{0.50, 0.5x, 0.60, 0.6x, 0.70, 0.7x}
1010
py38-pytest{2.8, 2.x, 3.0, 3.x, 4.0, 4.x, 5.0, 5.x}-mypy{0.71, 0.7x}
1111
flake8
1212

@@ -41,6 +41,13 @@ deps =
4141
pytest4.x: pytest ~= 4.0
4242
pytest5.0: pytest ~= 5.0.0
4343
pytest5.x: pytest ~= 5.0
44+
mypy0.50: mypy >= 0.500, < 0.510
45+
mypy0.51: mypy >= 0.510, < 0.520
46+
mypy0.52: mypy >= 0.520, < 0.530
47+
mypy0.53: mypy >= 0.530, < 0.540
48+
mypy0.54: mypy >= 0.540, < 0.550
49+
mypy0.55: mypy >= 0.550, < 0.560
50+
mypy0.56: mypy >= 0.560, < 0.570
4451
mypy0.57: mypy >= 0.570, < 0.580
4552
mypy0.58: mypy >= 0.580, < 0.590
4653
mypy0.59: mypy >= 0.590, < 0.600

0 commit comments

Comments
 (0)