Skip to content

Commit

Permalink
Remove python 3.5 and add python 3.9 to build
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg committed Nov 16, 2020
1 parent f3e6a57 commit 507a7c0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,23 @@ dist: xenial
language: python
matrix:
include:
- python: 3.7
- python: 3.8
env: TOXENV=flake8
- python: 2.7
env: TOXENV=py27
- python: 3.5
env: TOXENV=py35
- python: 3.6
env: TOXENV=py36
- python: 3.7
env: TOXENV=py37
- python: 3.8
env: TOXENV=py38
- python: 3.9
env: TOXENV=py39
- python: pypy
env: TOXENV=pypy
- python: pypy3
env: TOXENV=pypy3
- python: 3.7
- python: 3.8
env: TOXENV=docs
install:
- pip install tox
Expand Down
12 changes: 6 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist=flake8,py27,py35,py36,py37,py38,pypy,pypy3,docs,coverage
envlist=flake8,py27,py36,py37,py38,py39,pypy,pypy3,docs,coverage
skip_missing_interpreters=True

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

[testenv:flake8]
basepython=python3.7
basepython=python3.8
deps=
flake8
commands=
Expand All @@ -20,9 +20,6 @@ commands=
[testenv:py27]
basepython=python2.7

[testenv:py35]
basepython=python3.5

[testenv:py36]
basepython=python3.6

Expand All @@ -32,14 +29,17 @@ basepython=python3.7
[testenv:py38]
basepython=python3.8

[testenv:py39]
basepython=python3.9

[testenv:pypy]
basepython=pypy

[testenv:pypy3]
basepython=pypy3

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

0 comments on commit 507a7c0

Please sign in to comment.