All Versions
20
Latest Version
Avg Release Cycle
64 days
Latest Release
24 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v2.1.2 Changes
June 08, 2022- Fixed bug that caused MyPy to fail with the message: Value of type variable "_DType_co" of "ndarray" cannot be "floating[Any]"
-
v2.1.1 Changes
June 01, 2022- ๐ Fixed bug that numpy ndarrays were incorrectly instance checked against
RecArray
.
- ๐ Fixed bug that numpy ndarrays were incorrectly instance checked against
-
v2.1.0 Changes
June 01, 2022- โ Added
Structure
and "structure expressions" to support structured arrays. - โ Added
RecArray
.
- โ Added
-
v2.0.1 Changes
April 28, 2022๐ Thanks to Jasha10 for this release.
- โ Added an improved default message for
assert_isinstance
.
๐ Also some typos in README, in
test_mypy.py
and some style corrections. - โ Added an improved default message for
-
v2.0.0 Changes
April 07, 2022๐ Changes since
1.4.4
:- ๐ Changed the interface of
NDArray
intoNDArray[SHAPE, DTYPE]
- โ Added MyPy-acceptance (limited static type checking)
- โ Added support for variables
- โ Added support for labels and named dimensions
- โ Added support for all numpy dtypes with
NDArray
- โ Added support for dynamic type checker: beartype
- โ Added support for dynamic type checker: typeguard
- โ Added autocompletion for all attributes of
ndarray
- โ Added CONTRIBUTING.md
- โ Removed support for Python 3.5 and Python 3.6
- ๐ Changed the interface of
-
v2.0.0.a2 Changes
March 27, 2022- ๐ Changed the interface of
NDArray
: switched the order toNDArray[SHAPE, DTYPE]
to be compatible tonumpy.ndarray.pyi
- โ Added autocompletion for all attributes of
ndarray
by changing the implementation ofNDArray
- โ Added CONTRIBUTING.md
- โ Added support for dynamic type checker: beartype
- โ Added support for dynamic type checker: typeguard
- ๐ Changed the interface of
-
v2.0.0.a1 Changes
March 19, 2022- ๐ Changed the interface of
NDArray
- โ Added MyPy-acceptance (limited static type checking)
- โ Added support for variables
- โ Added support for labels and named dimensions
- โ Added support for all numpy dtypes with
NDArray
- โ Removed support for Python 3.5 and Python 3.6
- ๐ Changed the interface of
-
v1.4.4 Changes
September 10, 2021- ๐ Fixed instance checks with 0d arrays.
-
v1.4.3 Changes
August 05, 2021- ๐ Fixed setup.py to exclude test(-resources) in the wheel.
-
v1.4.2 Changes
May 08, 2021- ๐ Fixed instance check that was incompatible with
typish==1.9.2
.
- ๐ Fixed instance check that was incompatible with