Thomas A Caswell

Results 165 issues of Thomas A Caswell

Trying to clone dotfiles with modern (well, fine bleeding edge) git fails: ``` bash ✔ ~ 00:39 $ git clone https://github.com/holman/dotfiles.git Cloning into 'dotfiles'... remote: Counting objects: 2026, done. error:...

```python import matplotlib.pyplot as plt fig, ax = plt.subplots() n = 0 def printer(event): global n print(f'in event {event}') n += 1 fig.canvas.mpl_connect('button_press_event', printer) ``` when run in IPython prints...

Due to https://github.com/matplotlib/matplotlib/pull/10292 during a save operation we temporarily remove the manager ```python %matplotlib widget import matplotlib.pyplot as plt plt.plot(range(5)) fig = plt.gcf() ## new cell fig ``` and you...

## PR Summary This is a rebase of #20804 and ##20832, given that there was not a lot of discussion on either PR, I am making a new PR rather...

backend/ps
backend/pdf
topic: text/fonts

We need newer versions of c++ for the font fallback. A compatible version of pip is in the CPython source for manylinux2010 : py 3.8.0+ manylinux2014 : py 3.9.0+ https://github.com/pypa/manylinux#manylinux

Release critical
Run cibuildwheel

I spent some time yesterday and today trying to get tests to run on old versions of Matplotlib which....was harder than I wished it would be. We may want to...

Difficulty: Medium
Good first issue

Following on to #22756 > setuptools 60 re-enabled their local copy of distutils: pypa/setuptools#2896 > > This apparently fails to set up paths that can find msbuild, so switch back...

Currently if the Qt input hook runs and there is not as exiting QApplication IPython will create one for the user and then spin it. On one hand this is...

This is a very quick implementation of what I proposed in #19 . Still needs tests, typing, and documentation (and better names!), but I think is a reasonable proof of...