Thomas Kluyver
Thomas Kluyver
I consider pickleshare to be in maintenance only mode, with updates only for crucial bugfixes. So probably not. If you want to fork it (joblibshare?), I'd be ok with that....
If anyone else is still seeing the `no attribute 'cumproduct'` error, note that NumPy 2.0 is compatible with Python 3.9 and up, but Pint 0.24 requires Python 3.10 or above....
Unfortunately I don't think that a new point release with metadata saying it needs numpy 1.x really solves this, because the dependency resolver is still free to pick pint 0.23,...
Thanks, that would be great! That was the branch I was trying on, working forwards from the 0.23 tag and trying to cherry pick the necessary changes. I tried working...
Thanks! Yes, looking at the diff, that was much easier than what I was trying On Fri, 21 Jun 2024, 09:42 andrewgsavage, ***@***.***> wrote: > I've got 0.24 working with...
Thanks @andrewgsavage !
The equivalent component in trunk seems to be IPython.frontend.terminal.InteractiveShellEmbed. But that's broken in other ways, and evidently hasn't been tested much. Does anyone know what its future is?
Could this be the same issue as #136?
This is somewhat complicated, but I believe that's a restriction in Python itself. In the failing case you show, `time` is not actually put into the global namespace: because you...
By the oddities of Python scoping, in standard Python/IPython, we're not actually creating a closure. `d` is a global variable, and the rules for accessing those work differently from closures....