From 5b5c0fa2cf1a49c2e27ad4210ce2a9b36753223c Mon Sep 17 00:00:00 2001 From: Riya Sinha Date: Tue, 29 Oct 2024 10:49:10 -0700 Subject: [PATCH] update pyodide version to match pydantic-core version --- src/pyodide.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyodide.ts b/src/pyodide.ts index dec2b62..9fe4982 100644 --- a/src/pyodide.ts +++ b/src/pyodide.ts @@ -49,7 +49,7 @@ function importScripts(url: string): Promise { export async function downloadPyodide(): Promise { await importScripts( - 'https://cdn.jsdelivr.net/pyodide/v0.25.1/full/pyodide.js', + 'https://cdn.jsdelivr.net/pyodide/v0.26.3/full/pyodide.js', ) return await loadPyodide() }