- Clone this repo.
- Run
bazel build --nobuild //...
- See error.
Note: Run bazel clean --expunge
between things.
Turns out the bug is jupyter/qtconsole#529 and the fix is https://github.com/jupyter/qtconsole/commit/8179ac8c696db2b3ea4df59f44095280a1a059ff.
- Edit
requirements.in
to useqtconsole == 5.3.1
(or another version). - Run
source update_reqs.sh
. - Run
bazel build --nobuild //...
and see if the error happens. Forqtconsole >= 5.3.1
, no error!
Might be easier to run:
source update_reqs.sh && bazel clean --expunge && bazel build --nobuild //...