Jeroen Demeyer

Results 88 comments of Jeroen Demeyer

> I am not sure that `-update` does not work, but this is solved by adding flags after `./...` Unfortunately, that breaks if you're also testing other packages which don't...

> indeed it should create a directory in sys.prefix Which it does correctly. However, it _additionally_ does something in `$HOME`. > if your sys-prefix is a subdirectory of home, these...

> It will skip this if either: > > ``` > ~/.ipython does not exist > ``` No, it does not. In my case, `$HOME/.ipython` does not exist. In fact,...

It might be useful to have support for ipywidgets too, for example showing some interact and change the widgets. I know that one can easily modify widgets from Javascript, so...

You can do it with `@interact` too: ```python from ipywidgets import interact import time @interact def f(z=(0,10)): return z^2 slider = f.widget.children[0] for i in range(10): time.sleep(1); slider.value=i ```

On 2017-04-28 12:13, Erik Bray wrote: > At least one (draft) PEP has come out of my work on supporting Sage > on Windows: https://www.python.org/dev/peps/pep-0539/ Cool!

The binderhub instance at https://binderhub.fedcloud-tf.fedcloud.eu seems broken. When launching a notebook, I only see ``` Waiting for build to start... Failed to connect to event stream ```

I have a test notebook for interacts containing interacts from https://wiki.sagemath.org/interact ported to Jupyter. I used those as test-cases for #94.

> Do you know if they work in http://nbviewer.jupyter.org/ ? That renders static HTML pages, which is a bit pointless for interacts.