From 202dd0957a0afc7b159096e7ddfc8b4dfca061d7 Mon Sep 17 00:00:00 2001 From: Bert JW Regeer Date: Sun, 2 Feb 2020 16:38:23 -0800 Subject: Drop Python 3.4 This is necessary due to needing coverage>=5.0, which is no longer available on Python 3.4. Python 3.4 is also now past end of life. This continued to work by chance due to Travis having nosetest installed in the Python global installation, and thus the failure from tox to install coverage>=5.0 did not cause errors on Travis. Testing locally I still had an old version of coverage installed, and that version had not yet dropped Python 3.4. --- .github/workflows/ci-linux.yml | 1 + 1 file changed, 1 insertion(+) (limited to '.github/workflows/ci-linux.yml') diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml index a1c60ed..fd64233 100644 --- a/.github/workflows/ci-linux.yml +++ b/.github/workflows/ci-linux.yml @@ -12,6 +12,7 @@ jobs: {'py': '3.5', 'env': 'py35'}, {'py': '3.6', 'env': 'py36'}, {'py': '3.7', 'env': 'py37'}, + {'py': '3.8', 'env': 'py38'}, {'py': 'pypy2', 'env': 'pypy'}, {'py': 'pypy3', 'env': 'pypy3'} ] -- cgit v1.2.1