Christopher Rowley

Results 471 comments of Christopher Rowley

Hm yeah lots of those links point to the latest version of the docs, which change over time. We should use permalinks (i.e. links to a specific version of the...

AFAIU any Julia code that yields will hang when run from a Python thread other than the main one. I think it's because Julia doesn't know about the thread so...

PythonCall 0.9.26 just released has the fix - can you try it and check it fixes this issue?

How is this a PythonCall issue? Did you follow the advice in this error message? ``` ERROR: InitError: expected package `Measurements [eff96d63]` to exist in the manifest (use `resolve` to...

What's the bug? You haven't shown any errors.

Thanks. I think the fix is to call `np.asarray` instead of `np.array` when `copy=None` because `np.array(x, copy=None)` is not supported in numpy v1.

My guess is that `Base.unsafe_convert(::Type{Ptr{T}}, ::DimArray)` is not defined, which is required to be wrappable as a python array, since this is how we get a pointer to the underlying...

No it's not new. Can you give an MWE showing it working and not working?

I'm not aware of a decent workaround for this. We do already support conversion of categorical vectors in the other direction. I'd be happy to take a PR to add...