Christopher Rowley
Christopher Rowley
Yeah I guess so.
Well isn't that fun! You've got to love case-insensitive filesystems... This particular issue should be a straightforward fix - just needs a more nuanced `load_path` comparison than `==`. However, I'm...
A version of this issue was fixed a couple of releases ago. Can you make sure you're on the latest CondaPkg. If not, maybe there is another cause. Please do...
Actually I meant ``` ENV["JULIA_DEBUG"] = "CondaPkg" CondaPkg.resolve() ```
Is there a specific issue here? Is PythonCall not compatible with numpy 2?
The conversion to `PyArray` doesn't actually lose any structure - the numpy array really is essentially just an array of named tuples. The difference is that numpy gives you a...
A bigger issue is the presence of `UnsafePyObject` in the wrapped array - those ideally would be `Py` instead.
I'm not in favour of code duplication - it is rarely the answer and makes maintenance a nightmare. I'm confident we can fix the slow-downs in CondaPkg directly.
In CondaPkg, Pkg is only used in two places: (a) the Pkg REPL mode and (b) in the slow path of `resolve()` (i.e. we cannot skip resolving). (a) Can probably...
I don't think there's any code in CondaPkg that can be removed though - it's all needed for CondaPkg to run correctly. And remember that CondaPkg does not purely exist...