diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2016-02-27 17:21:52 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2016-02-27 17:21:52 -0800 |
commit | d6b38c9c529f1f401ce4f6bcf13bebcc73e063a0 (patch) | |
tree | 09515f8484fdbf98d1cc7b851384d39fb2b9ec17 | |
parent | 4968eaf8c92c0b59037444dcd4ce08a71e203ec2 (diff) | |
parent | 6e1b0e74ddec41a95e0db4c0a60d81176e9de429 (diff) |
Merge branch '1.13' into 1.14
-rw-r--r-- | setup.py | 2 | ||||
-rw-r--r-- | sites/www/changelog.rst | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -41,7 +41,7 @@ try: from setuptools import setup kw = { 'install_requires': [ - 'pycrypto >= 2.1, != 2.4', + 'pycrypto>=2.1,!=2.4', 'ecdsa', ], } diff --git a/sites/www/changelog.rst b/sites/www/changelog.rst index bad37089..be493f02 100644 --- a/sites/www/changelog.rst +++ b/sites/www/changelog.rst @@ -2,6 +2,9 @@ Changelog ========= +* :support:`697` Remove whitespace in our ``setup.py``'s ``install_requires`` + as it triggers occasional bugs in some versions of ``setuptools``. Thanks to + Justin Lecher for catch & original patch. * :bug:`499` Strip trailing/leading whitespace from lines when parsing SSH config files - this brings things in line with OpenSSH behavior. Thanks to Alfredo Esteban for the original report and Nick Pillitteri for the patch. |