Skip to content

Commit 83b1411

Browse files
authored
bump js 3.3.3 (#317)
* Bump js version * Release
1 parent 5a850a5 commit 83b1411

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pyproject.toml

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

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

vitessce/widget.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -327,11 +327,11 @@ class VitessceWidget(anywidget.AnyWidget):
327327

328328
next_port = DEFAULT_PORT
329329

330-
js_package_version = Unicode('3.2.1').tag(sync=True)
330+
js_package_version = Unicode('3.3.3').tag(sync=True)
331331
js_dev_mode = Bool(False).tag(sync=True)
332332
custom_js_url = Unicode('').tag(sync=True)
333333

334-
def __init__(self, config, height=600, theme='auto', uid=None, port=None, proxy=False, js_package_version='3.2.1', js_dev_mode=False, custom_js_url=''):
334+
def __init__(self, config, height=600, theme='auto', uid=None, port=None, proxy=False, js_package_version='3.3.3', js_dev_mode=False, custom_js_url=''):
335335
"""
336336
Construct a new Vitessce widget.
337337
@@ -399,7 +399,7 @@ def close(self):
399399
# Launch Vitessce using plain HTML representation (no ipywidgets)
400400

401401

402-
def ipython_display(config, height=600, theme='auto', base_url=None, host_name=None, uid=None, port=None, proxy=False, js_package_version='3.2.1', js_dev_mode=False, custom_js_url=''):
402+
def ipython_display(config, height=600, theme='auto', base_url=None, host_name=None, uid=None, port=None, proxy=False, js_package_version='3.3.3', js_dev_mode=False, custom_js_url=''):
403403
from IPython.display import display, HTML
404404
uid_str = "vitessce" + get_uid_str(uid)
405405

0 commit comments

Comments
 (0)