Mark Python 3.11 as supported

This commit is contained in:
dgelessus 2023-02-14 21:09:17 +01:00
parent 4ad1d1d6b9
commit 0624d4eae9
3 changed files with 3 additions and 2 deletions

View File

@ -12,6 +12,6 @@ jobs:
python-version: "3.6"
- uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"
- run: python -m pip install --upgrade tox
- run: tox

View File

@ -18,6 +18,7 @@ classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Software Development :: Disassemblers
Topic :: System
Topic :: Utilities

View File

@ -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,310},flake8,mypy,package
envlist = py{36,311},flake8,mypy,package
[testenv]
commands = python -m unittest discover --start-directory ./tests