Tobias Pfeiffer
Tobias Pfeiffer
I was just wondering: Is there any chance if this being merged/deployed in the near future? Otherwise we will have to rename our tool or pick some other installation method.
@konradhalas Please let me ask for your opinion on how I should address this issue. As I wrote in the issue above, generic type annotations for `numpy.ndarray` are now possible...
> If I run papermill on the notebook, then the widget is not displayed correctly (it just displays the text representation of the widgets) I have the same issue. The...
This behavior also shows in ProtoUser.validateUser, i.e. the notice "account.validated" will never show.
This seems rather easy to fix. When I replace ``` scala def validateUser(id: String): NodeSeq = findUserByUniqueId(id) match { case Full(user) if !user.validated_? => user.setValidated(true).resetUniqueId().save logUserIn(user, () => { S.notice(S.??("account.validated"))...
I have seen this failing for a project that uses `pyproject.toml` (PEP517 install flow), where it works fine for projects without `pyproject.toml`. @siddalmia has described the same behavior in https://github.com/pytorch/fairseq/issues/1977....
> Do all the thread receive the SIGINT or just one of them at random? Python programs always process signals in the main thread, see : "Python signal handlers are...
Yes, I think with threads it's hard to stop processing from the "outside" without tearing down the whole process. Maybe we must pass an additional parameter `is_stopped: threading.Event` to `f`...
Related to https://github.com/jupyter/notebook/issues/641#issuecomment-872469554: I have tried the Jupyter collaboration feature in the latest release (3.3.3) and I found out that if user A starts a long-running computation, then the output...
Just as a note, not sure how relevant it is to this issue: I tried to add type annotations to the [python-measurement](https://github.com/coddingtonbear/python-measurement) library a while ago, hoping that I could...