Skip to content

Commit

Permalink
Fix pypy3.
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Sep 25, 2018
1 parent bed2dfb commit a3490e5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Expand Up @@ -74,10 +74,10 @@ install:
(cd $HOME
wget https://bitbucket.org/pypy/pypy/downloads/pypy3-v6.0.0-linux64.tar.bz2
tar xf pypy3-*.tar.bz2
pypy3-*/bin/pypy -m ensurepip
pypy3-*/bin/pypy -m pip install -U virtualenv)
pypy3-*/bin/pypy3 -m ensurepip
pypy3-*/bin/pypy3 -m pip install -U virtualenv)
export PATH=$(echo $HOME/pypy3-*/bin):$PATH
export TOXPYTHON=$(echo $HOME/pypy3-*/bin/pypy)
export TOXPYTHON=$(echo $HOME/pypy3-*/bin/pypy3)
fi
set +x
script:
Expand Down
6 changes: 3 additions & 3 deletions ci/templates/.travis.yml
Expand Up @@ -43,10 +43,10 @@ install:
(cd $HOME
wget https://bitbucket.org/pypy/pypy/downloads/pypy3-v6.0.0-linux64.tar.bz2
tar xf pypy3-*.tar.bz2
pypy3-*/bin/pypy -m ensurepip
pypy3-*/bin/pypy -m pip install -U virtualenv)
pypy3-*/bin/pypy3 -m ensurepip
pypy3-*/bin/pypy3 -m pip install -U virtualenv)
export PATH=$(echo $HOME/pypy3-*/bin):$PATH
export TOXPYTHON=$(echo $HOME/pypy3-*/bin/pypy)
export TOXPYTHON=$(echo $HOME/pypy3-*/bin/pypy3)
fi
set +x
script:
Expand Down

0 comments on commit a3490e5

Please sign in to comment.