From 80668ce1da45a5153f3ec18b8c0459de6eaf322e Mon Sep 17 00:00:00 2001 From: "brian.price" Date: Tue, 21 May 2019 18:05:58 -0500 Subject: [PATCH 1/2] Removing Python 3.4 from testing. It is no longer supported. --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e6ff4866..093a79ad 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,6 @@ sudo: false matrix: include: - python: 2.7 - - python: 3.4 - python: 3.5 - python: 3.6 - python: 3.7 From b284191eeb82f61aa97b56d70041a4ea5c656a13 Mon Sep 17 00:00:00 2001 From: Artur Maciag Date: Wed, 22 May 2019 08:57:27 +0100 Subject: [PATCH 2/2] End of Python 3.4 support --- .travis.yml | 4 ++-- setup.py | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 093a79ad..6ef58da9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,12 +13,12 @@ matrix: allow_failures: - python: nightly before_install: -- if [[ $TRAVIS_PYTHON_VERSION == '3.2' ]]; then pip install 'coverage<4.0.0'; fi - pip install codecov - pip install 'py>=1.5.0' install: -- pip install -e . +- pip install -r requirements.txt - pip install -r requirements_dev.txt +- pip install -e . script: - python setup.py test after_success: diff --git a/setup.py b/setup.py index ba10e045..58daeb37 100644 --- a/setup.py +++ b/setup.py @@ -74,7 +74,6 @@ def run_tests(self): "Topic :: Software Development :: Libraries :: Python Modules", "Operating System :: OS Independent", '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',