Merge pull request #78 from pinterest/deprectate-py26-py34

Deprecate support for py26 and py33
This commit is contained in:
Nicholas Charriere 2018-05-06 14:26:00 -07:00 committed by GitHub
commit b8ce29ed6d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View file

@ -45,6 +45,7 @@ htmlcov/
.coverage
.coverage.*
.cache
.pytest_cache/
# virtualenv
venv/

View file

@ -1,12 +1,12 @@
[tox]
envlist = py26, py27, py33, py34, py35, py36, flake8
envlist = py27, py34, py35, py36, flake8
[testenv]
deps =
pytest
pytest-cov
commands =
pip install -r requirements.txt --use-wheel
pip install -r requirements.txt
py.test --junitxml=junit-{envname}.xml --cov-report xml tests.py
[testenv:flake8]