Jacob Alexander

Results 270 comments of Jacob Alexander

I'll push out a release once I can get the other manylinux2010 wheels upgraded to manylinux2014 (manylinux2010 is now EOL).

Do you have an example of what's different?

As a note, I myself haven't used tox at all with pycapnp (i.e. needs to be cleaned up).

pycapnp now works on Windows (see `master` branch). Though I haven't tried linking with pycapnp lite (not familiar with it).

I've looked at these a few times, but it's been pretty painful to setup with GitHub Actions. The other part is choosing a widely support docker image (in case manylinux...

I'm not very familiar with the capnp streaming api. Can you wait on data inside the callback in C++ as well? (Removing the .wait() on sendChunk and the code works...

Yeah, I agree this is a problem. The tricky part is that two async systems (kj and asyncio) have to talk to each other. I believe this is possible but...

Yeah, I think we can leave this for when the infrastructure catches up.

The serialization seems to be different. ``` {'id': 0, 'name': ''} b'\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\n\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' ``` ``` {'id': 0} b'\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' ``` This indicates that there are 8 extra bytes (minimum segment size) in...

Are you building pycapnp from source or using the pip package?