Gyeongjae Choi
Gyeongjae Choi
Nop, we already have pandas==2.2.0 in the main branch so this can be closed. Note that we don't have pyarrow in pandas though.
You can try [pyodide-http](https://github.com/koenvo/pyodide-http) to patch requests APIs with Web APIs.
As the error message mentions, micropip.install is an asynchronous function and must be executed inside an async context. For instance, I would modify [index.html](https://github.com/psymbio/tiktoken_rust_wasm/blob/8fae5a33b873e013f7b1dfe8ebc07078c6de9b86/index.html) in your [tiktoken_rust_wasm](https://github.com/psymbio/tiktoken_rust_wasm) like this. ```js...
Yes, I also got the mail. I think we should start working on separating package builds from the main repository, as discussed in https://github.com/pyodide/pyodide/pull/3827#issuecomment-1539824379. I hadn't touched it yet because...
Okay. I started working on the https://github.com/ryanking13/pyodide-recipes-mirror repository again. For now, the goal is to move all the recipes to that repository and build them using xbuildenv, and I'm currently...
Thanks for opening the issue! I think there were a few similar discussions before but we had made no progress since then. Basically, I fully agree that we need the...
What happens is: 1. `fastapi` requires `pydantic` and `typing_extension>4.8.0`. 2. `pydantic` requires `typing_extension`. 3. `pydantic` is in the Pyodide lockfile and it loads `typing_extension` from the lockfile (4.7.1). I think...
``` Command '/workspaces/onnx/emsdk/upstream/bin/llvm-readobj --section-details -st' failed. Output to stderr was: /workspaces/onnx/emsdk/upstream/bin/llvm-readobj: error: no input files specified ``` This is a bug in our pywasmcross exports calculation code. I knew this...
> Going by https://github.com/emscripten-core/emscripten/issues/4735 it sounds like 'response files' are a way to avoid this sort of error? Right, response files are for preventing that kind of error. Then, for...
It looks like wasm-ld does not accept `--exclude-libs` flag. There are several flags that are incompatible between emscripten compiler toolchains and GCC. We just [ignore it whenever we find such...