Giovanni Barillari
Giovanni Barillari
`BLOB` encoding/decoding is a pyDAL feature kept in place for retro-compatibility reasons. In order to use raw `BLOB` values with postgres, you should define your own parser/representer, eg: ```python from...
@vinidiktov considering current design of migrations, which is heavily based on `Model` class, it would be quite hard. Probably with #309 implementation you would be able to switch from pyDAL...
Thank you for the nice words @pramos84 Actually the hard thing of making Emmett's ORM async is not regarding drivers, but on `Model` interfaces. This is quite hard, and tracked...
This is actually tracked in https://github.com/emmett-framework/firestorm/issues/5 Some ORM issues were moved there because of #309 Specifically regarding your suggestions, actually: ```python User.get(1) ``` does not return a `User` object. It...
@indygreg I'm also facing issues with the musl distribution. Here is what I found so far. Trying to build a Python project with `cffi` in 3rd part dependencies with `pyoxidizer`...
@indygreg FYI, building `cffi` with the `x86_64-unknown-linux-gnu` works, but the dynamic linker produce wrong linking with libffi: ``` # ldd _cffi_backend.cpython-38-x86_64-linux-gnu.so linux-vdso.so.1 (0x00007ffc109af000) libffi-806b1a9d.so.6.0.4 => not found libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0...
@indygreg FYI on macOS I don't face any issue at all, can build `cffi` correctly and the dynamic linker produce correct results: ``` ❯ otool -L _cffi_backend.cpython-38-darwin.so _cffi_backend.cpython-38-darwin.so: /usr/lib/libffi.dylib (compatibility...
> Probably the most viable alternative to this is for this project to emit a Docker image or something containing its build environment. Then we can tell people to execute...
> Just noting that I'm also unable to use the x86_64-unknown-linux-musl target of PyOxidizer because of this issue (incl. the specifics of cffi). Would love build images. @tsibley I build...
> @gi0baro Thanks for the pointer! > > Unfortunately, my build errors in the cffi build even when running in your images. The compile seems to succeed, but then during...