From 5c15bfecb1826278b52d58f321ede824b6a13370 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 14 Jan 2020 23:24:46 +0100 Subject: [PATCH 1/4] Travis CI: Python 2.7, 3.5, 3.6, 3.7, 3.8 --- .travis.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 23adb1b..6a3e3ea 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,17 +1,12 @@ language: python python: - "2.7" - - "3.4" - "3.5" - "3.6" + - "3.7" + - "3.8" - "pypy" - "pypy3" -sudo: false -matrix: - fast_finish: true - include: - - python: "3.7" - dist: xenial # required for Python >= 3.7 (travis-ci/travis-ci#9069) install: - pip install wheel tox-travis From 123a291c173597490f3a918130c35dfcde5e64b6 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 15 Jan 2020 10:20:00 +0100 Subject: [PATCH 2/4] too.ini: Drop py34 and Add py38 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 4189f95..446681b 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27, py34, py35, py36, py37, pypy, pypy3 +envlist = py27, py35, py36, py37, py38, pypy, pypy3 [testenv] deps = -r{toxinidir}/tests/requirements.txt From be7feea8d61c96a088059c18439948d622a28edc Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 15 Jan 2020 10:21:16 +0100 Subject: [PATCH 3/4] Setup.py: Drop Py34 and Add Py38 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a09de1c..551a951 100644 --- a/setup.py +++ b/setup.py @@ -33,10 +33,10 @@ 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', - '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 :: Utilities', 'Topic :: Internet', ], From d096619a1337bf612a64ccecf11fc11f2eff0832 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Wed, 15 Jan 2020 10:25:33 +0100 Subject: [PATCH 4/4] README.md: Python 2.7, 3.5, 3.6, 3.7, 3.8, pypy, and pypy3 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8ce94c8..3b3b4c4 100644 --- a/README.md +++ b/README.md @@ -64,8 +64,8 @@ Local documentation can be built using [Sphinx][]: Python Version Compatibility ---------------------------- -[Travis CI][ci-home] automatically runs tests against python 2.7, 3.4, 3.5, -pypy, and pypy3, +[Travis CI][ci-home] automatically runs tests against Python 2.7, 3.5, 3.6, +3.7, 3.8, pypy, and pypy3. Installation ------------