Skip to content

Commit

Permalink
Add support for Python 3.9 (#306)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinHjelmare authored Dec 7, 2020
1 parent f3ed4f2 commit 20ec2aa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.6, 3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Home Automation",
],
)
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[tox]
envlist = py36, py37, py38, lint
envlist = py36, py37, py38, py39, lint
skip_missing_interpreters = True

[gh-actions]
python =
3.6: py36, lint
3.7: py37
3.8: py38
3.9: py39

[testenv]
commands =
Expand Down

0 comments on commit 20ec2aa

Please sign in to comment.