From afe068021215d99083a84261dcba4e5dc61b4b8a Mon Sep 17 00:00:00 2001 From: Ben Cail Date: Mon, 23 Oct 2023 16:58:12 -0400 Subject: [PATCH] Document Python 3.7 requirement --- README.rst | 2 +- docs/source/index.rst | 2 +- docs/source/install.rst | 2 +- setup.py | 4 +--- 4 files changed, 4 insertions(+), 6 deletions(-) diff --git a/README.rst b/README.rst index fe9523b9..4a4029dd 100644 --- a/README.rst +++ b/README.rst @@ -32,7 +32,7 @@ The documentation is hosted at https://docs.gunicorn.org. Installation ------------ -Gunicorn requires **Python 3.x >= 3.5**. +Gunicorn requires **Python 3.x >= 3.7**. Install from PyPI:: diff --git a/docs/source/index.rst b/docs/source/index.rst index 24c4814d..3f89ce1e 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.5 +* Compatible with Python 3.x >= 3.7 Contents diff --git a/docs/source/install.rst b/docs/source/install.rst index 66f2479e..2367086d 100644 --- a/docs/source/install.rst +++ b/docs/source/install.rst @@ -4,7 +4,7 @@ Installation .. highlight:: bash -:Requirements: **Python 3.x >= 3.5** +:Requirements: **Python 3.x >= 3.7** To install the latest released version of Gunicorn:: diff --git a/setup.py b/setup.py index dffd418c..0d73584d 100644 --- a/setup.py +++ b/setup.py @@ -21,8 +21,6 @@ CLASSIFIERS = [ 'Operating System :: POSIX', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', @@ -100,7 +98,7 @@ setup( 'Source code': 'https://github.com/benoitc/gunicorn', }, - python_requires='>=3.5', + python_requires='>=3.7', install_requires=install_requires, classifiers=CLASSIFIERS, zip_safe=False,