Skip to content

Commit

Permalink
Drop support for EOL Python 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk authored and g-k committed Feb 7, 2020
1 parent a8af49e commit 8d416c5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 12 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ cache:

python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
Expand All @@ -25,7 +24,7 @@ matrix:
env: MODE=lint
- python: "2.7"
env: MODE=vendorverify
- python: "3.4"
- python: "3.8"
env: MODE=lint
- python: "3.6"
env: MODE=docs
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def get_version():
include_package_data=True,
package_data={'': ['README.rst']},
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,
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand All @@ -56,7 +56,6 @@ def get_version():
'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
10 changes: 2 additions & 8 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

[tox]
envlist =
py{27,34,35,36,37,38,py,py3}
py{27,34,35,36,37,38}-build-no-lang
py{27,35,36,37,38,py,py3}
py{27,35,36,37,38}-build-no-lang
docs
lint
vendorverify
Expand All @@ -21,12 +21,6 @@ setenv =
commands =
python setup.py build

[testenv:py34-build-no-lang]
setenv =
LANG=
commands =
python setup.py build

[testenv:py35-build-no-lang]
setenv =
LANG=
Expand Down

0 comments on commit 8d416c5

Please sign in to comment.