diff --git a/CHANGELOG b/CHANGELOG index d2a3c76..b3139b8 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,8 +1,11 @@ # Changelog -## [Unreleased] +## Version 2.11.0 -- Support and require version 0.10 of `tabulate` +(released on 2025-03-05) + +- Support and require version 0.10.x of `tabulate`. +- Pin `tabulate` version more tightly. ## Version 2.10.1 diff --git a/setup.py b/setup.py index 3b1cc9e..5c870ce 100755 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ def open_file(filename): long_description_content_type="text/x-rst", install_requires=[ "configobj >= 5.0.5", - "tabulate[widechars] >= 0.10.0", + "tabulate[widechars] ~= 0.10.0", ], extras_require={ "styles": ["Pygments >= 1.6"],