Skip to content

Commit

Permalink
Merge pull request #328 from Pylons/drop-py35-add-py39
Browse files Browse the repository at this point in the history
Drop Python 3.5 support from Waitress add Py3.9
  • Loading branch information
digitalresistor committed Nov 26, 2020
2 parents 29bd138 + 009bffb commit 4ced2ed
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
strategy:
matrix:
py:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "pypy3"
os:
- "ubuntu-latest"
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.


Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 =
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
[tox]
envlist =
lint,
py35,py36,py37,py38,pypy3,
py39,
py36,py37,py38,py39,pypy3,
docs,
coverage
isolated_build = True
Expand Down

0 comments on commit 4ced2ed

Please sign in to comment.