[Numpy-discussion] NumPy master open for 1.18 development.

2019-06-30 Thread Charles R Harris
Hi All, NumPy 1.17.x has been branched. Chuck ___ NumPy-Discussion mailing list NumPy-Discussion@python.org https://mail.python.org/mailman/listinfo/numpy-discussion

[Numpy-discussion] NumPy 1.17.0rc1 released

2019-06-30 Thread Charles R Harris
Hi All, On behalf of the NumPy team I am pleased to announce the release of NumPy 1.17.0rc1. The 1.17 release contains a number of new features that should substantially improve its performance and usefulness. The Python versions supported are 3.5-3.7, note that Python 2.7 has been dropped. Python

Re: [Numpy-discussion] NumPy 1.17.0rc1 released

2019-06-30 Thread Juan Nunez-Iglesias
Hi Chuck, and thanks for putting this together! It seems the release has broken existing uses of dask array with `np.min` (I presume among other functions): https://github.com/dask/dask/issues/5031 Perhaps `__array_function__` should be switched off for one more release cycle? I imagine that s

[Numpy-discussion] __array_function related regression for 1.17.0rc1

2019-06-30 Thread Ralf Gommers
On Mon, Jul 1, 2019 at 6:08 AM Juan Nunez-Iglesias wrote: > Hi Chuck, and thanks for putting this together! > > It seems the release has broken existing uses of dask array with `np.min` > (I presume among other functions): > > https://github.com/dask/dask/issues/5031 > > Perhaps `__array_function

Re: [Numpy-discussion] __array_function related regression for 1.17.0rc1

2019-06-30 Thread Juan Nunez-Iglesias
On Mon, 1 Jul 2019, at 2:34 PM, Ralf Gommers wrote: > This issue is not very surprising - __array_function__ is going to have a > fair bit of backwards compat impact for people who were relying on feeding > all sorts of stuff into numpy functions that previously got converted with > asarray. A

[Numpy-discussion] PyPI NumPy account changes

2019-06-30 Thread Ralf Gommers
Hi all, PyPI now has taken 2FA (two-factor authentication) in production, which is a useful security measure I think. Also, Tidelift is able to measure which accounts have 2FA enabled. I had a look at our PyPI account, and there were many owners of it. This isn't great from a security perspective

Re: [Numpy-discussion] __array_function related regression for 1.17.0rc1

2019-06-30 Thread Ralf Gommers
On Mon, Jul 1, 2019 at 7:37 AM Juan Nunez-Iglesias wrote: > > > On Mon, 1 Jul 2019, at 2:34 PM, Ralf Gommers wrote: > > This issue is not very surprising - __array_function__ is going to have a > fair bit of backwards compat impact for people who were relying on feeding > all sorts of stuff into