Skip to content

Commit 796e650

Browse files
committed
pin attrs for jsonschema
jsonschema requires attrs 17.4, but pip doesn’t seem to pull it in
1 parent 4747946 commit 796e650

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,12 @@ 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
2726
install:
2827
# Don't let requirements pull in tornado 5 yet except for jupyterhub master
2928
- 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
29+
- pip install attrs>=17.4.0 # pip isn't resolving jsonschema's requirements correctly
30+
- pip install --pre -r jupyterhub/dev-requirements.txt
3231
- pip install --pre -e jupyterhub
3332

3433
script:

0 commit comments

Comments
 (0)