summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2016-02-27 17:22:46 -0800
committerJeff Forcier <jeff@bitprophet.org>2016-02-27 17:22:46 -0800
commit74ba0149347bfeb2f83ddd46672a2912aea51f23 (patch)
treef3babd4fe62ec2facfe27015cf0532f866d9d044
parente3b11da1ff61655838e7dd75735685adfa30bc64 (diff)
parent57d4802a3d72adb84b856d0a9c15e35303308589 (diff)
Merge branch '1.16'
-rw-r--r--setup.py4
-rw-r--r--sites/www/changelog.rst3
2 files changed, 5 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 629c28fd..f9c4b4fe 100644
--- a/setup.py
+++ b/setup.py
@@ -41,8 +41,8 @@ try:
from setuptools import setup
kw = {
'install_requires': [
- 'pycrypto >= 2.1, != 2.4',
- 'ecdsa >= 0.11',
+ 'pycrypto>=2.1,!=2.4',
+ 'ecdsa>=0.11',
],
}
except ImportError:
diff --git a/sites/www/changelog.rst b/sites/www/changelog.rst
index f87a6f83..6b30ff68 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.