From 9855de91b881e66f13440a7b50225c52670e9e22 Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Sat, 27 Feb 2016 17:20:42 -0800 Subject: Remove whitespace in install_requires to avoid potential setuptools bugs Fixes #697 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9e08323d..9fa13d15 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ try: from setuptools import setup kw = { 'install_requires': [ - 'pycrypto >= 2.1, != 2.4', + 'pycrypto>=2.1,!=2.4', 'ecdsa', ], } -- cgit v1.2.3 From 6e1b0e74ddec41a95e0db4c0a60d81176e9de429 Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Sat, 27 Feb 2016 17:21:51 -0800 Subject: Changelog re #697 --- sites/www/changelog.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sites/www/changelog.rst b/sites/www/changelog.rst index 234a8c8a..2f0ce535 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. -- cgit v1.2.3