Hood Chatham
Hood Chatham
I mean [esbuild.config.mjs](https://github.com/pyodide/pyodide/blob/main/src/js/esbuild.config.mjs)
Could you give a reproduction of the MIME type error you mention?
I can't reproduce this. In particular, no exception is thrown when I try it: ```js await pyodide.loadPackage("shapely"); pyodide.runPython(` json_geom = { ... your geometry here } from shapely.validation import make_valid...
You can control the package that `js` is attached to at startup with the `jsglobals` argument to `loadPyodide`: https://pyodide.org/en/stable/usage/api/js-api.html#globalThis.loadPyodide In principle you can monkeypatch it at runtime: ``` import sys...
@deeplook @ryanking13 does this issue make sense to you? Is gdal supposed to provide a module named osgeo? I see that `pyodide._api.lockfile_packages.gdal.imports` is an empty list, so gdal doesn't define...
This works as intended. You can access the Python error object as `sys.last_value`. If you want that printed to `stderr`, you can use `pyodide.runPython("import traceback; traceback.print_exception(sys.last_value)");`. Or if you catch...
I think the solution for this is that if errors propagate out of Python we should call `sys.excepthook`. The reason I've never implemented this is that we have to count...
The plan would be for v202308_01 wheels to work on v202308_02 interpreters but not the other way around. The idea being that if we link an extra static library in...
Looks like geopandas hasn't released a version supporting Pandas 2.0 yet.
https://github.com/geopandas/geopandas/issues/2692