Skip to content

Commit 16a0f81

Browse files
authored
Default to type checking in Python 3.6 mode (#2915)
Now that 3.6 is out, there's really no need to default to 3.5 any more. Fixes #2836.
1 parent 17979d9 commit 16a0f81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypy/defaults.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
PYTHON2_VERSION = (2, 7)
2-
PYTHON3_VERSION = (3, 5)
2+
PYTHON3_VERSION = (3, 6)
33
CACHE_DIR = '.mypy_cache'
44
CONFIG_FILE = 'mypy.ini'

0 commit comments

Comments
 (0)