Skip to content

Commit

Permalink
Support Python 3.9 (#451)
Browse files Browse the repository at this point in the history
* Support Python 3.9

* Remove dist
  • Loading branch information
marvin-w committed Nov 2, 2020
1 parent d278eb1 commit d75b65e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
os: linux
dist: xenial
language: python

jobs:
Expand All @@ -12,8 +11,8 @@ jobs:
env: TOXENV=py37
- python: "3.8"
env: TOXENV=py38
- python: "3.8.5"
env: TOXENV=py38
- python: "3.9"
env: TOXENV=py39
after_success: coveralls

cache:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
packages=find_packages(),
install_requires=REQUIRES,
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py37, py38, typing, pylint, lint
envlist = py37, py38, py39, typing, pylint, lint
skip_missing_interpreters = True

[testenv]
Expand Down

0 comments on commit d75b65e

Please sign in to comment.