From d856f3fd28163a7aa0a7e1faf0425abe76260e0b Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Wed, 17 Jan 2024 23:31:16 +0100 Subject: [PATCH] Pin Urwid to 2.4.2 due to rendering bug in 2.4.3 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e57c528..5e16086 100644 --- a/setup.py +++ b/setup.py @@ -30,6 +30,6 @@ setuptools.setup( entry_points= { 'console_scripts': ['nomadnet=nomadnet.nomadnet:main'] }, - install_requires=["rns>=0.7.0", "lxmf>=0.3.9", "urwid>=2.4.2", "qrcode"], + install_requires=["rns>=0.7.0", "lxmf>=0.3.9", "urwid==2.4.2", "qrcode"], python_requires=">=3.6", )