Johan Mabille

Results 275 comments of Johan Mabille

Not really, I need to do some cmake archeology. We also need to check which version of cmake is installed on "recent" release of Ubuntu (or check if updating CMake...

It seems the error comes from [this line](https://github.com/QuantStack/xtensor-blas/blob/35210cf868dc9ab9f5737a6776fc547fba7295ec/include/xtensor-blas/xblas.hpp#L253), I think the last parameter should be `result.shape().front()`. That being said, I don't understand why it works in `row_major`. Maybe I missed...

You have an old version of xtensor installed on your system, you should upgrade to the latest. The package for Debian / Ubuntu is not maintained anymore, so you should...

Thanks for reporting! We are a bit swamped with other tasks, we'll have a look as soon as we can.

Hi @vidartf , Sorry for the late reply, but I have now the whole story ;) When sending a `Source` [request](https://microsoft.github.io/debug-adapter-protocol/specification#Requests_Source), you need to provide a `sourceReference` argument because of...

Regarding the implementation with a new zmq channel, the advantages would be: - no usage of the Queue (which is a synchronization object and should be avoided if we follow...

We want the user to be able to step into the stdlib, not to force him to step into the internals of ipykernel. When you debug, if you click `next`...

The issue is that with the current implementation, as soon as you allow to debug external libraries (whatever they are), you cannot execute a next request when stopped in a...

I see two options to fix this issue (but there are probably others): - either we consider that a kernel busy means something is running on the shell channel, the...