summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/news.rst1
-rw-r--r--setup.cfg3
-rw-r--r--tox.ini2
3 files changed, 3 insertions, 3 deletions
diff --git a/docs/news.rst b/docs/news.rst
index b690329..25c2c07 100644
--- a/docs/news.rst
+++ b/docs/news.rst
@@ -3,6 +3,7 @@ Release Notes
**UNRELEASED**
+- Dropped Python 3.4 support
- Added automatic platform tag detection for macOS binary wheels
(PR by Grzegorz Bokota)
- Updated project packaging and testing configuration for :pep:`517`
diff --git a/setup.cfg b/setup.cfg
index 6cad845..57dd5b7 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -12,7 +12,6 @@ classifiers =
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
@@ -31,7 +30,7 @@ license = MIT
[options]
packages = find:
-python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
+python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
zip_safe = False
[options.extras_require]
diff --git a/tox.ini b/tox.ini
index 302dfc6..77664f0 100644
--- a/tox.ini
+++ b/tox.ini
@@ -4,7 +4,7 @@
# and then run "tox" from this directory.
[tox]
-envlist = py27, py34, py35, py36, py37, py38, pypy, pypy3, flake8
+envlist = py27, py35, py36, py37, py38, pypy, pypy3, flake8
minversion = 3.3.0
skip_missing_interpreters = true
isolated_build = true