From ca64a57c77a543bb4cfcd317eb3825edf78187a0 Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Wed, 23 Nov 2016 01:44:49 +0300 Subject: [PATCH] Remove pypy3 from Travis The new version of pip won't support Python 3.2 and we will need to tweak our .travis.yml and tox.ini in order to run tests on PyPy 3. However, since we already removed Python 3.2 from Travis, I decided to remove PyPy 3 as well (it still targets Python 3.2) --- .travis.yml | 1 - tox.ini | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5bb44f17..35bac5a5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,6 @@ env: - TOXENV=py34 - TOXENV=py35 - TOXENV=pypy - - TOXENV=pypy3 install: pip install tox script: tox cache: diff --git a/tox.ini b/tox.ini index f95c0c71..45ad867b 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py26, py27, py34, py35, pypy, pypy3 +envlist = py26, py27, py34, py35, pypy skipsdist = True [testenv] @@ -8,5 +8,5 @@ commands = py.test {posargs:tests/} --assert=plain deps = -rrequirements_test.txt py26: unittest2 - py2{6,7},pypy,py32,pypy3: mock + py2{6,7},pypy: mock py3{3,4}: aiohttp