Skip to content
Open
Show file tree
Hide file tree
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
11 changes: 7 additions & 4 deletions azure-pipelines.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,12 @@ stages:
displayName: 'Test Formating'
condition: eq(variables['python.version'], '3.8')

- task: NodeTool@0
- task: UseNode@1
inputs:
versionSpec: '18.x'
version: '20.x'
- script: yarn cache clean
displayName: 'Clear yarn cache'

- script: jlpm
displayName: 'Install labextension dependencies'
env:
Expand Down Expand Up @@ -103,9 +106,9 @@ stages:
- script: 'pip install twine build setuptools setuptools_scm jupyter-packaging==0.10.6 jupyterlab==3.6.5'
displayName: 'Install twine/build'

- task: NodeTool@0
- task: UseNode@1
inputs:
versionSpec: '18.x'
version: '20.x'
- script: |
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
jlpm
Expand Down
9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tiledb-inc/pybabylonjs",
"version": "1.0.6",
"version": "2.0.0-alpha.2",
"description": "BabylonJS widget",
"keywords": [
"jupyter",
Expand Down Expand Up @@ -58,7 +58,9 @@
"dependencies": {
"@jupyter-widgets/base": "^2 || ^3 || ^4 || ^5 || ^6",
"@jupyterlab/application": "^3 || ^4",
"@tiledb-inc/viz-core": "^1.0.3-alpha.9"
"@tiledb-inc/tiledb-cloud": "^2.0.0-alpha.4",
"@tiledb-inc/viz-core": "^2.0.0-alpha.8",
"paralleljs": "https://github.com/TileDB-Inc/parallel.js.git"
},
"devDependencies": {
"@jupyterlab/builder": "^3 || ^4",
Expand Down Expand Up @@ -86,9 +88,6 @@
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4"
},
"resolutions": {
"capnp-ts": "0.4.0"
},
"jupyterlab": {
"extension": "lib/plugin",
"outputDir": "pybabylonjs/labextension",
Expand Down
6 changes: 4 additions & 2 deletions pybabylonjs/args.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
"z_scale": None,
"rgb_max": None,
"bbox": None,
"name_space": None,
"workspace": None,
"teamspace": None,
"group_name": None,
"array_name": None,
"token": None,
Expand All @@ -44,7 +45,8 @@
"engine_api": None,
"width": None,
"height": None,
"name_space": None,
"workspace": None,
"teamspace": None,
"array_name": None,
"group_name": None,
"geometry_array_names": None,
Expand Down
6 changes: 4 additions & 2 deletions src/widget.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ export class BabylonPointCloudView extends BabylonBaseView {
//pointShift: this.values.point_shift,
rgbMax: this.values.rgb_max,
bbox: this.values.bbox,
namespace: this.values.name_space,
workspace: this.values.workspace,
teamspace: this.values.teamspace,
arrayName: this.values.array_name,
groupName: this.values.group_name,
tiledbEnv: this.values.tiledb_env,
Expand Down Expand Up @@ -164,7 +165,8 @@ export class BabylonTileImageView extends BabylonBaseView {
render() {
this.visualization = new TileDBTileImageVisualization({
engineAPI: this.values.engine_api,
namespace: this.values.name_space,
workspace: this.values.workspace,
teamspace: this.values.teamspace,
arrayID: this.values.array_name,
groupID: this.values.group_name,
geometryArrayID: this.values.geometry_array_names,
Expand Down
Loading
Loading