Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Changelog

All notable changes to this project will be documented in this file.

## [0.3.2] - 2025-07-14
### Added
- Support for Numpy 2.x deprecations. Complex and float types are
detected based on the installed Numpy version.
- Explicit dependency on the `packaging` module.

7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,10 @@ with open(json_file, 'w') as file:
cls=NumpyEncoder
)
```

## Installation

```
pip install numpyencoder==0.3.2
```

10 changes: 10 additions & 0 deletions numpyencoder/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,11 @@
"""Top level package for ``numpyencoder``.

Exposes :class:`~numpyencoder.numpyencoder.NumpyEncoder` for convenient
imports and defines the package ``__version__``.
"""

from .numpyencoder import NumpyEncoder

__version__ = "0.3.2"

__all__ = ["NumpyEncoder", "__version__"]