All Versions
25
Latest Version
Avg Release Cycle
60 days
Latest Release
314 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v2.4.0 Changes
November 14, 2022- โ Added hint for pandas DataFrame.
- ๐ Fixed bug for checking against a Structure where a different number of fields did not fail the check.
- ๐ Changed
nptyping.Int
pointing to the more genericnumpy.integer
rather thannumpy.int32
. - โ Added support for Python 3.11 with the exception of
pandas.DataFrame
.
-
v2.3.1 Changes
August 30, 2022- ๐ Fixed mypy error of inheriting final dtype as of numpy==1.23.1.
- ๐ Allowed for quotes in shape expressions to appease PyCharm.
-
v2.3.0 Changes
August 28, 2022- โ Added support for subarrays with shape expressions inside structure expressions.
- โ Added support for wildcards in structure expressions.
-
v2.2.0 Changes
June 26, 2022- โ Added support for expressing "at least N dimensions".
-
v2.1.3 Changes
June 19, 2022- ๐ Fixed typing issue with Pyright/Pylance that caused the message: "Literal" is not a class
- ๐ Fixed wrong error message when an invalid
Structure
was provided toNDArray
.
-
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