Skip to content

pin panel to 1.3.8 #18

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion panel/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
</script>

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

<body>
Expand Down
2 changes: 1 addition & 1 deletion panel/pyscript.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
name = "Simple Panel"
description = "A basic Panel application to be used with PyScript."
packages = ["panel", "bokeh==3.2.2"]
packages = ["panel==1.3.8", "bokeh==3.2.2"]
2 changes: 1 addition & 1 deletion panel_deckgl/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
</script>

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

</head>

Expand Down
2 changes: 1 addition & 1 deletion panel_deckgl/pyscript.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
name = "NYC Taxi Panel DeckGL"
description = "A Panel application that uses the NYC Taxi dataset and DeckGL to generate a data visualisation on a map."
packages = ["bokeh==3.2.2", "numpy", "pandas", "panel"]
packages = ["bokeh==3.2.2", "numpy", "pandas", "panel==1.3.8"]
2 changes: 1 addition & 1 deletion panel_kmeans/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
</script>

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

<!-- CSS for sidebar -->
<style>
Expand Down
2 changes: 1 addition & 1 deletion panel_kmeans/pyscript.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
name = "KMeans in Panel"
description = "An example of how to build a dashboard using Panel."
packages = ["bokeh==3.2.2", "altair", "numpy", "pandas", "scikit-learn", "panel"]
packages = ["bokeh==3.2.2", "altair", "numpy", "pandas", "scikit-learn", "panel==1.3.8"]
2 changes: 1 addition & 1 deletion panel_streaming/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
</script>

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

</head>

Expand Down
2 changes: 1 addition & 1 deletion panel_streaming/pyscript.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
name = "Streaming in Panel"
description = "A simple Panel application showing how to handle streaming data."
packages = ["bokeh==3.2.2", "numpy", "pandas", "panel"]
packages = ["bokeh==3.2.2", "numpy", "pandas", "panel==1.3.8"]
4 changes: 2 additions & 2 deletions panel_with_hvplot/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
</script>

<!-- panel scripts -->
<script defer src="https://cdn.jsdelivr.net/npm/@holoviz/[email protected].1/dist/panel.min.js"></script>
<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>
<script defer src="https://cdn.jsdelivr.net/npm/@holoviz/[email protected].8/dist/panel.min.js"></script>
<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>

</head>

Expand Down
2 changes: 1 addition & 1 deletion panel_with_hvplot/pyscript.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
name = "Panel and hvPlot"
description = "Leverage hvPlot interactive feature and extending it with Panel."
packages = ["bokeh==3.2.2", "panel", "markdown-it-py", "numpy", "pandas", "hvplot", "pyodide-http"]
packages = ["bokeh==3.2.2", "panel==1.3.8", "markdown-it-py", "numpy", "pandas", "hvplot", "pyodide-http"]