Hood Chatham
Hood Chatham
I'd suggest using `run_in_pyodide` as follows, which gives formatting, linting, type checking, and better tracebacks. ```py def test_duckdb_with_pandas(selenium): if not package_is_built("pandas"): pytest.skip("no pandas") selenium.load_package(["duckdb", "pandas"]) @run_in_pyodide def do_test(selenium): import duckdb...
I restarted the CI. Hopefully it will make it further this time =)
Hmm looks like there's a regression.
I think this should fix it: https://github.com/protocolbuffers/protobuf/pull/17959
It's an unfortunate thing about Skip Ci. Maybe we should add a "ci ran" check. Of course we can merge changes that skip CI, but the Ci is flaky enough...
I'll take a look when I have a minute. At pycon right now.
The problem seems to be that `scipy/linalg/cython_lapack.cpython-312-wasm32-emscripten.so` fails to load (which causes other libs to fail to load which eventually leads to the missing `PyInit_` error). The loader error for...
Looks like `_lapack_subroutines.h` has 1416 different functions that are declared as returning void. Those will all need to be changed to int. The only place I find `cbbcsd` in the...
Okay progress, now problem is `chla_transtype_`. It is defined with type `(i32, i32, i32) -> nil` but declared with type `(i32) -> i32`. This has a comment in f2c_fixes: ```...
Where did all the build artifacts go? Meson seems to hide them better than the old build system did.