Skip to content

Commit

Permalink
Drop support for Python 3.4
Browse files Browse the repository at this point in the history
Change-Id: I7ef3a9254681727a6d48b832672ce432f7b7cbf6
  • Loading branch information
volans- committed May 4, 2019
1 parent 26aaf06 commit ebbb504
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 32 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
language: python
python:
- "3.4"
- "3.5"
- "3.6"
- "3.7"
Expand Down
32 changes: 1 addition & 31 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
minversion = 1.6
envlist = py{34,35,36,37}-{flake8,unit,unit-min,unitbase,bandit,prospector,sphinx}
envlist = py{35,36,37}-{flake8,unit,unit-min,unitbase,bandit,prospector,sphinx}
skip_missing_interpreters = True

[testenv]
Expand All @@ -9,7 +9,6 @@ basepython =
py37: python3.7
py36: python3.6
py35: python3.5
py34: python3.4
whitelist_externals = sed
description =
flake8: Style consistency checker
Expand All @@ -23,7 +22,6 @@ description =
py37: (Python 3.7)
py36: (Python 3.6)
py35: (Python 3.5)
py34: (Python 3.4)
envdir = {toxworkdir}/py36-tests
commands =
flake8: flake8 setup.py cumin doc
Expand Down Expand Up @@ -118,34 +116,6 @@ envdir = {toxworkdir}/py35-tests
[testenv:py35-integration-min]
envdir = {toxworkdir}/py35-tests-min

[testenv:py34-flake8]
envdir = {toxworkdir}/py34-tests

[testenv:py34-unit]
envdir = {toxworkdir}/py34-tests

[testenv:py34-unit-min]
envdir = {toxworkdir}/py34-tests-min

[testenv:py34-unitbase]
envdir = {toxworkdir}/py34-tests-base
deps = .[tests-base]

[testenv:py34-bandit]
envdir = {toxworkdir}/py34-tests

[testenv:py34-prospector]
envdir = {toxworkdir}/py34-tests

[testenv:py34-sphinx]
envdir = {toxworkdir}/py34-tests

[testenv:py34-integration]
envdir = {toxworkdir}/py34-tests

[testenv:py34-integration-min]
envdir = {toxworkdir}/py34-tests-min

[flake8]
max-line-length = 120
statistics = True

0 comments on commit ebbb504

Please sign in to comment.