Skip to content

Commit

Permalink
Merge branch 'rc-v0.9.2' into deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
cpsievert committed Dec 16, 2024
2 parents e8fd46e + 1b20298 commit 948fbb1
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "shinylive",
"version": "0.9.1",
"version": "0.9.2",
"description": "Run Shiny applications with R or Python running in the browser.",
"main": "index.js",
"repository": {
Expand Down
20 changes: 17 additions & 3 deletions shinylive_lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@
},
"shinywidgets": {
"name": "shinywidgets",
"version": "0.3.4",
"filename": "shinywidgets-0.3.4-py3-none-any.whl",
"version": "0.4.0",
"filename": "shinywidgets-0.4.0-py3-none-any.whl",
"sha256": null,
"url": null,
"depends": [
{"name": "ipywidgets", "specs": [[">=", "7.6.5"]]},
{"name": "jupyter-core", "specs": []},
{"name": "jupyter_core", "specs": []},
{"name": "shiny", "specs": [[">=", "0.6.1.9005"]]},
{"name": "python-dateutil", "specs": [[">=", "2.8.2"]]}
],
Expand Down Expand Up @@ -523,5 +523,19 @@
"imports": [
"libsass"
]
},
"jupyter_core": {
"name": "jupyter_core",
"version": "5.7.2",
"filename": "jupyter_core-5.7.2-py3-none-any.whl",
"sha256": "4f7315d2f6b4bcf2e3e7cb6e46772eba760ae459cd1f59d29eb57b0a01bd7409",
"url": "https://files.pythonhosted.org/packages/c9/fb/108ecd1fe961941959ad0ee4e12ee7b8b1477247f30b1fdfd83ceaf017f0/jupyter_core-5.7.2-py3-none-any.whl",
"depends": [
{"name": "platformdirs", "specs": [[">=", "2.5"]]},
{"name": "traitlets", "specs": [[">=", "5.3"]]}
],
"imports": [
"jupyter_core"
]
}
}
4 changes: 2 additions & 2 deletions src/hooks/usePyodide.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -412,8 +412,8 @@ async def _install_requirements_from_dir(dir: str) -> None:
extras.update({e.strip() for e in match_extras.group(2).split(",")})
if pkg_name not in micropip.list():
print(f"Installing {pkg_name} ...")
await micropip.install(pkg_name)
print(f"Installing {req} ...")
await micropip.install(req)
if len(extras) == 0:
continue
Expand Down

0 comments on commit 948fbb1

Please sign in to comment.