Skip to content

Commit

Permalink
Remove Python 3.4 support
Browse files Browse the repository at this point in the history
  • Loading branch information
jraddaoui committed Oct 5, 2019
1 parent 7e94376 commit 5af0230
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.*",
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 5af0230

Please sign in to comment.