From 4eef326d6b70c7abeada6375cb6e64e88640c4d0 Mon Sep 17 00:00:00 2001 From: Alexey Stepanov Date: Mon, 15 Jan 2024 10:39:35 +0100 Subject: [PATCH] Allow newer versions of urwid Last urwid versions are backward-compatible with 2.1.2 (but may produce "DeprecationWarning" on legacy logic) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e627c09..7807c58 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.8", "urwid==2.1.2", "qrcode"], + install_requires=["rns>=0.7.0", "lxmf>=0.3.8", "urwid>=2.1.2", "qrcode"], python_requires=">=3.6", )