Skip to content

Commit ea04e85

Browse files
committed
Upgrade Pyodide
1 parent 517b6fb commit ea04e85

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/PyodideWorker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const PyodideWorker = () => {
77
`${process.env.ASSETS_URL}/pyodide/shims/_internal_sense_hat.js`,
88
);
99
importScripts(`${process.env.ASSETS_URL}/pyodide/shims/pygal.js`);
10-
importScripts("https://cdn.jsdelivr.net/pyodide/v0.26.2/full/pyodide.js");
10+
importScripts("https://cdn.jsdelivr.net/pyodide/v0.29.3/full/pyodide.js");
1111

1212
const supportsAllFeatures = typeof SharedArrayBuffer !== "undefined";
1313

src/components/Editor/Runners/PythonRunner/PyodideRunner/PyodideWorker.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ describe("PyodideWorker", () => {
5353

5454
test("it imports the pyodide script", () => {
5555
expect(global.importScripts).toHaveBeenCalledWith(
56-
"https://cdn.jsdelivr.net/pyodide/v0.26.2/full/pyodide.js",
56+
"https://cdn.jsdelivr.net/pyodide/v0.29.3/full/pyodide.js",
5757
);
5858
});
5959

0 commit comments

Comments
 (0)