Alex Mohr
Alex Mohr
Hey @Pr0Ger, please release an update to PyPi
@levinotik ``` # requirements.in apns2 @ git+https://github.com/Pr0Ger/PyAPNs2.git@5e4a938 ``` output: ``` # requirements.txt apns2 @ git+https://github.com/Pr0Ger/PyAPNs2.git@5e4a938 # via -r requirements.in cffi==1.15.0 # via cryptography cryptography==36.0.0 # via apns2 h2==2.6.2 # via...
@InfRandomness I think you are getting undefined symbol because you need to link glfw3 and libc in `build.zig`: ```zig const exe = b.addExecutable("myexe", "src/main.zig") // ... exe.linkSystemLibrary("glfw3"); exe.linkLibC(); // ......
Looks like the new way of translating C enums is to Zig is to create constant `c_int`'s. (reference: https://github.com/ziglang/zig/issues/2115#issuecomment-827968279) My opinion is to do it like this: ```zig pub const...
Also blocked by this. I would like to use another package that depends on pydantic > 2
Sure, I'm open to the idea. I'm not sure why you would want both the client and server installed in the same project though.
> I tested out this change on a blueprint, and one thing to consider is that the template folder of a blueprint may not be tied to the current app...
Sorry for the delay. Updated the docs.
Thanks, I'll try that. Have you considering modernizing by replacing `setup.py`/`setup.cfg` with `pyproject.toml`? It looks like it can be done pretty easily, apart from the flake8 config which doesn't support...