Skip to content

Commit 6ab8908

Browse files
committed
Reduce testing of old mypy versions
1 parent d2c3c7a commit 6ab8908

File tree

1 file changed

+22
-21
lines changed

1 file changed

+22
-21
lines changed

tox.ini

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
min_version = 3.7.0
44
isolated_build = true
55
envlist =
6-
py{34, 35, 36, 37}-pytest{2.8, 2.x, 3.0, 3.x, 4.0, 4.x}-mypy{0.570, 0.580, 0.590, 0.600, 0.610, 0.620, 0.630, 0.641, 0.650, 0.660, 0.670}
7-
py{35, 36, 37}-pytest{2.8, 2.x, 3.0, 3.x, 4.0, 4.x, 5.0, 5.x}-mypy{0.700, 0.701}
8-
py{35, 36, 37, 38}-pytest{2.8, 2.x, 3.0, 3.x, 4.0, 4.x, 5.0, 5.x}-mypy{0.710, 0.711, 0.720, 0.730, 0.740}
6+
py{34, 35, 36, 37}-pytest{2.8, 2.x, 3.0, 3.x, 4.0, 4.x}-mypy{0.57, 0.5x, 0.60, 0.6x}
7+
py{35, 36, 37}-pytest{2.8, 2.x, 3.0, 3.x, 4.0, 4.x, 5.0, 5.x}-mypy{0.70}
8+
py{35, 36, 37, 38}-pytest{2.8, 2.x, 3.0, 3.x, 4.0, 4.x, 5.0, 5.x}-mypy{0.71, 0.72, 0.73, 0.74, 0.7x}
99
flake8
1010

1111
[testenv]
@@ -37,24 +37,25 @@ deps =
3737
pytest4.x: pytest ~= 4.0
3838
pytest5.0: pytest ~= 5.0.0
3939
pytest5.x: pytest ~= 5.0
40-
mypy0.570: mypy == 0.570
41-
mypy0.580: mypy == 0.580
42-
mypy0.590: mypy == 0.590
43-
mypy0.600: mypy == 0.600
44-
mypy0.610: mypy == 0.610
45-
mypy0.620: mypy == 0.620
46-
mypy0.630: mypy == 0.630
47-
mypy0.641: mypy == 0.641
48-
mypy0.650: mypy == 0.650
49-
mypy0.660: mypy == 0.660
50-
mypy0.670: mypy == 0.670
51-
mypy0.700: mypy == 0.700
52-
mypy0.701: mypy == 0.701
53-
mypy0.710: mypy == 0.710
54-
mypy0.711: mypy == 0.711
55-
mypy0.720: mypy == 0.720
56-
mypy0.730: mypy == 0.730
57-
mypy0.740: mypy == 0.740
40+
mypy0.57: mypy >= 0.570, < 0.580
41+
mypy0.58: mypy >= 0.580, < 0.590
42+
mypy0.59: mypy >= 0.590, < 0.600
43+
mypy0.5x: mypy >= 0.500, < 0.600
44+
mypy0.60: mypy >= 0.600, < 0.610
45+
mypy0.61: mypy >= 0.610, < 0.620
46+
mypy0.62: mypy >= 0.620, < 0.630
47+
mypy0.63: mypy >= 0.630, < 0.640
48+
mypy0.64: mypy >= 0.640, < 0.650
49+
mypy0.65: mypy >= 0.650, < 0.660
50+
mypy0.66: mypy >= 0.660, < 0.670
51+
mypy0.67: mypy >= 0.670, < 0.680
52+
mypy0.6x: mypy >= 0.600, < 0.700
53+
mypy0.70: mypy >= 0.700, < 0.710
54+
mypy0.71: mypy >= 0.710, < 0.720
55+
mypy0.72: mypy >= 0.720, < 0.730
56+
mypy0.73: mypy >= 0.730, < 0.740
57+
mypy0.74: mypy >= 0.740, < 0.750
58+
mypy0.7x: mypy >= 0.700, < 0.800
5859

5960
pytest-cov ~= 2.5.1
6061
pytest-randomly ~= 2.1.1

0 commit comments

Comments
 (0)