Skip to content

Commit c02c54f

Browse files
authored
Drop Python 3.4 support (#25)
PyPI stats indicates that 0.00% of downloads are for Python 3.4: https://www.pypistats.org/packages/mypy-extensions Other supported Python versions have non-trivial downloads, so let's continue to support them for now.
1 parent dffd016 commit c02c54f

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
'Programming Language :: Python :: 2',
2121
'Programming Language :: Python :: 2.7',
2222
'Programming Language :: Python :: 3',
23-
'Programming Language :: Python :: 3.4',
2423
'Programming Language :: Python :: 3.5',
2524
'Programming Language :: Python :: 3.6',
2625
'Programming Language :: Python :: 3.7',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
minversion = 2.9.1
33
skip_missing_interpreters = true
4-
envlist = py27, py34, py35, py36, py37
4+
envlist = py27, py35, py36, py37
55

66
[testenv]
77
description = run the test driver with {basepython}

0 commit comments

Comments
 (0)