From 5af023057d15d10a717f2216ebe3e9f16b42b249 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Raddaoui=20Mar=C3=ADn?= Date: Wed, 2 Oct 2019 19:11:38 +0200 Subject: [PATCH] Remove Python 3.4 support --- .travis.yml | 2 -- README.md | 4 ++-- setup.py | 4 ++-- tox.ini | 2 +- 4 files changed, 5 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index d840181..81af546 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,8 +17,6 @@ matrix: env: TOXENV=docs - python: 2.7 env: TOXENV=py27 - - python: 3.4 - env: TOXENV=py34 - python: 3.5 env: TOXENV=py35 - python: 3.6 diff --git a/README.md b/README.md index e99469d..6b61798 100644 --- a/README.md +++ b/README.md @@ -21,9 +21,9 @@ METSRW can be installed with pip. METSRW has been tested with: * Python 2.7 -* Python 3.4 +* Python 3.5 * Python 3.6 - +* Python 3.7 ## Basic Usage diff --git a/setup.py b/setup.py index 07eac46..a1575da 100644 --- a/setup.py +++ b/setup.py @@ -50,11 +50,11 @@ def find_version(*file_paths): "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", ], keywords="mets", packages=find_packages(exclude=["docs", "fixtures", "requirements", "tests*"]), install_requires=["future", "lxml", "six"], include_package_data=True, - 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.*", ) diff --git a/tox.ini b/tox.ini index fc44cb2..a266428 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{27,34,35,36,37}, linting, docs +envlist = py{27,35,36,37}, linting, docs skip_missing_interpreters = True skipsdist = True