From b1ce329e8e09955b9538a1ebf0eaaa4d987f56cc Mon Sep 17 00:00:00 2001 From: Alex Grintsvayg Date: Wed, 18 Jan 2017 16:08:27 -0500 Subject: [PATCH] need python2.7-dev always --- prebuild.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/prebuild.sh b/prebuild.sh index a0e2db799..a3f783a9c 100755 --- a/prebuild.sh +++ b/prebuild.sh @@ -40,7 +40,7 @@ fi if $LINUX; then INSTALL="$SUDO apt-get install --no-install-recommends -y" - $INSTALL build-essential libssl-dev libffi-dev libgmp3-dev + $INSTALL build-essential libssl-dev libffi-dev libgmp3-dev python2.7-dev elif $OSX && ! cmd_exists brew ; then /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" fi @@ -48,7 +48,7 @@ fi if ! cmd_exists python; then if $LINUX; then - $INSTALL python2.7 python2.7-dev + $INSTALL python2.7 elif $OSX; then brew install python fi