Skip to content

Commit fcb776f

Browse files
committed
1 parent 7c4151d commit fcb776f

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

docs/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

esm/interpreter/pyodide.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,8 @@ export default {
114114
// versions are not currently understood by pyodide when
115115
// a lockFileURL is used instead of micropip.install(packages)
116116
// https://github.com/pyodide/pyodide/issues/5135#issuecomment-2441038644
117-
options.packages = packages.map(name => name.split('==')[0]);
117+
// https://github.com/pyscript/pyscript/issues/2245
118+
options.packages = packages.map(name => name.split(/[>=<]=/)[0]);
118119
packages = null;
119120
}
120121
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,6 @@
8888
"to-json-callback": "^0.1.1"
8989
},
9090
"worker": {
91-
"blob": "sha256-y6/jxBwsS9vdnsnAT+1dSKY8MQMctwF5QUikF6che60="
91+
"blob": "sha256-vXpedylgzZMykm7P3DkR3dPh0Eym0XjwD7/izyL+3qQ="
9292
}
9393
}

0 commit comments

Comments
 (0)