Joe Rickerby

Results 376 comments of Joe Rickerby

dark is the only option currently, but a light scheme would be cool too. I had a look in my design file and it looks like I did try to...

This one is a complete mystery to me! Could you post a traceback for the glom one too? It would also be helpful to know if it happens with other...

I think I've figured out the ctypes thing. It seems that loading the `.so` file with the path works on both linux and mac.

Hmm. Possibly there's a better heuristic I can use than `/lib/`. Basically I'm trying to detect code that has been pip/conda -installed or built-in. Ideas welcome! The other thing I...

Thanks for chipping in @asmeurer ! What import mechanisms do you speak of? I've only looked into sys.path, but found that I couldn't easily distinguish between system and user paths....

I did have another idea just now... to have another mechanism that captures `sys.prefix` when the profile is captured and see if the files reside in a subpath of that....

It's possible to make your own manylinux image and use that via the CIBW_MANYLINUX_IMAGE options. I believe @Czaki does that for his [imagecodecs build](https://github.com/Czaki/imagecodecs_build/blob/master/build_utils/Dockerfile_manylinux2014_x86_64), though i'm not 100% sure of...

Any idea what the container is doing that's making it take so long to close? The `self.process.wait(timeout=30)` is simply waiting for a bash shell in the container to exit (having...

Yeah, that makes sense. For consistency, it should probably print them all even when a platform can be detected. Does that interfere with your GHA build-matrix generation method?

This idea only really works in Linux, where you can set up the manylinux image so that the path you specify in the platform exists in the image. On macOS,...