From 20ec2aa15eec7c979f42efc1bb8fa0f39cebb239 Mon Sep 17 00:00:00 2001 From: Martin Hjelmare Date: Mon, 7 Dec 2020 11:56:08 +0100 Subject: [PATCH] Add support for Python 3.9 (#306) --- .github/workflows/test.yml | 2 +- setup.py | 1 + tox.ini | 3 ++- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 23fc71aa..8b4af42b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 diff --git a/setup.py b/setup.py index 225e8e14..992f4fa8 100644 --- a/setup.py +++ b/setup.py @@ -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", ], ) diff --git a/tox.ini b/tox.ini index ca6ca707..913653fd 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py36, py37, py38, lint +envlist = py36, py37, py38, py39, lint skip_missing_interpreters = True [gh-actions] @@ -7,6 +7,7 @@ python = 3.6: py36, lint 3.7: py37 3.8: py38 + 3.9: py39 [testenv] commands =