Re: [Numpy-discussion] Changing the return type of np.histogramdd

2018-04-10 Thread John T. Goetz
On Tue, 2018-04-10 at 09:22 +0200, Jerome Kieffer wrote: > > Either we should: > > > >    1. Just change it, and hope no one is broken by it > >    2. Add a dtype argument: > >   - If dtype=None, behave like np.histogram > >   - If dtype is not specified, emit a future warning > > recommen

Re: [Numpy-discussion] Introduction: NumPy developers at BIDS

2018-04-10 Thread Matthew Brett
Yo, How about weekly open developer hangouts, recorded, to keep it all public? Cheers, Matthew On Tue, Apr 10, 2018 at 5:59 PM, Stefan van der Walt wrote: > Hi Eric, > > On Sun, 08 Apr 2018 08:02:19 -1000, Eric Firing wrote: >> On 2018/04/07 9:19 PM, Stefan van der Walt wrote: >> > We would lo

Re: [Numpy-discussion] Introduction: NumPy developers at BIDS

2018-04-10 Thread Nathan Goldbaum
On Tue, Apr 10, 2018 at 9:59 AM, Stefan van der Walt wrote: > Hi Eric, > > On Sun, 08 Apr 2018 08:02:19 -1000, Eric Firing wrote: > > On 2018/04/07 9:19 PM, Stefan van der Walt wrote: > > > We would love community input on identifying the best areas & issues to > > > pay attention to, > > > > Wha

Re: [Numpy-discussion] Introduction: NumPy developers at BIDS

2018-04-10 Thread Stefan van der Walt
Hi Eric, On Sun, 08 Apr 2018 08:02:19 -1000, Eric Firing wrote: > On 2018/04/07 9:19 PM, Stefan van der Walt wrote: > > We would love community input on identifying the best areas & issues to > > pay attention to, > > What is the best way to provide this, and how will the decisions be > made? Th

Re: [Numpy-discussion] Introduction: NumPy developers at BIDS

2018-04-10 Thread Sebastian Berg
On Tue, 2018-04-10 at 12:29 +0300, Matti Picus wrote: > On 08/04/18 21:02, Eric Firing wrote: > > On 2018/04/07 9:19 PM, Stefan van der Walt wrote: > > > We would love community input on identifying the best areas & > > > issues to > > > pay attention to, > > > > Stefan, > > > > What is the best

Re: [Numpy-discussion] Introduction: NumPy developers at BIDS

2018-04-10 Thread Matti Picus
On 08/04/18 21:02, Eric Firing wrote: On 2018/04/07 9:19 PM, Stefan van der Walt wrote: We would love community input on identifying the best areas & issues to pay attention to, Stefan, What is the best way to provide this, and how will the decisions be made? Eric ___

Re: [Numpy-discussion] Changing the return type of np.histogramdd

2018-04-10 Thread Jerome Kieffer
> Either we should: > >1. Just change it, and hope no one is broken by it >2. Add a dtype argument: > - If dtype=None, behave like np.histogram > - If dtype is not specified, emit a future warning recommending to > use dtype=None or dtype=float > - In future, change