Skip to content

Commit 202785a

Browse files
authored
Merge pull request #60 from dmtucker/versions
Update versions
2 parents cb7044e + 16528b5 commit 202785a

File tree

3 files changed

+27
-21
lines changed

3 files changed

+27
-21
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ python:
66
- '3.5'
77
- '3.6'
88
- '3.7'
9-
- 3.8-dev
9+
- '3.8'
1010
install: pip install 'tox-travis ~= 0.12.0'
1111
script: tox
1212
deploy:

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ 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" and python_version<"3.8.0b1"',
38-
'mypy>=0.701; python_version>="3.8.0b1"',
37+
'mypy>=0.570; python_version>="3.5" and python_version<"3.8"',
38+
'mypy>=0.700; python_version>="3.8"',
3939
],
4040
classifiers=[
4141
'Development Status :: 4 - Beta',

tox.ini

Lines changed: 24 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@
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, 0.710, 0.711}
8-
py{38}-pytest{2.8, 2.x, 3.0, 3.x, 4.0, 4.x, 5.0, 5.x}-mypy{0.710, 0.711}
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}
10+
py38-pytest{2.8, 2.x, 3.0, 3.x, 4.0, 4.x, 5.0, 5.x}-mypy{0.71, 0.7x}
911
flake8
1012

1113
[testenv]
@@ -37,21 +39,25 @@ deps =
3739
pytest4.x: pytest ~= 4.0
3840
pytest5.0: pytest ~= 5.0.0
3941
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
42+
mypy0.57: mypy >= 0.570, < 0.580
43+
mypy0.58: mypy >= 0.580, < 0.590
44+
mypy0.59: mypy >= 0.590, < 0.600
45+
mypy0.5x: mypy >= 0.500, < 0.600
46+
mypy0.60: mypy >= 0.600, < 0.610
47+
mypy0.61: mypy >= 0.610, < 0.620
48+
mypy0.62: mypy >= 0.620, < 0.630
49+
mypy0.63: mypy >= 0.630, < 0.640
50+
mypy0.64: mypy >= 0.640, < 0.650
51+
mypy0.65: mypy >= 0.650, < 0.660
52+
mypy0.66: mypy >= 0.660, < 0.670
53+
mypy0.67: mypy >= 0.670, < 0.680
54+
mypy0.6x: mypy >= 0.600, < 0.700
55+
mypy0.70: mypy >= 0.700, < 0.710
56+
mypy0.71: mypy >= 0.710, < 0.720
57+
mypy0.72: mypy >= 0.720, < 0.730
58+
mypy0.73: mypy >= 0.730, < 0.740
59+
mypy0.74: mypy >= 0.740, < 0.750
60+
mypy0.7x: mypy >= 0.700, < 0.800
5561

5662
pytest-cov ~= 2.5.1
5763
pytest-randomly ~= 2.1.1

0 commit comments

Comments
 (0)