From 110a5147ad191feee2e6d4fbcdb8ee3d1b4b2746 Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Thu, 4 Feb 2016 18:46:57 +0100 Subject: [PATCH] always install urwid --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 94902085e..5e8176d57 100644 --- a/setup.py +++ b/setup.py @@ -63,6 +63,7 @@ setup( "Pillow>=3.0.0", "watchdog>=0.8.3", "click>=6.2", + "urwid>=1.3.1", ], extras_require={ ':sys_platform == "win32"': [ @@ -70,7 +71,6 @@ setup( "lxml==3.4.4", # there are no Windows wheels for newer versions, so we pin this. ], ':sys_platform != "win32"': [ - "urwid>=1.3.1", "lxml>=3.5.0", ], # Do not use a range operator here: https://bitbucket.org/pypa/setuptools/issues/380