# HG changeset patch # User souliane # Date 1410424731 -7200 # Node ID ba19778eabf2eb450c3a1ba2708ab2a8aa97d16d # Parent de3f1cdd5c4cfed7188ddfb0aaa64dc02189446e set the minimal version of urwid to 1.2.0 diff -r de3f1cdd5c4c -r ba19778eabf2 README --- a/README Mon Sep 08 23:40:59 2014 +0200 +++ b/README Thu Sep 11 10:38:51 2014 +0200 @@ -28,7 +28,9 @@ ** Installation ** -just type as root: +Install the dependency: urwid >= 1.2.0 + +Just type as root: $ python setup.py install ** What are the widgets provided ? ** diff -r de3f1cdd5c4c -r ba19778eabf2 setup.py --- a/setup.py Mon Sep 08 23:40:59 2014 +0200 +++ b/setup.py Thu Sep 11 10:38:51 2014 +0200 @@ -25,5 +25,5 @@ data_files=[(path.join(sys.prefix,'share/locale/fr/LC_MESSAGES'), ['i18n/fr/LC_MESSAGES/urwid_satext.mo']), ('share/doc/%s/examples' % name, glob("examples/*.py")), ('share/doc/%s' % name, ['COPYING','COPYING.LESSER','README', "CHANGELOG"])], - install_requires = ['urwid'] + install_requires=['urwid >= 1.2.0'] )