Re: [Numpy-discussion] NumPy-Discussion Digest, Vol 161, Issue 14

2020-02-14 Thread Inessa Pawson
Documentation is imperative for project sustainability, yet often overlooked. Millions of NumPy stakeholders will benefit from this initiative. Melissa, Mars and Ralf, thank you for taking a lead on this! On Thu, Feb 13, 2020 at 3:05 AM wrote: > Send NumPy-Discussion mailing list submissions to

Re: [Numpy-discussion] Py-API: Deprecate `np.dtype(np.floating)` and similar dtype creation

2020-02-14 Thread Nathan
Yeah, that seems to be more popular: https://github.com/search?q=%22dtype%3Dnp.integer%22&type=Code On Fri, Feb 14, 2020 at 2:45 PM Sebastian Berg wrote: > On Fri, 2020-02-14 at 14:39 -0700, Nathan wrote: > > For what it's worth, github search only finds two instances of this > > usage: > > > >

Re: [Numpy-discussion] Py-API: Deprecate `np.dtype(np.floating)` and similar dtype creation

2020-02-14 Thread Sebastian Berg
On Fri, 2020-02-14 at 14:39 -0700, Nathan wrote: > For what it's worth, github search only finds two instances of this > usage: > > https://github.com/search?q=%22np.dtype%28np.floating%29%22&type=Code > In most common thing I would expect to be `dtype=np.integer` (possibly without the `dtype` a

Re: [Numpy-discussion] Py-API: Deprecate `np.dtype(np.floating)` and similar dtype creation

2020-02-14 Thread Nathan
For what it's worth, github search only finds two instances of this usage: https://github.com/search?q=%22np.dtype%28np.floating%29%22&type=Code On Fri, Feb 14, 2020 at 2:28 PM Sebastian Berg wrote: > Hi all, > > In https://github.com/numpy/numpy/pull/15534 I would like to start > deprecating c

[Numpy-discussion] Py-API: Deprecate `np.dtype(np.floating)` and similar dtype creation

2020-02-14 Thread Sebastian Berg
Hi all, In https://github.com/numpy/numpy/pull/15534 I would like to start deprecating creating dtypes from "abstract" scalar classes, such as: np.dtype(np.floating) is np.dtype(np.float64) While, at the same time, `isinstance(np.float32, np.floating)` is true. Right now `arr.astype(np.floating

Re: [Numpy-discussion] manylinux2010.

2020-02-14 Thread Charles R Harris
On Fri, Feb 14, 2020 at 12:48 PM Mark Harfouche wrote: > Chuck, > > Cool stuff! > > Will manylinux1 wheels compiled with older numpy (say 1.14) work with > manylinux2010 wheels? > > What is your recommendation for downstream projects that depend on > Cython/numpy to do? > > Do you have a document

Re: [Numpy-discussion] manylinux2010.

2020-02-14 Thread Mark Harfouche
Chuck, Cool stuff! Will manylinux1 wheels compiled with older numpy (say 1.14) work with manylinux2010 wheels? What is your recommendation for downstream projects that depend on Cython/numpy to do? Do you have a document we can read? Mark On Fri, Feb 14, 2020 at 11:05 AM Charles R Harris wro

[Numpy-discussion] manylinux2010.

2020-02-14 Thread Charles R Harris
Hi All, Just a note that I've moved the nightly NumPy wheels builds to manylinux2010. Downstream projects testing against those wheels should check that they are using pip >= 19.0 in order to fetch those wheels. If there are any problems, please note them here. Chuck _