NumPy 1.15.0 is out and is said to include a lot of changes including several cleanups, deprecations of old functions. It also includes improvements to many existing functions. The Python versions supported by NumPy 1.15.0 are 2.7, 3.4 to 3.7.
with np.printoptions(precision=2):
... print(np.array([2.0]) / 3)
[0.67]
Both np.gcd and np.lcm used for computing the greatest common divisor, and the lowest common multiple respectively. These work on all the numpy integer types, as well as the
built in arbitrary-precision Decimal and long types.
The build system in this version has been modified to add support for the _PYTHON_HOST_PLATFORM environment variable, used by distutils when
compiling on one platform for another platform. This makes it possible to compile NumPy for iOS targets.
New keyword return_indices returns the indices of the two input arrays that correspond to the common elements.
This version has an added experimental support for the 64-bit RISC-V architecture.
Both NumPy 1.16 and NumPy 1.17 will be dropping support for Python 3.4 and Python 2.7 respectively.
Read more about this release in detail on its GitHub Page