From b0bfa5c37bf4c9276d39da9c50a208ab532470f6 Mon Sep 17 00:00:00 2001
From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Wed, 22 Sep 2010 00:08:08 -0700
Subject: [PATCH] setup: raise minimum required version of pycryptopp, even on
 non-x86/amd64 platforms, to v0.5.14 of pycryptopp

---
 _auto_deps.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/_auto_deps.py b/_auto_deps.py
index 619da5dc..d5711450 100644
--- a/_auto_deps.py
+++ b/_auto_deps.py
@@ -34,7 +34,10 @@ if platform.machine().lower() in ['i386', 'x86_64', 'amd64', '']:
     # or amd64 machine.
     install_requires.append("pycryptopp >= 0.5.20")
 else:
-    install_requires.append("pycryptopp >= 0.5")
+    # pycryptopp v0.5.13 had a new bundled version of Crypto++
+    # (v5.6.0) and a new bundled version of setuptools (although that
+    # shouldn't make any different to users of pycryptopp).
+    install_requires.append("pycryptopp >= 0.5.14")
 
 
 # Sqlite comes built into Python >= 2.5, and is provided by the "pysqlite"
-- 
2.45.2