From 3531912991405d5a0ab713417003d63c2253fc81 Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Sat, 14 Nov 2020 12:29:32 -0500 Subject: [PATCH] Fix version of cryptography to v3.1.1 for Travis CI PyPy3.5 runner (#322) --- tox.ini | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tox.ini b/tox.ini index faaf037c..b8e564ec 100644 --- a/tox.ini +++ b/tox.ini @@ -88,7 +88,10 @@ commands = deps= -r{toxinidir}/requirements.txt -r{toxinidir}/dev-requirements.txt +# Last supported cryptography version that can link against +# OpenSSL v1.0.2 (which pypy35 uses) is 3.1.1 commands = + pip install --upgrade cryptography==3.1.1 python setup.py compile_catalog coverage run --parallel -m pytest {posargs} flake8 . --count --show-source --statistics