Skip to content

Commit 238601b

Browse files
Merge pull request #18 from pyscript/fix-panel-based-examples
pin panel to 1.3.8
2 parents bdf60ce + 7eac5ce commit 238601b

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

panel/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
</script>
3737

3838
<!-- panel scripts -->
39-
<script defer src="https://cdn.jsdelivr.net/npm/@holoviz/[email protected].1/dist/panel.min.js"></script>
39+
<script defer src="https://cdn.jsdelivr.net/npm/@holoviz/[email protected].8/dist/panel.min.js"></script>
4040
</head>
4141

4242
<body>

panel/pyscript.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
name = "Simple Panel"
22
description = "A basic Panel application to be used with PyScript."
3-
packages = ["panel", "bokeh==3.2.2"]
3+
packages = ["panel==1.3.8", "bokeh==3.2.2"]

panel_deckgl/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
</script>
5757

5858
<!-- panel scripts -->
59-
<script defer src="https://cdn.jsdelivr.net/npm/@holoviz/[email protected].2/dist/panel.min.js"></script>
59+
<script defer src="https://cdn.jsdelivr.net/npm/@holoviz/[email protected].8/dist/panel.min.js"></script>
6060

6161
</head>
6262

panel_deckgl/pyscript.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
name = "NYC Taxi Panel DeckGL"
22
description = "A Panel application that uses the NYC Taxi dataset and DeckGL to generate a data visualisation on a map."
3-
packages = ["bokeh==3.2.2", "numpy", "pandas", "panel"]
3+
packages = ["bokeh==3.2.2", "numpy", "pandas", "panel==1.3.8"]

panel_kmeans/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
</script>
5555

5656
<!-- panel scripts -->
57-
<script defer src="https://cdn.jsdelivr.net/npm/@holoviz/[email protected].1/dist/panel.min.js"></script>
57+
<script defer src="https://cdn.jsdelivr.net/npm/@holoviz/[email protected].8/dist/panel.min.js"></script>
5858

5959
<!-- CSS for sidebar -->
6060
<style>

panel_kmeans/pyscript.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
name = "KMeans in Panel"
22
description = "An example of how to build a dashboard using Panel."
3-
packages = ["bokeh==3.2.2", "altair", "numpy", "pandas", "scikit-learn", "panel"]
3+
packages = ["bokeh==3.2.2", "altair", "numpy", "pandas", "scikit-learn", "panel==1.3.8"]

panel_streaming/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
</script>
5050

5151
<!-- panel scripts -->
52-
<script defer src="https://cdn.jsdelivr.net/npm/@holoviz/[email protected].1/dist/panel.min.js"></script>
52+
<script defer src="https://cdn.jsdelivr.net/npm/@holoviz/[email protected].8/dist/panel.min.js"></script>
5353

5454
</head>
5555

panel_streaming/pyscript.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
name = "Streaming in Panel"
22
description = "A simple Panel application showing how to handle streaming data."
3-
packages = ["bokeh==3.2.2", "numpy", "pandas", "panel"]
3+
packages = ["bokeh==3.2.2", "numpy", "pandas", "panel==1.3.8"]

panel_with_hvplot/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@
4444
</script>
4545

4646
<!-- panel scripts -->
47-
<script defer src="https://cdn.jsdelivr.net/npm/@holoviz/[email protected].1/dist/panel.min.js"></script>
48-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/@holoviz/[email protected].1/dist/bundled/[email protected]/dist/material-components-web.min.js"></script>
47+
<script defer src="https://cdn.jsdelivr.net/npm/@holoviz/[email protected].8/dist/panel.min.js"></script>
48+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/@holoviz/[email protected].8/dist/bundled/[email protected]/dist/material-components-web.min.js"></script>
4949

5050
</head>
5151

panel_with_hvplot/pyscript.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
name = "Panel and hvPlot"
22
description = "Leverage hvPlot interactive feature and extending it with Panel."
3-
packages = ["bokeh==3.2.2", "panel", "markdown-it-py", "numpy", "pandas", "hvplot", "pyodide-http"]
3+
packages = ["bokeh==3.2.2", "panel==1.3.8", "markdown-it-py", "numpy", "pandas", "hvplot", "pyodide-http"]

0 commit comments

Comments
 (0)