Skip to content

Commit

Permalink
fix path in container
Browse files Browse the repository at this point in the history
  • Loading branch information
scottbelden committed Feb 2, 2018
1 parent c450adf commit 479239d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .travis_build_wheel.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
#!/bin/bash

cd `dirname $0`

# 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
TRAVIS_PYTHON_VERSION=${TRAVIS_PYTHON_VERSION/.}

"/opt/python/$TRAVIS_PYTHON_VERSION/pip" install cython
"/opt/python/$TRAVIS_PYTHON_VERSION/python" setup.py bdist_wheel
"/opt/python/*${TRAVIS_PYTHON_VERSION}*m/pip" install cython
"/opt/python/*${TRAVIS_PYTHON_VERSION}*m/python" setup.py bdist_wheel

0 comments on commit 479239d

Please sign in to comment.