[Numpy-discussion] Re: Cirrus testing

2023-08-15 Thread Andrew Nelson
On Wed, 16 Aug 2023 at 10:51, Andrew Nelson wrote: > There's a scipy issue on this that discusses how to reduce usage, > https://github.com/scipy/scipy/issues/19006. > > Main points: > > - at the moment CI is run on PR and on Merge. Convert to only running on > PR commits. I've just submitted a P

[Numpy-discussion] Re: Cirrus testing

2023-08-15 Thread Andrew Nelson
There's a scipy issue on this that discusses how to reduce usage, https://github.com/scipy/scipy/issues/19006. Main points: - at the moment CI is run on PR and on Merge. Convert to only running on PR commits. I've just submitted a PR to do this for numpy. - add a manual trigger. Simple to achieve

[Numpy-discussion] Re: Add to NumPy a function to compute cumulative sums from 0.

2023-08-15 Thread Dom Grigonis
With this I agree, this sounds like a more radical (in a good way) solution. > So I think this is a feature request of "prepend", "append" in a convenient > fashion not to ufuncs but to ndarray. Because concatenation is just pain in > NumPy and ubiquitous operation all around. Hence probably we

[Numpy-discussion] Re: Add to NumPy a function to compute cumulative sums from 0.

2023-08-15 Thread Dom Grigonis
> On 14 Aug 2023, at 15:22, john.daw...@camlingroup.com wrote: > >> From my point of view, such function is a bit of a corner-case to be added >> to numpy. And it doesn’t justify it’s naming anymore. It is not one >> operation anymore. It is a cumsum and prepending 0. And it is very difficult

[Numpy-discussion] Re: Cirrus testing

2023-08-15 Thread Ralf Gommers
On Tue, Aug 15, 2023 at 4:19 PM Charles R Harris wrote: > Hi All, > > This is a heads up that we have already exceeded our allotment of free > time on Cirrus CI. They are giving us a pass this month, but next month > they will start enforcing the limits. That will impact both our testing and > ou

[Numpy-discussion] Cirrus testing

2023-08-15 Thread Charles R Harris
Hi All, This is a heads up that we have already exceeded our allotment of free time on Cirrus CI. They are giving us a pass this month, but next month they will start enforcing the limits. That will impact both our testing and our releases. We have taken steps to reduce our use of Cirrus, but it c

[Numpy-discussion] Re: Add to NumPy a function to compute cumulative sums from 0.

2023-08-15 Thread Ilhan Polat
On Tue, Aug 15, 2023 at 2:44 PM wrote: > > From my point of view, such function is a bit of a corner-case to be > added to numpy. And it doesn’t justify it’s naming anymore. It is not one > operation anymore. It is a cumsum and prepending 0. And it is very > difficult to argue why prepending 0 to

[Numpy-discussion] Re: Add to NumPy a function to compute cumulative sums from 0.

2023-08-15 Thread john . dawson
> From my point of view, such function is a bit of a corner-case to be added to > numpy. And it doesn’t justify it’s naming anymore. It is not one operation > anymore. It is a cumsum and prepending 0. And it is very difficult to argue > why prepending 0 to cumsum is a part of cumsum. That is ba