oscar6echo

Results 51 comments of oscar6echo

In fact, and contrary to what I wrote above, polars and [parquet-go](https://github.com/segmentio/parquet-go) produce incompatible parquet formats - for nested fields only. To be more precise, both are valid parquet files,...

After some trial and error, I found a way to read a polars produced parquet file in go, then save it as parquet and load the latter parquet file to...

When you say 'in scope', you mean in the docker container meant to do the build or the host ? I would expect you mean in the container, right ?...

From inside the container.: ```sh root@45d1a52cf28c:/# ls -al /opt/python/cp310-cp310 lrwxrwxrwx 1 root root 30 Feb 8 18:54 /opt/python/cp310-cp310 -> /opt/_internal/cpython-3.10.13 root@45d1a52cf28c:/# ls -al /opt/_internal/cpython-3.10.13 total 24 drwxr-xr-x 6 root root...

Ok I found the image and put it inside the container but it's getting increasingly confusing, actually. I can download and put a mingw64 distrib, say [the latest 3.10](https://repo.msys2.org/mingw/mingw64/mingw-w64-x86_64-python-3.10.12-1-any.pkg.tar.zst) in...

> why do you need a python.exe? if python is needed, just install it, shouldn't have to be a .exe. I just unpacked the mingw64 python distrib dowloaded. But now...

> Put it in /usr/x86_64-w64-mingw32 It turns out I had to put it in /lib below and change its name: ```dockerfile ENV URL_ASSET=https://repo.msys2.org/mingw/mingw64/mingw-w64-x86_64-python-3.10.12-1-any.pkg.tar.zst RUN curl $URL_ASSET > /tmp/pkg.tar.zst && \...

Ok I will try to add a minimalistic example in a folder in the [wiki recipes](https://github.com/cross-rs/wiki_assets/tree/main/Recipes). In the meantime, the repo from which the above is taken is [oscar6echo/pyo3-poker-eval](https://github.com/oscar6echo/pyo3-poker-eval).

NOTE: In addition to the cross compile to windows discussed above, I added a build to manylinux in repo [oscar6echo/pyo3-poker-eval](https://github.com/oscar6echo/pyo3-poker-eval). Otherwise I [cannot push to pypi](https://stackoverflow.com/questions/66104637/python-twine-error-unsupported-platform-tag-linux-x86-64). For that I used...

Well nothing I reckon now :thinking: Indeed this manylinux is about the python wheel, which happens to contain a rust module, so this is orthogonal to what cross does. Sorry...