diff --git a/.builds/py39.yaml b/.builds/archlinux.yaml similarity index 100% rename from .builds/py39.yaml rename to .builds/archlinux.yaml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index be99bbf5..5f89e248 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -9,6 +9,7 @@ v4.1.0 * The "table" layout has been dropped in favour of a simpler, fluid layout. As such, ``tabulate`` is not longer a required dependency. +* Added support for python 3.10. v4.0.1 ------ diff --git a/setup.cfg b/setup.cfg index c4b4d48a..260838c2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -10,7 +10,7 @@ test=pytest [tool:pytest] testpaths = tests -addopts = --cov=todoman --cov-report=term-missing +addopts = --cov=todoman --cov-report=term-missing --color=yes --verbose [isort] force_single_line=true diff --git a/setup.py b/setup.py index 97915dff..645846f7 100644 --- a/setup.py +++ b/setup.py @@ -42,6 +42,7 @@ "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Office/Business :: Scheduling", "Topic :: Utilities", diff --git a/tox.ini b/tox.ini index 01d88cb2..ce6c8f79 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py38, py39, docs +envlist = py38, py39, py310, docs skip_missing_interpreters = True [testenv]