From 2e4514aa08283aa37514cacdff2ed93de241008d Mon Sep 17 00:00:00 2001 From: Daniel Frei Date: Wed, 22 Jun 2016 16:12:38 -0700 Subject: [PATCH 1/2] Pin cryptography so we can build on lucid The latest release of cryptography does not support OpenSSL 0.9.8, which is the latest version of lucid. This will pin old cryptography for testing purposes. --- requirements-dev.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements-dev.txt b/requirements-dev.txt index a283859a..239ba081 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -4,3 +4,4 @@ httpretty==0.8.14 mock<1.1.0 pre-commit pytest +cryptography==1.3.4 From 0f23abb6b760dbbe09f4c93f691ca291bc2bbef6 Mon Sep 17 00:00:00 2001 From: Daniel Frei Date: Wed, 22 Jun 2016 16:13:14 -0700 Subject: [PATCH 2/2] Prevent testenv from installing too-new twisted in py26 --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index fca22f35..ae08e920 100644 --- a/tox.ini +++ b/tox.ini @@ -3,6 +3,7 @@ envlist = py26, py27, py34, flake8 [testenv] deps = + py26: twisted==15.4 -rrequirements-dev.txt commands = py.test --capture=no {posargs:tests}