Skip to content

Commit c19142d

Browse files
authored
Merge pull request #44 from naphta/feature/add-3-8-support
Add support for 3.8
2 parents b5c7f70 + b6b5ccc commit c19142d

File tree

4 files changed

+5
-0
lines changed

4 files changed

+5
-0
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ python:
88
- "3.5"
99
- "3.6"
1010
- "3.7"
11+
- "3.8-dev"
1112

1213
install: pip install 'tox-travis ~= 0.12.0'
1314
script: tox

changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* Run mypy once per session instead of once per file.
55
* Stop passing --incremental (which mypy now defaults to).
66
* Support configuring the plugin in a conftest.py.
7+
* Add support for Python 3.8
78

89
## 0.3.3
910
* Register `mypy` marker.

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ def read(fname):
3535
'pytest>=2.8; python_version>="3.5"',
3636
'mypy>=0.570,<0.700; python_version<"3.5"',
3737
'mypy>=0.570; python_version>="3.5"',
38+
'mypy>=0.701; python_version>="3.8.0b1"',
3839
],
3940
classifiers=[
4041
'Development Status :: 4 - Beta',
@@ -47,6 +48,7 @@ def read(fname):
4748
'Programming Language :: Python :: 3.5',
4849
'Programming Language :: Python :: 3.6',
4950
'Programming Language :: Python :: 3.7',
51+
'Programming Language :: Python :: 3.8',
5052
'Programming Language :: Python :: Implementation :: CPython',
5153
'Operating System :: OS Independent',
5254
'License :: OSI Approved :: MIT License',

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ isolated_build = true
55
envlist =
66
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}
77
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}
89
flake8
910

1011
[testenv]

0 commit comments

Comments
 (0)