From 1c51ae25887f2dc3168a38d1f0042363cd7ac1e3 Mon Sep 17 00:00:00 2001 From: Zach Shepherd Date: Mon, 27 Mar 2017 13:58:17 -0700 Subject: [PATCH] Pin python-augeas version to avoid error with 1.0.0 (#4422) When running ./tools/venv.sh with 1.0.0 (now the latest version), I encountered: build/temp.linux-x86_64-2.7/augeas.c:434:35: fatal error: augeas.h: No such file or directory --- certbot-apache/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot-apache/setup.py b/certbot-apache/setup.py index db8cb11db..cb35d2686 100644 --- a/certbot-apache/setup.py +++ b/certbot-apache/setup.py @@ -11,7 +11,7 @@ install_requires = [ 'acme=={0}'.format(version), 'certbot=={0}'.format(version), 'mock', - 'python-augeas', + 'python-augeas<=0.5.0', # For pkg_resources. >=1.0 so pip resolves it to a version cryptography # will tolerate; see #2599: 'setuptools>=1.0',