-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from miya-biz/lab4.x_squash
migrate to JupyterLab 4.x, add ui-tests
- Loading branch information
Showing
60 changed files
with
15,070 additions
and
6,918 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY | ||
_commit: v4.1.0 | ||
_src_path: https://github.com/jupyterlab/extension-template | ||
author_email: [email protected] | ||
author_name: ii masamitsu | ||
has_binder: true | ||
has_settings: true | ||
kind: frontend | ||
labextension_name: lc_multi_outputs | ||
project_short_description: Multiple outputs as tabs | ||
python_name: lc_multi_outputs | ||
repository: https://github.com/entap/lc_multi_outputs.git | ||
test: false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,5 @@ dist | |
coverage | ||
**/*.d.ts | ||
tests | ||
|
||
_temp_extension |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,5 @@ node_modules | |
**/node_modules | ||
**/lib | ||
**/package.json | ||
!/package.json | ||
lc_multi_outputs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
enableImmutableInstalls: false | ||
|
||
nodeLinker: node-modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
FROM jupyter/scipy-notebook:latest | ||
|
||
USER root | ||
|
||
### extensions for jupyter | ||
COPY . /tmp/multi_outputs | ||
RUN pip --no-cache-dir install jupyter_nbextensions_configurator \ | ||
/tmp/multi_outputs | ||
|
||
RUN jupyter labextension enable lc_multi_outputs | ||
|
||
RUN jupyter nbclassic-extension install --py jupyter_nbextensions_configurator --sys-prefix && \ | ||
jupyter nbclassic-extension enable --py jupyter_nbextensions_configurator --sys-prefix && \ | ||
jupyter nbclassic-serverextension enable --py jupyter_nbextensions_configurator --sys-prefix && \ | ||
jupyter nbclassic-extension install --py lc_multi_outputs --sys-prefix && \ | ||
jupyter nbclassic-extension enable --py lc_multi_outputs --sys-prefix && \ | ||
fix-permissions /home/$NB_USER | ||
|
||
USER $NB_USER |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.