Skip to content

Commit

Permalink
Merge pull request #260 from NeurodataWithoutBorders/relax_ipywidgets…
Browse files Browse the repository at this point in the history
…_dep

Relax upper bound on ipywidgets
  • Loading branch information
CodyCBakerPhD committed Feb 1, 2023
2 parents 739d035 + b2a8c3f commit e4e5479
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
# v0.10.1

* Added a trialized widget for TimeSeries. [PR #232](https://github.com/NeurodataWithoutBorders/nwbwidgets/pull/232)
* Loosened upper bound version on `ipywidgets`. [PR #260](https://github.com/NeurodataWithoutBorders/nwbwidgets/pull/260)
2 changes: 1 addition & 1 deletion nwbwidgets/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def lazy_show_over_data(list_, func_, labels=None, style: GroupingWidget = widge
children = [vis2widget(func_(list_[0]))] + [widgets.HTML("Rendering...") for _ in range(len(list_) - 1)]
out = style(children=children)
if labels is not None:
[out.set_title(i, label) for i, label in enumerate(labels)]
[out.set_title(i, str(label)) for i, label in enumerate(labels)]

def on_selected_index(change):
if change.new is not None and isinstance(change.owner.children[change.new], widgets.HTML):
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pynwb
ipympl
ipydatagrid
ipyvolume>=0.6.0a10
ipywidgets>=7.4.0, <8.0.0
ipywidgets>=8.0.0
plotly
tqdm>=4.36.0
zarr
Expand Down

0 comments on commit e4e5479

Please sign in to comment.