Skip to content

Commit

Permalink
bump js 3.3.3 (#317)
Browse files Browse the repository at this point in the history
* Bump js version

* Release
  • Loading branch information
keller-mark authored Jan 26, 2024
1 parent 5a850a5 commit 83b1411
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "vitessce"
version = "3.2.0"
version = "3.2.1"
authors = [
{ name="Mark Keller", email="mark_keller@hms.harvard.edu" },
]
Expand Down
6 changes: 3 additions & 3 deletions vitessce/widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,11 +327,11 @@ class VitessceWidget(anywidget.AnyWidget):

next_port = DEFAULT_PORT

js_package_version = Unicode('3.2.1').tag(sync=True)
js_package_version = Unicode('3.3.3').tag(sync=True)
js_dev_mode = Bool(False).tag(sync=True)
custom_js_url = Unicode('').tag(sync=True)

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=''):
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=''):
"""
Construct a new Vitessce widget.
Expand Down Expand Up @@ -399,7 +399,7 @@ def close(self):
# Launch Vitessce using plain HTML representation (no ipywidgets)


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=''):
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=''):
from IPython.display import display, HTML
uid_str = "vitessce" + get_uid_str(uid)

Expand Down

0 comments on commit 83b1411

Please sign in to comment.