From 56c42beccf2cb278d2d0d4a0c54745023f9613ff Mon Sep 17 00:00:00 2001 From: Roland Walker Date: Thu, 5 Mar 2026 10:00:38 -0500 Subject: [PATCH] pin tabulate library more tightly tabulate recently pushed a breaking change on a feature bump. Let's be more conservative. Also update changelog for release. --- CHANGELOG | 7 +++++-- setup.py | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) 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"],