Skip to content

Commit

Permalink
Bump panel.js version to 1.3.0a9
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Oct 11, 2023
1 parent cd605f5 commit 302a6ae
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions panel/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion panel/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@holoviz/panel",
"version": "1.3.0-a.8",
"version": "1.3.0-a.9",
"description": "The powerful data exploration & web app framework for Python.",
"license": "BSD-3-Clause",
"repository": {
Expand Down
3 changes: 2 additions & 1 deletion panel/tests/widgets/test_chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from panel.layout import Column, Row, Tabs
from panel.pane.image import SVG, Image
from panel.pane.markup import HTML, Markdown
from panel.tests.util import mpl_figure
from panel.tests.util import mpl_available, mpl_figure
from panel.widgets.button import Button
from panel.widgets.chat import (
ChatEntry, ChatFeed, ChatInterface, ChatReactionIcons, _FileInputMessage,
Expand Down Expand Up @@ -227,6 +227,7 @@ def test_does_not_turn_widget_into_str(self):
entry = ChatEntry(value=button)
assert entry.value == button

@mpl_available
def test_can_display_any_python_object_that_panel_can_display(self):
# For example matplotlib figures
ChatEntry(value=mpl_figure())
Expand Down

0 comments on commit 302a6ae

Please sign in to comment.