Thanks for clarifying! In that case I think endorsing SPEC 7 makes sense.
On Tue, Oct 8, 2024 at 3:08 PM Robert Kern wrote:
> On Tue, Oct 8, 2024 at 8:36 AM Nathan via NumPy-Discussion <
> numpy-discussion@python.org> wrote:
>
>>
>> Since the legacy RNG interface
Regarding thread safety - that's not a problem. At least for Python 3.13,
the GIL is temporarily re-enabled during imports. That won't necessarily be
true in the future, but separately CPython also uses per-module locks on
import, so there shouldn't be any issues with threads simultaneously
importi
Here's a github code search for the string "np.matrix":
https://github.com/search?q=%22np.matrix%22&type=code
First, if you narrow down to just Python code, there are almost 60 thousand
results, which is quite high, much higher than we we're comfortable with
for outright removals for NumPy 2.0.
Improvements to the promoters for some of the string ufuncs:
https://github.com/numpy/numpy/pull/27636
Support for stringdtype arrays in the type hints and typing support for the
string ufuncs:
https://github.com/numpy/numpy/pull/27470
If you have a particular improvement you’re looking for I’d l
Hi all,
GitHub is rolling out the new UI for issues, which includes a lot of new
opportunities to reorganize our backlog. More detail on the changelog blog:
https://github.blog/changelog/2025-01-13-evolving-github-issues-public-preview/
In particular, there is now much richer support for tracking
NumPy probably isn’t the right spot for this - we’re very conservative
about adding new functionality to NumPy that might also live in SciPy.
SciPy has convolution functionality but I’m not sure if they would want
greenfield code for this. Definitely worth asking the SciPy developers.
That said, h
If functionality is available in SciPy we usually don’t consider adding it
to NumPy. That rules out adding eig.
Is there any reason why polyeig doesn’t make sense to add to SciPy instead
of NumPy? Generally if functionality makes sense to add to SciPy that’s
where we point people to.
On Thu, Jun