Skip to content

Commit c6faa5c

Browse files
authored
Uninstall nbclassic on Binder so Notebook v7 can load (#6505)
* Try force reinstalling on Binder * uninstall nbclassic * Update postBuild * Add comment about uninstall nbclassic
1 parent b5a2e6d commit c6faa5c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

binder/postBuild

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
#!/bin/bash
22
set -euo pipefail
33

4-
python -m pip install -e .
4+
python -m pip install -e . --force-reinstall
5+
6+
# TODO: remove when it's possible to install nbclassic next to Notebook v7
7+
# without nbclassic shadowing the v7 endpoints
8+
python -m pip uninstall nbclassic -y
9+
510
jlpm && jlpm run build
611
jlpm run develop

0 commit comments

Comments
 (0)