Skip to content

Commit

Permalink
Drop Python 3.4 support (#25)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
JukkaL authored Jan 29, 2023
1 parent dffd016 commit c02c54f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
minversion = 2.9.1
skip_missing_interpreters = true
envlist = py27, py34, py35, py36, py37
envlist = py27, py35, py36, py37

[testenv]
description = run the test driver with {basepython}
Expand Down

0 comments on commit c02c54f

Please sign in to comment.