summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBert JW Regeer <xistence@0x58.com>2020-11-26 12:23:54 -0800
committerGitHub <noreply@github.com>2020-11-26 12:23:54 -0800
commit4ced2ed3e7e90ed5930b9a8ddf588c9716945bee (patch)
treef897249348ff95e008058910e63b4500ad804563
parent29bd138f98e157cddb8ae9e45bf2c33b0a868978 (diff)
parent009bffbf42cb9be30d5412023de90f2d69656af3 (diff)
downloadwaitress-4ced2ed3e7e90ed5930b9a8ddf588c9716945bee.tar.gz
Merge pull request #328 from Pylons/drop-py35-add-py39
Drop Python 3.5 support from Waitress add Py3.9
-rw-r--r--.github/workflows/ci-tests.yml2
-rw-r--r--README.rst4
-rw-r--r--docs/index.rst8
-rw-r--r--setup.cfg4
-rw-r--r--tox.ini3
5 files changed, 10 insertions, 11 deletions
diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml
index c8c660e..108a543 100644
--- a/.github/workflows/ci-tests.yml
+++ b/.github/workflows/ci-tests.yml
@@ -15,10 +15,10 @@ jobs:
strategy:
matrix:
py:
- - "3.5"
- "3.6"
- "3.7"
- "3.8"
+ - "3.9"
- "pypy3"
os:
- "ubuntu-latest"
diff --git a/README.rst b/README.rst
index b85e49d..a7b63c4 100644
--- a/README.rst
+++ b/README.rst
@@ -18,8 +18,8 @@ Waitress
Waitress is 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 3.5+. It
-is also known to run on PyPy (version 3.5 compatible) on UNIX. It supports
+standard library. It runs on CPython on Unix and Windows under Python 3.6+. It
+is also known to run on PyPy (version 3.6 compatible) on UNIX. It supports
HTTP/1.0 and HTTP/1.1.
For more information, see the "docs" directory of the Waitress package or visit
diff --git a/docs/index.rst b/docs/index.rst
index 2f7132b..e754c42 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -4,10 +4,10 @@
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.7+ and Python 3.5+. It is also known to run on PyPy 1.6.0 on UNIX.
+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.7+ and Python 3.6+. It is also known to run on PyPy 7.3.2 (PyPy3) on UNIX.
It supports HTTP/1.0 and HTTP/1.1.
diff --git a/setup.cfg b/setup.cfg
index 894d563..06c6643 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -13,10 +13,10 @@ classifiers =
License :: OSI Approved :: Zope Public License
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
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Operating System :: OS Independent
@@ -37,7 +37,7 @@ maintainer_email = pylons-discuss@googlegroups.com
package_dir=
=src
packages=find:
-python_requires = >=3.5.0
+python_requires = >=3.6.0
[options.entry_points]
paste.server_runner =
diff --git a/tox.ini b/tox.ini
index ff0ff14..f37689f 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,8 +1,7 @@
[tox]
envlist =
lint,
- py35,py36,py37,py38,pypy3,
- py39,
+ py36,py37,py38,py39,pypy3,
docs,
coverage
isolated_build = True