Skip to content

Commit

Permalink
0.2.5 (#787)
Browse files Browse the repository at this point in the history
* 0.2.5

Update bootstrap.ts to pull marimo wheel from PyPI when in production

* Revert "0.2.5"

This reverts commit cd14ca8.

* Only bump version, see if playwright passes

* Try updating bootstrap again

* require marimo >= 0.2.5
  • Loading branch information
akshayka authored Feb 14, 2024
1 parent 80864a6 commit e0cf8a6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions frontend/src/core/pyodide/worker/bootstrap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ export async function bootstrap() {
await pyodide.loadPackage("micropip");

// Install marimo
const baseUrl =
const marimoWheel =
process.env.NODE_ENV === "production"
? `https://marimo.app/registry`
: "http://localhost:8000/dist";
? "marimo >= 0.2.5"
: "http://localhost:8000/dist/marimo-0.2.5-py3-none-any.whl";
await pyodide.runPythonAsync(`
import micropip
Expand All @@ -37,7 +37,7 @@ export async function bootstrap() {
await micropip.install(
[
# Subset of marimo requirements
"${baseUrl}/marimo-0.2.4-py3-none-any.whl",
"${marimoWheel}",
"markdown",
"jedi",
"docutils",
Expand Down
2 changes: 1 addition & 1 deletion marimo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"video",
"vstack",
]
__version__ = "0.2.4"
__version__ = "0.2.5"

from marimo._ast.app import App
from marimo._output.doc import doc
Expand Down

0 comments on commit e0cf8a6

Please sign in to comment.