From 61fa4bc0b4fde96e24a96ce18c68dd924e1ec272 Mon Sep 17 00:00:00 2001 From: Margriet Groenendijk Date: Mon, 3 Apr 2023 11:53:04 +0100 Subject: [PATCH] updated to viz-core 0.1.2-beta.11 --- package.json | 2 +- pybabylonjs/args.py | 6 +----- pybabylonjs/babylonjs.py | 2 +- pybabylonjs/data.py | 2 +- pybabylonjs/show.py | 2 +- src/widget.ts | 2 +- yarn.lock | 8 ++++---- 7 files changed, 10 insertions(+), 14 deletions(-) diff --git a/package.json b/package.json index f698066..5f83409 100644 --- a/package.json +++ b/package.json @@ -58,7 +58,7 @@ "dependencies": { "@jupyter-widgets/base": "^1.1.10 || ^2 || ^3 || ^4", "@jupyterlab/application": "^3.4.5", - "@tiledb-inc/viz-core": "0.1.2-beta.8" + "@tiledb-inc/viz-core": "0.1.2-beta.11" }, "devDependencies": { "@jupyterlab/builder": "^3.1.0", diff --git a/pybabylonjs/args.py b/pybabylonjs/args.py index 85f11ae..71a5386 100644 --- a/pybabylonjs/args.py +++ b/pybabylonjs/args.py @@ -1,4 +1,4 @@ -# Copyright 2022 TileDB Inc. +# Copyright 2023 TileDB Inc. # Licensed under the MIT License. """Functions to format and check the data and keyword arguments for each data source and visualization mode.""" @@ -66,10 +66,6 @@ def check_point_cloud_args(mode, point_cloud_args_in): ) if not "bbox" in point_cloud_args_in: raise ValueError("The bbox is not specified") - elif mode == "gltf": - raise ValueError("This mode will be implemented soon") - if not "gltf_data" in point_cloud_args_in: - raise ValueError("gltf_data is not specified") point_cloud_args = {} for key in POINT_CLOUD_ARGS_DEFAULTS.keys(): diff --git a/pybabylonjs/babylonjs.py b/pybabylonjs/babylonjs.py index 4a72c16..0882bee 100644 --- a/pybabylonjs/babylonjs.py +++ b/pybabylonjs/babylonjs.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # coding: utf-8 -# Copyright 2022 TileDB Inc. +# Copyright 2023 TileDB Inc. # Licensed under the MIT License. """ diff --git a/pybabylonjs/data.py b/pybabylonjs/data.py index ecc70d6..edb87e8 100644 --- a/pybabylonjs/data.py +++ b/pybabylonjs/data.py @@ -1,4 +1,4 @@ -# Copyright 2022 TileDB Inc. +# Copyright 2023 TileDB Inc. # Licensed under the MIT License. """Functions to format data from the arrays to be used in the visualization.""" diff --git a/pybabylonjs/show.py b/pybabylonjs/show.py index 29d38ac..078b81a 100644 --- a/pybabylonjs/show.py +++ b/pybabylonjs/show.py @@ -1,4 +1,4 @@ -# Copyright 2022 TileDB Inc. +# Copyright 2023 TileDB Inc. # Licensed under the MIT License. """Classes for setting up the visualization.""" diff --git a/src/widget.ts b/src/widget.ts index 954c6b6..3e0d6f0 100644 --- a/src/widget.ts +++ b/src/widget.ts @@ -1,4 +1,4 @@ -// Copyright 2022 TileDB Inc. +// Copyright 2023 TileDB Inc. // Licensed under the MIT License. import { diff --git a/yarn.lock b/yarn.lock index 9c6ed3d..b69d5a8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -806,10 +806,10 @@ paralleljs "github:SarantopoulosKon/parallel.js#node-mode-in-web-worker" save-file "^2.3.1" -"@tiledb-inc/viz-core@0.1.2-beta.8": - version "0.1.2-beta.8" - resolved "https://registry.yarnpkg.com/@tiledb-inc/viz-core/-/viz-core-0.1.2-beta.8.tgz#8509ff09b9129ed94f73dcd6d7a3ac8d29c168ac" - integrity sha512-IFfDpVVpGNQ5sVTPTu8zXMNhZyidYBnz2Syqb/SNOiNyRXq323CfLqvhfhSemQL2kiN4ZnYhsz2g3ddWGa1JZw== +"@tiledb-inc/viz-core@0.1.2-beta.11": + version "0.1.2-beta.11" + resolved "https://registry.yarnpkg.com/@tiledb-inc/viz-core/-/viz-core-0.1.2-beta.11.tgz#be8b78300ddd74c9cad48d69d165b932b6a38ed4" + integrity sha512-P4WmSrhrqoW4BCwgjk+D1Uds3DlF8Ky433N2Kuz9BKxReGHJGkmO80BtbCYL8RIJlGzX4LCZPJSnuWWrafG+Ig== dependencies: "@babylonjs/core" "^5.42.0" "@babylonjs/gui" "^5.42.0"