From 60709e386a1a33dbf0181d5ae6bc32b12621d600 Mon Sep 17 00:00:00 2001 From: dgelessus Date: Sun, 21 Nov 2021 18:48:12 +0100 Subject: [PATCH] Add Python 3.10 to test matrix and classifiers --- .github/workflows/ci.yml | 2 +- setup.cfg | 1 + tox.ini | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6d7f5f6..90190d1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,6 +12,6 @@ jobs: python-version: "3.6" - uses: actions/setup-python@v1 with: - python-version: "3.9" + python-version: "3.10" - run: python -m pip install --upgrade tox - run: tox diff --git a/setup.cfg b/setup.cfg index c75dfe9..7dd60e4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -17,6 +17,7 @@ classifiers = Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 Topic :: Software Development :: Disassemblers Topic :: System Topic :: Utilities diff --git a/tox.ini b/tox.ini index 2c57287..9fc8b03 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] # When updating the Python versions here, # please also update the corresponding Python versions in the GitHub Actions workflow (.github/workflows/ci.yml). -envlist = py{36,39},flake8,mypy,package +envlist = py{36,310},flake8,mypy,package [testenv] commands = python -m unittest discover --start-directory ./tests