summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2017-01-02 17:21:56 -0800
committerSteve Piercy <web@stevepiercy.com>2017-01-02 17:21:56 -0800
commit268036fec598f9e653b91887200ff8d64d0eeeec (patch)
tree09f1d69c51d1f0367d1b17f1cb39c5986179f699
parent7093e812c2a2f95b4339c78b3da7bb211e244d5d (diff)
downloadwaitress-268036fec598f9e653b91887200ff8d64d0eeeec.tar.gz
remove deprecated supported versions of Python
-rw-r--r--docs/index.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/index.rst b/docs/index.rst
index dd2bee0..9e89395 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -4,7 +4,7 @@ Waitress
Waitress is meant to be a production-quality pure-Python WSGI server with
very acceptable performance. It has no dependencies except ones which live
in the Python standard library. It runs on CPython on Unix and Windows under
-Python 2.6+ and Python 3.2+. It is also known to run on PyPy 1.6.0 on UNIX.
+Python 2.7+ and Python 3.3+. It is also known to run on PyPy 1.6.0 on UNIX.
It supports HTTP/1.0 and HTTP/1.1.
Usage
@@ -36,7 +36,7 @@ WSGI app as a single argument:
from waitress import serve
serve(wsgiapp)
-
+
Press Ctrl-C (or Ctrl-Break on Windows) to exit the server.
The default is to bind to any IPv4 address on port 8080: