Gyeongjae Choi
Gyeongjae Choi
Thanks for the ping Agriya. Yes, I think something is messed up with the import path. I think the `.venv-pyodide/lib/python3.12/site-packages` is the correct path to load the numpy though. Another...
Closing as resolved.
This should be fixed in pyodide 0.26.2 (https://github.com/pyodide/pyodide/pull/4865). Could you try Pyodide 0.26.2 or 0.27.0a2?
Yes, `emscripten_compute_dom_pk_code` is linked only to the pygame wheel (.so), not in pyodide.asm.js, and it is intentional. When linking shared libraries, I try to link only the JS part to...
Right, sadly Python and JS have different versioning conventions so alpha versions are named differently.
> CORS exceptions should be converted as a plain OSError or another custom Exception type But we cannot "catch" the CORS error in JavaScript, as browser hides it (https://github.com/axios/axios/issues/838). So...
Oh, got it. It was plain OSError before 0.27, but now it raises AbortError. Thanks for catching it, I agree that it should raise an OSError not AbortError.
It's hard to tell from the information given why you're having integrity issues (it compares the SHA256 hash of the file), but if you wanted to, you can disable the...
@eqs Sounds interesting. Could you please share the code so that I can reproduce the bug?
Thanks for the repro. You can pass `indexURL` when loading Pyodide to fix the error. ```js const pyodide = await loadPyodide({ indexURL: "https://cdn.jsdelivr.net/pyodide//full/"}); ``` --- The reason for the issue...