Skip to content

Commit

Permalink
Added Python 3.9 support (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
exxamalte committed Apr 30, 2021
1 parent 6ad3e5f commit 7bca908
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .travis.yml
Expand Up @@ -16,7 +16,11 @@ matrix:
sudo: true
- python: "3.8"
env: TOXENV=py38
dist: xenial
dist: bionic
sudo: true
- python: "3.9"
env: TOXENV=py39
dist: bionic
sudo: true

install: pip install -U tox coveralls
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -24,6 +24,7 @@
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py36, py37, py38, cov, cov_local
envlist = py36, py37, py38, py39, cov, cov_local

[testenv]
deps=
Expand All @@ -16,7 +16,7 @@ commands=
pytest --cov --cov-report= {posargs}

[testenv:cov_local]
basepython=python3.7
basepython=python3.8
deps=
pytest
pytest-cov
Expand Down

0 comments on commit 7bca908

Please sign in to comment.