Skip to content

Commit 47a04f5

Browse files
authored
Fix #2262: Clone bikeshed and install it (#2263)
As a workaround, clone the bikeshed repo and install bikeshed from the repo. Ideally, want just want to use the version with pip3 instead of cloning the current version of bikeshed, but that's producing unexpected errors. We'll do this for now and recheck at some later date when bikeshed is updated and revert to the old version.
1 parent 90f6be7 commit 47a04f5

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.travis.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ python:
55

66
install:
77
# Setup bikeshed. See https://tabatkins.github.io/bikeshed/#install-final
8-
- pip3 install bikeshed && bikeshed update
8+
# - pip3 install bikeshed && bikeshed update
9+
# Or do a clone. The above method is preferred, but see issue #2262.
10+
- git clone https://github.com/tabatkins/bikeshed.git
11+
- (cd bikeshed; pip3 install -e .)
12+
- bikeshed update
13+
- bikeshed --version
914

1015
script:
1116
- bash ./compile.sh

0 commit comments

Comments
 (0)