From dbe67437428da79506f9d08050a81f8b28ac4699 Mon Sep 17 00:00:00 2001 From: IWASE Yusuke Date: Mon, 9 May 2016 15:53:32 +0900 Subject: [PATCH] tox: Upgrade PyPy version to 2.6 Recently, Paramiko updates the requirements to 'cryptography>=1.1', cryptography 1.0 is not compatible with PyPy < 2.6, but PyPy version of Travis-CI is older than 2.6. So this causes CI test error. This patch upgrades PyPy interpreter version to 2.6 in tox environment. Signed-off-by: IWASE Yusuke Signed-off-by: FUJITA Tomonori --- .travis.yml | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 99857d09..7e54c631 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,7 @@ python: env: - TOX_ENV=py27 - TOX_ENV=py34 - - TOX_ENV=pypy + - TOX_ENV=pypy26 - TOX_ENV=pep8 install: diff --git a/tox.ini b/tox.ini index b0cbdd13..13063520 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27,py34,pypy,pep8 +envlist = py27,py34,pypy26,pep8 [testenv] deps = -U