Skip to content

Commit d648e68

Browse files
committed
Updated version and added zip support
1 parent 2196ac1 commit d648e68

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "vitessce"
7-
version = "3.6.9"
7+
version = "3.7.1"
88
authors = [
99
{ name="Mark Keller", email="[email protected]" },
1010
]

src/vitessce/constants.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ class FileType(DocEnum):
163163
"""
164164
ANNDATA_ZARR = "anndata.zarr", "Joint file type for AnnData objects"
165165
SPATIALDATA_ZARR = "spatialdata.zarr", "Joint file type for SpatialData objects"
166+
SPATIALDATA_ZARR_ZIP = "spatialdata.zarr.zip", "Joint file type for SpatialData objects in a Zarr directory store that has been zipped"
166167
ANNDATA_H5AD = "anndata.h5ad", "Joint file type for AnnData objects"
167168
ANNDATA_ZARR_ZIP = "anndata.zarr.zip", "Joint file type for AnnData object in a Zarr directory store that has been zipped"
168169
OBS_EMBEDDING_CSV = 'obsEmbedding.csv', "File type for obsEmbedding values stored in a CSV file"

src/vitessce/widget.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ class VitessceWidget(anywidget.AnyWidget):
631631

632632
next_port = DEFAULT_PORT
633633

634-
js_package_version = Unicode('3.6.11').tag(sync=True)
634+
js_package_version = Unicode('3.6.13').tag(sync=True)
635635
js_dev_mode = Bool(False).tag(sync=True)
636636
custom_js_url = Unicode('').tag(sync=True)
637637
plugin_esm = List(trait=Unicode(''), default_value=[]).tag(sync=True)
@@ -644,7 +644,7 @@ class VitessceWidget(anywidget.AnyWidget):
644644

645645
store_urls = List(trait=Unicode(''), default_value=[]).tag(sync=True)
646646

647-
def __init__(self, config, height=600, theme='auto', uid=None, port=None, proxy=False, js_package_version='3.6.11', js_dev_mode=False, custom_js_url='', plugins=None, remount_on_uid_change=True, prefer_local=True, invoke_timeout=300000, invoke_batched=True, page_mode=False, page_esm=None, prevent_scroll=True):
647+
def __init__(self, config, height=600, theme='auto', uid=None, port=None, proxy=False, js_package_version='3.6.13', js_dev_mode=False, custom_js_url='', plugins=None, remount_on_uid_change=True, prefer_local=True, invoke_timeout=300000, invoke_batched=True, page_mode=False, page_esm=None, prevent_scroll=True):
648648
"""
649649
Construct a new Vitessce widget.
650650

0 commit comments

Comments
 (0)