|
4 | 4 | <meta charset="utf-8">
|
5 | 5 | <title>Pyscript/Panel KMeans Demo</title>
|
6 | 6 |
|
7 |
| - <link rel="icon" href="https://unpkg.com/@holoviz/panel@0.13.0-rc.10/dist/icons/favicon.ico" type=""> |
| 7 | + <link rel="icon" href="https://unpkg.com/@holoviz/panel@0.13.0/dist/icons/favicon.ico" type=""> |
8 | 8 | <meta name="name" content="PyScript/Panel KMeans Demo">
|
9 | 9 |
|
10 | 10 | <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" type="text/css" />
|
11 |
| - <link rel="stylesheet" href="https://unpkg.com/@holoviz/panel@0.13.0-rc.10/dist/css/widgets.css" type="text/css" /> |
12 |
| - <link rel="stylesheet" href="https://unpkg.com/@holoviz/panel@0.13.0-rc.10/dist/css/markdown.css" type="text/css" /> |
13 |
| - <link rel="stylesheet" href="https://unpkg.com/@holoviz/panel@0.13.0-rc.10/dist/css/loading.css" type="text/css" /> |
14 |
| - <link rel="stylesheet" href="https://unpkg.com/@holoviz/panel@0.13.0-rc.10/dist/css/dataframe.css" type="text/css" /> |
| 11 | + <link rel="stylesheet" href="https://unpkg.com/@holoviz/panel@0.13.0/dist/css/widgets.css" type="text/css" /> |
| 12 | + <link rel="stylesheet" href="https://unpkg.com/@holoviz/panel@0.13.0/dist/css/markdown.css" type="text/css" /> |
| 13 | + <link rel="stylesheet" href="https://unpkg.com/@holoviz/panel@0.13.0/dist/css/loading.css" type="text/css" /> |
| 14 | + <link rel="stylesheet" href="https://unpkg.com/@holoviz/panel@0.13.0/dist/css/dataframe.css" type="text/css" /> |
15 | 15 |
|
16 | 16 | <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/vega@5"></script>
|
17 | 17 | <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/vega-lite@5"></script>
|
|
20 | 20 | <script type="text/javascript" src="https://cdn.bokeh.org/bokeh/release/bokeh-2.4.2.js"></script>
|
21 | 21 | <script type="text/javascript" src="https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.4.2.min.js"></script>
|
22 | 22 | <script type="text/javascript" src="https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.4.2.min.js"></script>
|
23 |
| - <script type="text/javascript" src="https://unpkg.com/@holoviz/panel@0.13.0-rc.10/dist/panel.min.js"></script> |
| 23 | + <script type="text/javascript" src="https://unpkg.com/@holoviz/panel@0.13.0/dist/panel.min.js"></script> |
24 | 24 | <script type="text/javascript">
|
25 | 25 | Bokeh.set_log_level("info");
|
26 | 26 | </script>
|
27 | 27 |
|
28 | 28 | <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/css/bootstrap.min.css">
|
29 |
| - <link rel="stylesheet" href="https://unpkg.com/@holoviz/panel@0.13.0-rc.10/dist/bundled/bootstraptemplate/bootstrap.css"> |
30 |
| - <link rel="stylesheet" href="https://unpkg.com/@holoviz/panel@0.13.0-rc.10/dist/bundled/defaulttheme/default.css"> |
| 29 | + <link rel="stylesheet" href="https://unpkg.com/@holoviz/panel@0.13.0/dist/bundled/bootstraptemplate/bootstrap.css"> |
| 30 | + <link rel="stylesheet" href="https://unpkg.com/@holoviz/panel@0.13.0/dist/bundled/defaulttheme/default.css"> |
31 | 31 |
|
32 | 32 | <style>
|
33 | 33 | #sidebar {
|
|
83 | 83 | from io import StringIO
|
84 | 84 | from js import fetch
|
85 | 85 |
|
86 |
| -await micropip.install(['panel==0.13.0rc10', 'altair']) |
| 86 | +await micropip.install(['panel', 'altair']) |
87 | 87 |
|
88 | 88 | import altair as alt
|
89 | 89 | import panel as pn
|
|
0 commit comments