We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f4d264 commit 05f371aCopy full SHA for 05f371a
esm/interpreter/pyodide.js
@@ -85,7 +85,7 @@ export default {
85
if (hasOwn(graph, version)) {
86
const invalid = packages.filter(entry => {
87
// consider only packages by name but not remote/local ones
88
- if (/^https?:\/\//.test(entry) || entry.startsWith('.')) return false;
+ if (/^https?:\/\//.test(entry)) return false;
89
const [name, ...rest] = entry.split(/[>=<]=/);
90
const known = hasOwn(graph[version], name);
91
return !known || (rest.length > 0 && rest[0] !== graph[version][name]);
0 commit comments