From 21351094ec3db73d453faeb075978e0d36c4e1bc Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Thu, 6 Aug 2020 17:27:15 +0200 Subject: [PATCH 1/2] Travis CI: Add Python 3.8 to testing --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5211f07..d85845e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,15 @@ -sudo: required +os: linux dist: xenial language: python python: +- 3.8 - 3.7 - 3.6 - 3.5 - pypy3.5 - nightly -matrix: +jobs: allow_failures: - python: nightly From c649355285c2d89d97882fff74c44ad20fab5c89 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Thu, 6 Aug 2020 17:58:00 +0200 Subject: [PATCH 2/2] setup.py: Add Python 3.8 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c8306b8..fc7c01e 100755 --- a/setup.py +++ b/setup.py @@ -67,10 +67,10 @@ setuptools.setup( 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'License :: OSI Approved :: GNU General Public License (GPL)', - 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', 'Topic :: Internet :: Proxy Servers', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Software Development :: Libraries :: Python Modules',