Skip to content

Commit 393d10c

Browse files
authored
Merge pull request #124 from willingc/fix-attrs
Fix attrs/jsonschema breakage
2 parents a4d1b34 + a0dae57 commit 393d10c

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

.travis.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ language: python
33
sudo: false
44
python:
55
- 3.7-dev
6-
- 3.6
6+
- 3.6.6
77
- 3.5
88
- 3.4
99
env:
@@ -22,20 +22,14 @@ matrix:
2222

2323
before_install:
2424
- npm install -g configurable-http-proxy
25-
- git clone --quiet --depth 1 https://github.com/minrk/travis-wheels travis-wheels
2625
- git clone --quiet --branch $JHUB_VER https://github.com/jupyter/jupyterhub.git jupyterhub
26+
- pip install --upgrade pip
2727
install:
2828
# Don't let requirements pull in tornado 5 yet except for jupyterhub master
2929
- if [ $JHUB_VER != "master" -a $JHUB_VER != "0.9.1" ]; then pip install "tornado<5.0"; fi
30-
- pip install jsonschema!=3.0.0a1 # issue #110, remove later
31-
- pip install --pre -f travis-wheels/wheelhouse -r jupyterhub/dev-requirements.txt
30+
- pip install attrs>17.4.0
31+
- pip install --pre -r jupyterhub/dev-requirements.txt
3232
- pip install --pre -e jupyterhub
3333

3434
script:
3535
- travis_retry py.test --lf --cov batchspawner batchspawner/tests -v
36-
#after_success:
37-
# - codecov
38-
# matrix:
39-
# include:
40-
# - python: 3.5
41-
# env: JUPYTERHUB_TEST_SUBDOMAIN_HOST=http://127.0.0.1.xip.io:8000

0 commit comments

Comments
 (0)