Skip to content

Commit

Permalink
exit 0 if on pypy
Browse files Browse the repository at this point in the history
  • Loading branch information
scottbelden committed Feb 2, 2018
1 parent 0a22c9e commit 82ca905
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .travis_build_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

cd `dirname $0`

# Don't do anything on pypy
if [[ ${1} == *"pypy"* ]]; then
exit 0
fi

# The version comes in as something like 3.6, but we need it to be 36 for the
# path in the container so we remove the period
TRAVIS_PYTHON_VERSION=$1
Expand Down

0 comments on commit 82ca905

Please sign in to comment.