From 8fcdb0b061da88bfc5ee99dcfda505de7ef7aa9f Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Sat, 12 Nov 2022 09:26:31 +0100 Subject: [PATCH] Don't limit upper version on wcwidth Also it had a typo which limited it to 2.0 instead of 0.2, so this doesn't change anything. --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index bf0e741..67ddf98 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ requests>=2.13,<3.0 beautifulsoup4>=4.5.0,<5.0 -wcwidth>=0.1.7,<2.0 +wcwidth>=0.1.7 urwid>=2.0.0,<3.0 diff --git a/setup.py b/setup.py index e062dbc..632181f 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ setup( install_requires=[ "requests>=2.13,<3.0", "beautifulsoup4>=4.5.0,<5.0", - "wcwidth>=0.1.7,<2.0", + "wcwidth>=0.1.7", "urwid>=2.0.0,<3.0", ], entry_points={