Skip to content

Commit

Permalink
Merge pull request #472 from pimutils/py310
Browse files Browse the repository at this point in the history
Add support for Python 3.10
  • Loading branch information
Hugo Osvaldo Barrera committed Dec 13, 2021
2 parents a7424c0 + 7ffcd82 commit 0293da2
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 2 deletions.
File renamed without changes.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Expand Up @@ -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
------
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py38, py39, docs
envlist = py38, py39, py310, docs
skip_missing_interpreters = True

[testenv]
Expand Down

0 comments on commit 0293da2

Please sign in to comment.