From 0642b1e8bf1e748018c5685a16f37eafc67bbfeb Mon Sep 17 00:00:00 2001 From: dgelessus Date: Sun, 1 Nov 2020 19:09:43 +0100 Subject: [PATCH] Add Python 3.9 to test matrix and classifiers --- .github/workflows/ci.yml | 3 +++ setup.cfg | 1 + tox.ini | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c0cf601..bea404b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,5 +16,8 @@ jobs: - uses: actions/setup-python@v1 with: python-version: "3.8" + - uses: actions/setup-python@v1 + with: + python-version: "3.9" - run: python -m pip install --upgrade tox - run: tox diff --git a/setup.cfg b/setup.cfg index ddc5a53..c75dfe9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -16,6 +16,7 @@ classifiers = Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 + Programming Language :: Python :: 3.9 Topic :: Software Development :: Disassemblers Topic :: System Topic :: Utilities diff --git a/tox.ini b/tox.ini index b781c15..c08fe8b 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] # When adding a new Python version here, please also update the list of Python versions called by the GitHub Actions workflow (.github/workflows/ci.yml). -envlist = py{36,37,38},flake8,mypy,package +envlist = py{36,37,38,39},flake8,mypy,package [testenv] commands = python -m unittest discover --start-directory ./tests