Skip to content

Commit

Permalink
Drop support for Python 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
thombashi committed May 1, 2019
1 parent b315afb commit 6434083
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
5 changes: 0 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ matrix:
sudo: required
env: TOXENV=python2.7

- os: linux
python: 3.4
sudo: required
env: TOXENV=python3.4

- os: linux
python: 3.5
sudo: required
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def get_release_command_class():
"Tracker": "{:s}/issues".format(REPOSITORY_URL),
},

python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*",
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
install_requires=SETUPTOOLS_REQUIRES + install_requires,
setup_requires=SETUPTOOLS_REQUIRES + PYTEST_RUNNER_REQUIRES,
tests_require=tests_requires + DATETIME_REQUIRES,
Expand All @@ -102,7 +102,6 @@ def get_release_command_class():
"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",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = python{2.7,3.4,3.5,3.6,3.7},cov
envlist = python{2.7,3.5,3.6,3.7},cov

[testenv]
autoupgrade_pip = true
Expand Down

0 comments on commit 6434083

Please sign in to comment.