Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions esm/interpreter/pyodide.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ export default {
// consider only packages by name but not remote/local ones
if (/^(?:\.|\/|https?:\/\/)/.test(entry)) continue;
const name = entry.split(/[>=<]=/)[0];
if (name in current) continue;
console.warn(`Pyodide ${version} might not support ${entry}`);
if (name.toLowerCase() in current) continue;
console.warn(`Pyodide ${version} might not support ${entry}. See: https://pyscript.github.io/pyscript-packages/package/?package=${name}`);
}
}
progress('Loaded Packages Graph');
Expand Down
2 changes: 1 addition & 1 deletion esm/interpreter/pyodide_graph.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "polyscript",
"version": "0.20.2",
"version": "0.20.3",
"description": "PyScript single core to rule them all",
"main": "./esm/index.js",
"types": "./types/polyscript/esm/index.d.ts",
Expand Down Expand Up @@ -98,6 +98,6 @@
"to-json-callback": "^0.1.1"
},
"worker": {
"blob": "sha256-bPHWMKGQ5G3svCE6BvLOAUruJCg5hGtIDyNRqwE7QxQ="
"blob": "sha256-y2ucS53sk1OlPS8i8RDdohm3OSe8+AQYZTyA1gfSIHk="
}
}
3 changes: 2 additions & 1 deletion rollup/build_pyodide_graph.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,9 @@ let json = existsSync(pyodideGraph) ? JSON.parse(readFileSync(pyodideGraph)) : {
...document.querySelectorAll('#packages-built-in-pyodide table > tbody > tr')
].map(tr => [
...tr.querySelectorAll('td')
].map(td => td.innerText)))
].map(td => td.innerText.toLowerCase())))
);
await new Promise(resolve => setTimeout(resolve, 1000));
}
catch (error) {
console.error(error);
Expand Down
Loading