Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Uninstall nbclassic on Binder so Notebook v7 can load #6505

Merged
merged 4 commits into from
Aug 4, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion binder/postBuild
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
#!/bin/bash
set -euo pipefail

python -m pip install -e .
python -m pip install -e . --force-reinstall

# TODO: remove when it's possible to install nbclassic next to Notebook v7
# without nbclassic shadowing the v7 endpoints
python -m pip uninstall nbclassic -y

jlpm && jlpm run build
jlpm run develop