From 802795d81046aafa5ae66b415aab451cfa64e0a0 Mon Sep 17 00:00:00 2001 From: Matthias Dellweg Date: Wed, 3 Apr 2024 15:44:57 +0200 Subject: [PATCH] Add optional requirement specifier "html" back Removing such a specifier should be considered a breaking change and be postponed to the next major release, because `pip install tablib[html]` fails on this. Since there are no actual dependencies to consider, an empty list is put behind that key. fixes #588 --- AUTHORS | 1 + pyproject.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/AUTHORS b/AUTHORS index 8b2336b5..ed4eec6d 100644 --- a/AUTHORS +++ b/AUTHORS @@ -26,6 +26,7 @@ Here is a list of past and present much-appreciated contributors: Mark Walling Mathias Loesch Matthew Hegarty + Matthias Dellweg Mike Waldner Peyman Salehi Rabin Nankhwa diff --git a/pyproject.toml b/pyproject.toml index 69e34ebe..13195cb3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,6 +43,7 @@ all = [ "xlwt", ] cli = ["tabulate"] +html = [] ods = ["odfpy"] pandas = ["pandas"] xls = ["xlrd", "xlwt"]