Thomas Kluyver
Thomas Kluyver
It also looks like Alt-Enter is supposed to execute the code directly from search mode, but that's not currently working for me. We may have done something to break it.
I see you've already switched to a different build system, so no need to do anything there. I was just searching Github for anything still using `flit.buildapi`.
If you're using IPython in the terminal (running the command `ipython` to start it), then look at the [Integrating with a new event loop in the terminal](https://ipython.readthedocs.io/en/stable/config/eventloops.html#integrating-with-a-new-event-loop-in-the-terminal) section in the...
As things stand, the tests are failing to install some dependencies of Jupyter: https://github.com/jupyter-server/jupyter_server/issues/1473 It might be possible to work around that by testing without nbdime and skipping the relevant...
I haven't seen that error before, and I haven't used gitlab registry, but my first thought is that it might be related to authentication. Take a look at https://flit.pypa.io/en/stable/upload.html and...
I don't think this is a regression in Numpy 2.0 - we're seeing the same symptoms in 1.26.4: ```text ❯ time python -c "import numpy" python -c "import numpy" 11.51s...
I should have mentioned that we use the builds from conda-forge rather than the wheels. But I think in the example you showed, it also looks like it's happening in...
Do you have a file called `jinja2.py`? If so, Python is finding that instead of the real jinja2 package; you'll need to remove/rename it to make it work. If it's...
Open a Python shell, do `import jinja2` and then `print(jinja2)` to see what file it's being loaded from. Make sure it's the real [Jinja2](https://pypi.python.org/pypi/Jinja2) package.
Not only Binder - I'm also seeing this running `jupyter notebook` locally.