From 8f1e6ad10cdc3d02c70cbc49a352ad6665a4d299 Mon Sep 17 00:00:00 2001 From: Hugo Date: Mon, 2 Dec 2019 17:56:08 +0200 Subject: [PATCH] Drop support for EOL Python 3.4 --- .appveyor.yml | 1 - .travis.yml | 4 +--- setup.py | 3 +-- tox.ini | 2 +- 4 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index ea522dc..881b460 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,7 +1,6 @@ environment: matrix: - TOXENV: "py27-pytestlatest" - - TOXENV: "py34-pytestlatest" - TOXENV: "py35-pytestlatest" - TOXENV: "py36-pytestlatest" - TOXENV: "py37-pytestlatest" diff --git a/.travis.yml b/.travis.yml index ed01656..3b25db0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,9 +36,7 @@ jobs: env: TOXENV=py27-pytestlatest - stage: test - python: "3.4" - env: TOXENV=py34-pytestlatest - - python: "3.5" + python: "3.5" env: TOXENV=py35-pytestlatest - python: "3.6" env: TOXENV=py36-pytestlatest diff --git a/setup.py b/setup.py index e50898f..3eac3be 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ setup( "pytest11": ["xdist = xdist.plugin", "xdist.looponfail = xdist.looponfail"] }, zip_safe=False, - python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", + python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", install_requires=install_requires, setup_requires=["setuptools_scm"], classifiers=[ @@ -42,7 +42,6 @@ setup( "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", diff --git a/tox.ini b/tox.ini index 3a52a95..98e0bd1 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] envlist= linting - py{27,34,35,36,37,38}-pytestlatest + py{27,35,36,37,38}-pytestlatest py38-pytest{master,features} [testenv]