From 1cd790475414e1e1a3ca641bc517d36fef7ef5a3 Mon Sep 17 00:00:00 2001 From: Ryan Gonzalez Date: Thu, 18 Dec 2014 12:49:53 -0600 Subject: [PATCH] Fix Travis with PyPy (again) --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 374a48f..3103c5c 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -pypy_url=http://buildbot.pypy.org/nightly/trunk/pypy-c-jit-latest-linux64.tar.bz2 +pypy_url=https://bitbucket.org/pypy/pypy/downloads/pypy-2.3.1-linux64.tar.bz2 pip_url=https://bootstrap.pypa.io/get-pip.py python=python pip=pip @@ -73,8 +73,8 @@ r: d tox diff python: ifeq ($(bad_pypy),1) - # Due to stupid PyPy 2.4 bugs, a custom version needs to be downloaded - curl $(pypy_url) -o pypy.tbz2 + # Due to stupid PyPy 2.4 bugs, an older PyPy 2.3 needs to be downloaded + curl -L $(pypy_url) -o pypy.tbz2 tar xf pypy.tbz2 ln -sf `pwd`/pypy-*/bin/pypy $(python) curl $(pip_url) | $(python)