diff --git a/README.rst b/README.rst index c9e3ebdf..22b46be8 100644 --- a/README.rst +++ b/README.rst @@ -28,7 +28,7 @@ The documentation is hosted at http://docs.gunicorn.org. Installation ------------ -Gunicorn requires **Python 3.x >= 3.4**. +Gunicorn requires **Python 3.x >= 3.5**. Install from PyPI:: diff --git a/docs/source/index.rst b/docs/source/index.rst index 074a1117..50bb2abd 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -23,7 +23,7 @@ Features * Simple Python configuration * Multiple worker configurations * Various server hooks for extensibility -* Compatible with Python 3.x >= 3.4 +* Compatible with Python 3.x >= 3.5 Contents diff --git a/gunicorn/__init__.py b/gunicorn/__init__.py index 7b38ab04..1bb73fc0 100644 --- a/gunicorn/__init__.py +++ b/gunicorn/__init__.py @@ -3,6 +3,6 @@ # This file is part of gunicorn released under the MIT license. # See the NOTICE for more information. -version_info = (20, 0, 0) +version_info = (20, 0, 1) __version__ = ".".join([str(v) for v in version_info]) SERVER_SOFTWARE = "gunicorn/%s" % __version__ diff --git a/setup.py b/setup.py index 2408a53f..965546f4 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,6 @@ CLASSIFIERS = [ 'Operating System :: POSIX', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', diff --git a/tox.ini b/tox.ini index 7180e559..41298735 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py34, py35, py36, py37, py38, pypy3, lint +envlist = py35, py36, py37, py38, pypy3, lint skipsdist = True [testenv]