Skip to content

Commit b0473c1

Browse files
committed
Use my fork to build 3.6-dev
hg.python.org has moved on to 3.6-dev now, so we need a new build definition
1 parent 793f5dc commit b0473c1

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.travis.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,21 @@ language: python
22

33
env:
44
global:
5-
- VERSION='3.5-dev'
5+
- VERSION='3.6-dev'
66
- ALIAS='nightly'
77
- INSTALL_DEST=/opt/python
88
- PACKAGES='pip numpy nose pytest mock wheel'
99

1010
install:
1111
- pushd /opt/pyenv/
12-
- sudo git checkout master
13-
- sudo git pull
12+
- sudo git remote add fork https://github.com/BanzaiMan/pyenv.git
13+
- sudo git fetch fork
14+
- sudo git checkout fork/ha-feature-py36
1415
- popd
1516

1617
script:
1718
- pushd $HOME
18-
- sudo env PYTHON_BUILD_ROOT=/opt/pyenv/plugins/python-build python-build $VERSION $INSTALL_DEST/$VERSION
19+
- sudo env PYTHON_BUILD_ROOT=/opt/pyenv/plugins/python-build /opt/pyenv/plugins/python-build/bin/python-build $VERSION $INSTALL_DEST/$VERSION
1920
- sudo ln -s $INSTALL_DEST/$VERSION $INSTALL_DEST/$ALIAS
2021
- virtualenv --distribute --python=$INSTALL_DEST/$VERSION/bin/python /home/travis/virtualenv/python$VERSION
2122
- ln -s $HOME/virtualenv/python$VERSION $HOME/virtualenv/python$ALIAS

0 commit comments

Comments
 (0)