Skip to content

Commit 948fbb1

Browse files
committed
Merge branch 'rc-v0.9.2' into deploy
2 parents e8fd46e + 1b20298 commit 948fbb1

File tree

4 files changed

+21
-7
lines changed

4 files changed

+21
-7
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "shinylive",
4-
"version": "0.9.1",
4+
"version": "0.9.2",
55
"description": "Run Shiny applications with R or Python running in the browser.",
66
"main": "index.js",
77
"repository": {

shinylive_lock.json

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@
3939
},
4040
"shinywidgets": {
4141
"name": "shinywidgets",
42-
"version": "0.3.4",
43-
"filename": "shinywidgets-0.3.4-py3-none-any.whl",
42+
"version": "0.4.0",
43+
"filename": "shinywidgets-0.4.0-py3-none-any.whl",
4444
"sha256": null,
4545
"url": null,
4646
"depends": [
4747
{"name": "ipywidgets", "specs": [[">=", "7.6.5"]]},
48-
{"name": "jupyter-core", "specs": []},
48+
{"name": "jupyter_core", "specs": []},
4949
{"name": "shiny", "specs": [[">=", "0.6.1.9005"]]},
5050
{"name": "python-dateutil", "specs": [[">=", "2.8.2"]]}
5151
],
@@ -523,5 +523,19 @@
523523
"imports": [
524524
"libsass"
525525
]
526+
},
527+
"jupyter_core": {
528+
"name": "jupyter_core",
529+
"version": "5.7.2",
530+
"filename": "jupyter_core-5.7.2-py3-none-any.whl",
531+
"sha256": "4f7315d2f6b4bcf2e3e7cb6e46772eba760ae459cd1f59d29eb57b0a01bd7409",
532+
"url": "https://files.pythonhosted.org/packages/c9/fb/108ecd1fe961941959ad0ee4e12ee7b8b1477247f30b1fdfd83ceaf017f0/jupyter_core-5.7.2-py3-none-any.whl",
533+
"depends": [
534+
{"name": "platformdirs", "specs": [[">=", "2.5"]]},
535+
{"name": "traitlets", "specs": [[">=", "5.3"]]}
536+
],
537+
"imports": [
538+
"jupyter_core"
539+
]
526540
}
527541
}

src/hooks/usePyodide.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -412,8 +412,8 @@ async def _install_requirements_from_dir(dir: str) -> None:
412412
extras.update({e.strip() for e in match_extras.group(2).split(",")})
413413
414414
if pkg_name not in micropip.list():
415-
print(f"Installing {pkg_name} ...")
416-
await micropip.install(pkg_name)
415+
print(f"Installing {req} ...")
416+
await micropip.install(req)
417417
418418
if len(extras) == 0:
419419
continue

0 commit comments

Comments
 (0)