[Numpy-discussion] Re: Intel's Short Vector Math Library has been merged as a git submodule

2021-10-11 Thread Matti Picus
On 11/10/21 11:05 pm, Jerome Kieffer wrote: On Mon, 11 Oct 2021 18:04:58 +0300 Matti Picus wrote: As SciPy already found out, some downstream libraries may need to tweak their tolerances for some functions as a result of this PR. We wanted to put it in early enough in the release cycle so th

[Numpy-discussion] Re: Musllinux wheels

2021-10-11 Thread Stefan van der Walt
On Mon, Oct 11, 2021, at 07:56, Matthew Brett wrote: > My guess is that that would be less than 90 minutes of work for > someone with some Docker experience. I'll give it a shot. Stéfan ___ NumPy-Discussion mailing list -- numpy-discussion@python.org To

[Numpy-discussion] Re: Intel's Short Vector Math Library has been merged as a git submodule

2021-10-11 Thread Jerome Kieffer
On Mon, 11 Oct 2021 18:04:58 +0300 Matti Picus wrote: > As SciPy already found out, some downstream libraries may need to tweak > their tolerances for some functions as a result of this PR. We wanted to > put it in early enough in the release cycle so that we can back it out > fully or partial

[Numpy-discussion] Re: Idea: adding `ndarray.isin` for consistency with pandas

2021-10-11 Thread Stephan Hoyer
Thanks for the suggestion. It isn't a hard rule, but the ndarray namespace is already very large and cluttered, so generally we have avoided adding new methods in recent years. (This policy might be worth codifying in a NEP.) On Mon, Oct 11, 2021 at 7:35 AM Max Ghenis wrote: > `numpy.isin` is e

[Numpy-discussion] Re: Documentation Team meeting - Monday October 11

2021-10-11 Thread Sebastian Berg
On Mon, 2021-10-11 at 13:26 -0300, Melissa Mendonça wrote: > Can you try using this link: > https://zoom.us/j/96219574921?pwd=VTRNeGwwOUlrYVNYSENpVVBRRjlkZz09 > The link includes `pwd=...` its a bit annoying, but you can just copy paste the last bit of the link as the password. Although, there sh

[Numpy-discussion] Re: Documentation Team meeting - Monday October 11

2021-10-11 Thread Rohit Goswami
It works if the entire link is copied into the browser. — Rohit On 11 Oct 2021, at 19:07, Rumanu Bhardwaj wrote: > I'm not able to join without the meeting password ;-; > > On Mon, 11 Oct, 2021, 4:46 am Melissa Mendonça, wrote: > >> Hi all! >> >> Our next Documentation Team meeting will be on *Mo

[Numpy-discussion] Re: Documentation Team meeting - Monday October 11

2021-10-11 Thread Melissa Mendonça
Can you try using this link: https://zoom.us/j/96219574921?pwd=VTRNeGwwOUlrYVNYSENpVVBRRjlkZz09 On Mon, Oct 11, 2021 at 1:10 PM Rumanu Bhardwaj wrote: > I'm not able to join without the meeting password ;-; > > On Mon, 11 Oct, 2021, 4:46 am Melissa Mendonça, > wrote: > >> Hi all! >> >> Our nex

[Numpy-discussion] Re: Documentation Team meeting - Monday October 11

2021-10-11 Thread Rumanu Bhardwaj
I'm not able to join without the meeting password ;-; On Mon, 11 Oct, 2021, 4:46 am Melissa Mendonça, wrote: > Hi all! > > Our next Documentation Team meeting will be on *Monday, October 11* at ***4PM > UTC***. > > All are welcome - you don't need to already be a contributor to join. If > you ha

[Numpy-discussion] Intel's Short Vector Math Library has been merged as a git submodule

2021-10-11 Thread Matti Picus
Yesterday we merged PR 19478 [0] to add a open source version of Intel's Short Vector Math library into NumPy. The original PR was by Raghuveer Devulapalli. There was a lot of discussion on the PR, but now that I look back it seems the mailing list may not have been involved. The code lives in

[Numpy-discussion] Re: Musllinux wheels

2021-10-11 Thread Matthew Brett
Hi, On Mon, Oct 11, 2021 at 3:05 PM Matti Picus wrote: > > On 11/10/21 4:38 pm, Matthew Brett wrote: > > Hi, > > > > It will probably soon be trivial to do a manylinux Alpine build / test > > on multibuild. There's a work on progress PR here, > > > > https://github.com/matthew-brett/multibuild/p

[Numpy-discussion] Idea: adding `ndarray.isin` for consistency with pandas

2021-10-11 Thread Max Ghenis
`numpy.isin` is equivalent to `pandas.{Series,DataFrame}.isin`. Adding `numpy.ndarray.isin` would produce consistency with `pandas` and save 4 characters (`np.isin(x, y)` vs. `x.isin(y)`). I'm adding this idea here in conjunction with filing https://github.com/numpy/numpy/issues/20092 per the i

[Numpy-discussion] Re: Musllinux wheels

2021-10-11 Thread Matti Picus
On 11/10/21 4:38 pm, Matthew Brett wrote: Hi, It will probably soon be trivial to do a manylinux Alpine build / test on multibuild. There's a work on progress PR here, https://github.com/matthew-brett/multibuild/pull/430 that only requires someone to build a trivial test container, in order t

[Numpy-discussion] Re: Musllinux wheels

2021-10-11 Thread Matthew Brett
Hi, It will probably soon be trivial to do a manylinux Alpine build / test on multibuild. There's a work on progress PR here, https://github.com/matthew-brett/multibuild/pull/430 that only requires someone to build a trivial test container, in order to get merged. It's also generally very easy

[Numpy-discussion] Re: Musllinux wheels

2021-10-11 Thread Ralf Gommers
On Mon, Oct 11, 2021 at 2:10 PM Matti Picus wrote: > > On 11/10/21 2:22 pm, Ralf Gommers wrote: > > > > > > On Mon, Oct 11, 2021 at 9:52 AM Laurie O > > wrote: > > > > CI request: build PEP 656 > > (https://www.python.org/dev/peps/pep-0656/ > >

[Numpy-discussion] Re: Musllinux wheels

2021-10-11 Thread Ralf Gommers
On Mon, Oct 11, 2021 at 2:18 PM Andrew Nelson wrote: > > > > I'd say we may perhaps want to do this, but only if and when it becomes > much easier - for example once we have migrated all our wheel build infra > to GitHub Actions and cibuildwheel > > > I've been really impressed with cibuildwheel.

[Numpy-discussion] Re: Musllinux wheels

2021-10-11 Thread Andrew Nelson
> I'd say we may perhaps want to do this, but only if and when it becomes much easier - for example once we have migrated all our wheel build infra to GitHub Actions and cibuildwheel I've been really impressed with cibuildwheel. It works well on my project, so I'd be interested to see how it goes

[Numpy-discussion] Re: Musllinux wheels

2021-10-11 Thread Matti Picus
On 11/10/21 2:22 pm, Ralf Gommers wrote: On Mon, Oct 11, 2021 at 9:52 AM Laurie O > wrote: CI request: build PEP 656 (https://www.python.org/dev/peps/pep-0656/ ) compliant "musllinux" wheels. This

[Numpy-discussion] Re: Musllinux wheels

2021-10-11 Thread Ralf Gommers
On Mon, Oct 11, 2021 at 9:52 AM Laurie O wrote: > CI request: build PEP 656 (https://www.python.org/dev/peps/pep-0656/) > compliant "musllinux" wheels. This will allow easy installation in Alpine > Docker images. GitHub issue: https://github.com/numpy/numpy/issues/20089 Thanks for asking Laurie

[Numpy-discussion] Musllinux wheels

2021-10-11 Thread Laurie O
CI request: build PEP 656 (https://www.python.org/dev/peps/pep-0656/) compliant "musllinux" wheels. This will allow easy installation in Alpine Docker images. GitHub issue: https://github.com/numpy/numpy/issues/20089 ___ NumPy-Discussion mailing list --

[Numpy-discussion] Musllinux wheels

2021-10-11 Thread Laurie O
CI request: build PEP 656 (https://www.python.org/dev/peps/pep-0656/) compliant "musllinux" wheels. This will allow easy installation in Alpine Docker images. GitHub issue: https://github.com/numpy/numpy/issues/20089 ___ NumPy-Discussion mailing list --