This commit is contained in:
Paul J. Dorn 2023-12-28 21:15:24 +01:00
commit 09ee579f44
4 changed files with 4 additions and 6 deletions

View File

@ -32,7 +32,7 @@ The documentation is hosted at https://docs.gunicorn.org.
Installation Installation
------------ ------------
Gunicorn requires **Python 3.x >= 3.5**. Gunicorn requires **Python 3.x >= 3.7**.
Install from PyPI:: Install from PyPI::

View File

@ -23,7 +23,7 @@ Features
* Simple Python configuration * Simple Python configuration
* Multiple worker configurations * Multiple worker configurations
* Various server hooks for extensibility * Various server hooks for extensibility
* Compatible with Python 3.x >= 3.5 * Compatible with Python 3.x >= 3.7
Contents Contents

View File

@ -4,7 +4,7 @@ Installation
.. highlight:: bash .. highlight:: bash
:Requirements: **Python 3.x >= 3.5** :Requirements: **Python 3.x >= 3.7**
To install the latest released version of Gunicorn:: To install the latest released version of Gunicorn::

View File

@ -17,8 +17,6 @@ classifiers = [
"Operating System :: POSIX", "Operating System :: POSIX",
"Programming Language :: Python", "Programming Language :: Python",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.9",
@ -35,7 +33,7 @@ classifiers = [
"Topic :: Internet :: WWW/HTTP :: WSGI :: Server", "Topic :: Internet :: WWW/HTTP :: WSGI :: Server",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Internet :: WWW/HTTP :: Dynamic Content",
] ]
requires-python = ">=3.5" requires-python = ">=3.7"
dependencies = [ dependencies = [
'importlib_metadata; python_version<"3.8"', 'importlib_metadata; python_version<"3.8"',
"packaging", "packaging",