-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into py3638build
- Loading branch information
Showing
12 changed files
with
94 additions
and
55 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 |
---|---|---|
|
@@ -176,3 +176,4 @@ rust/perspective-vieux/pkg | |
|
||
rust/perspective-vieux/target | ||
rust/perspective-vieux/target2 | ||
.emsdk |
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 |
---|---|---|
|
@@ -6,21 +6,9 @@ python3 -m pip install -U perspective-python | |
|
||
export NODE_OPTIONS=--max-old-space-size=32768 | ||
|
||
EXTENSIONS=" | ||
@jupyter-widgets/[email protected] | ||
@finos/perspective-jupyterlab | ||
@jupyter-voila/[email protected] | ||
" | ||
EXTENSIONS="@jupyter-widgets/jupyterlab-manager @finos/perspective-jupyterlab" | ||
|
||
|
||
until jupyter labextension install $EXTENSIONS --no-build | ||
do | ||
echo "Extension failed to install" | ||
done | ||
|
||
until jupyter lab build --dev-build=False --minimize=False | ||
do | ||
echo "Extension failed to install" | ||
done | ||
|
||
jupyter labextension install $EXTENSIONS --no-build | ||
jupyter lab build --dev-build=False --minimize=False | ||
jupyter serverextension enable --py jupyterlab |
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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
ipywidgets==7.5.1 | ||
jupyterlab==2.2.8 | ||
jupyterlab==3.0.9 | ||
pandas==0.25.3 | ||
pyarrow==2.0.0 | ||
voila==0.2.3 | ||
pyarrow==3.0.0 |
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
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/****************************************************************************** | ||
* | ||
* Copyright (c) 2017, the Perspective Authors. | ||
* | ||
* This file is part of the Perspective library, distributed under the terms of | ||
* the Apache License 2.0. The full license can be found in the LICENSE file. | ||
* | ||
*/ | ||
|
||
const {execute_throw} = require("./script_utils.js"); | ||
const path = require("path"); | ||
|
||
try { | ||
const cwd = process.cwd(); | ||
const cmd = process.argv.slice(2).join(" "); | ||
const emsdkdir = path.join(__dirname, "..", ".emsdk"); | ||
execute_throw`cd ${emsdkdir} && . ./emsdk_env.sh && cd ${cwd} && ${cmd}`; | ||
} catch (e) { | ||
console.log(e.message); | ||
process.exit(1); | ||
} |
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