Skip to content

Commit

Permalink
Add support for Python 3.9; drop support for Python 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
drhagen committed Dec 8, 2020
1 parent 41670f4 commit fc329a9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ dist: xenial

matrix:
include:
- 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: 3.7
env: TOXENV=pep8

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[tox]
# Environment changes have to be manually synced with '.travis.yml'.
envlist =
py35
py36
py37
py38
py39
coverage
pep8

Expand All @@ -23,7 +23,7 @@ commands =
[testenv:coverage]
# Separate step for combining coverage
skip_install = true
depends = py35,py36,py37,py38
depends = py36,py37,py38,py39
setenv =
deps =
coverage >= 4.5.3
Expand Down

0 comments on commit fc329a9

Please sign in to comment.