Skip to content

Commit

Permalink
add python 3.7 builds, remove 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg committed May 26, 2019
1 parent 5d9fef7 commit 34cba45
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
9 changes: 5 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
dist: xenial
language: python
matrix:
include:
- python: 3.6
- python: 3.7
env: TOXENV=flake8
- python: 2.7
env: TOXENV=py27
- python: 3.4
env: TOXENV=py34
- python: 3.5
env: TOXENV=py35
- python: 3.6
env: TOXENV=py36
- python: 3.7
env: TOXENV=py37
- python: pypy
env: TOXENV=pypy
- python: pypy3
env: TOXENV=pypy3
- python: 3.6
- python: 3.7
env: TOXENV=docs
install:
- pip install tox
Expand Down
18 changes: 9 additions & 9 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist=flake8,py27,py34,py35,py36,pypy,docs,coverage
envlist=flake8,py27,py35,py36,py37,pypy,pypy3,docs,coverage
skip_missing_interpreters=True

[testenv]
Expand All @@ -11,32 +11,32 @@ deps=
coverage

[testenv:flake8]
basepython=python
basepython=python3.7
deps=
flake8
commands=
flake8 --exclude=".*" --ignore=E402 flask_httpauth.py tests examples

[testenv:py26]
basepython=python2.6

[testenv:py27]
basepython=python2.7

[testenv:py34]
basepython=python3.4

[testenv:py35]
basepython=python3.5

[testenv:py36]
basepython=python3.6

[testenv:py37]
basepython=python3.7

[testenv:pypy]
basepython=pypy

[testenv:pypy3]
basepython=pypy3

[testenv:docs]
basepython=python2.7
basepython=python3.7
changedir=docs
deps=
sphinx
Expand Down

0 comments on commit 34cba45

Please sign in to comment.