# HG changeset patch # User Goffi # Date 1457518584 -3600 # Node ID c1fbd47b53bf896388dbbb931e96be5f6be0d31f # Parent ebbdb8aea71d13055e61febca588473475e3cd71 install: minimum Twisted version is now 15.2.0 as sendmail need username argument diff -r ebbdb8aea71d -r c1fbd47b53bf setup.py --- a/setup.py Tue Mar 08 12:43:19 2016 +0100 +++ b/setup.py Wed Mar 09 11:16:24 2016 +0100 @@ -304,6 +304,6 @@ scripts=['frontends/src/jp/jp', 'frontends/src/primitivus/primitivus', ], zip_safe=False, dependency_links=['http://home.avvanta.com/%7Esteveha/pyfeed-0.7.4.tar.gz', 'http://home.avvanta.com/%7Esteveha/xe-0.7.4.tar.gz'], - install_requires=['twisted', 'wokkel >= 0.7.1', 'progressbar', 'urwid >= 1.2.0', 'urwid-satext >= 0.4.0', 'pyfeed', 'xe', 'mutagen', 'pillow', 'lxml >= 3.1.0', 'pyxdg', 'markdown', 'html2text', 'pycrypto >= 2.6.1', 'python-potr', 'PyOpenSSL'], + install_requires=['twisted >= 15.2.0', 'wokkel >= 0.7.1', 'progressbar', 'urwid >= 1.2.0', 'urwid-satext >= 0.4.0', 'pyfeed', 'xe', 'mutagen', 'pillow', 'lxml >= 3.1.0', 'pyxdg', 'markdown', 'html2text', 'pycrypto >= 2.6.1', 'python-potr', 'PyOpenSSL'], cmdclass={'install': CustomInstall}, )