8000 support different pyodide versions by fpliger · Pull Request #328 · pyscript/pyscript · GitHub
[go: up one dir, main page]

Skip to content

support different pyodide versions #328

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
May 11, 2022
Prev Previous commit
fix typo
  • Loading branch information
fpliger committed May 11, 2022
commit c4a25a13ff009c41a53451f49a4883a7b9e85f70
2 changes: 1 addition & 1 deletion pyscriptjs/src/components/pyconfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ export class PyConfig extends BaseEvalElement {
}

loadRuntimes(){
console.log("Initializing runetimes...")
console.log("Initializing runtimes...")
for (const runtime of this.values.runtimes) {
const script = document.createElement("script"); // create a script DOM node
const runtimeSpec = new PyodideRuntime(runtime.src);
Expand Down
1 change: 0 additions & 1 deletion pyscriptjs/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
"sourceMap": true,
/** Requests the runtime types from the svelte modules by default. Needed for TS files or else you get errors. */
"types": ["svelte"],

"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
Expand Down
0