summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpazz <patricktotzke@gmail.com>2011-08-13 16:34:43 +0100
committerpazz <patricktotzke@gmail.com>2011-08-13 16:34:43 +0100
commit435cc89a5bf33c5a3687ea593b8b2084f0951a8d (patch)
tree490e89608914c915c395bb318612cdfe9f6b3db6
parentd3e8cad36d766e0e1a20faa21e15c9242a0de283 (diff)
we need urwid 1.0 for watch_pipe() in mainloop.
-rw-r--r--INSTALL4
-rwxr-xr-xsetup.py2
2 files changed, 2 insertions, 4 deletions
diff --git a/INSTALL b/INSTALL
index 265eff3f..4b251725 100644
--- a/INSTALL
+++ b/INSTALL
@@ -4,11 +4,9 @@ INSTALL
Alot depends on development versions of notmuch and urwid.
-1. make sure you have urwid V>= 0.9.9.1
+1. make sure you have urwid V>= 1.0
-------------------------------------
-on debian/ubuntu: aptitude install python-urwid
-or from git:
> git clone http://github.com/wardi/urwid
> cd urwid
> sudo python setup.py install
diff --git a/setup.py b/setup.py
index f40d8e77..816e3218 100755
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@ setup(name='alot',
packages=['alot'],
scripts=['bin/alot'],
license=alot.__copyright__,
- requires=['notmuch (>=0.7.1)', 'argparse', 'urwid (>=0.9.9.1)'],
+ requires=['notmuch (>=0.7.1)', 'argparse', 'urwid (>=1.0)'],
provides='alot'
)