Skip to content

Commit 3fda206

Browse files
authored
Travis py33 (#69)
Fix Travis tests for Python 3.3 Failure was caused by installing batchspawner too early, resulting in current version Jupyterhub libraries being installed by pip before the checked-out version could be installed.
1 parent 87e2bd2 commit 3fda206

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ before_install:
2828
install:
2929
# Don't let requirements pull in tornado 5 yet except for jupyterhub master
3030
- if [ $JHUB_VER != "master" ]; then pip install "tornado<5.0"; fi
31-
- pip install --pre -f travis-wheels/wheelhouse -r jupyterhub/dev-requirements.txt .
31+
- pip install --pre -f travis-wheels/wheelhouse -r jupyterhub/dev-requirements.txt
3232
- pip install --pre -e jupyterhub
33+
3334
script:
3435
- travis_retry py.test --lf --cov batchspawner batchspawner/tests -v
3536
#after_success:

0 commit comments

Comments
 (0)