Skip to content

Commit

Permalink
Fix numpy 2 compatibility
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 725567326
  • Loading branch information
Conchylicultor authored and The kauldron Authors committed Feb 11, 2025
1 parent b21d25d commit 205b34e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ Changelog follow the https://keepachangelog.com/ standard (at least the headers)

## [Unreleased]

## [1.1.1] - 2025-02-11

* Restore numpy 1.26 compatibility

## [1.1.0] - 2025-02-07

* Add `kd.nn.WrapperModule` to make a inner-module transparent with
Expand Down Expand Up @@ -105,7 +109,8 @@ Changelog follow the https://keepachangelog.com/ standard (at least the headers)

<!-- mdlint off(LINK_UNUSED_ID) -->

[Unreleased]: https://github.com/google-research/kauldron/compare/v1.1.0...HEAD
[Unreleased]: https://github.com/google-research/kauldron/compare/v1.1.1...HEAD
[1.1.1]: https://github.com/google-research/kauldron/releases/tag/v1.1.0...v1.1.1
[1.1.0]: https://github.com/google-research/kauldron/releases/tag/v1.0.0...v1.1.0
[1.0.0]: https://github.com/google-research/kauldron/releases/tag/v0.1.0...v1.0.0
[0.1.0]: https://github.com/google-research/kauldron/releases/tag/v0.1.0
2 changes: 1 addition & 1 deletion kauldron/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

# A new PyPI release will be pushed everytime `__version__` is increased
# When changing this, also update the CHANGELOG.md
__version__ = '1.1.0'
__version__ = '1.1.1'


def __getattr__(name: str): # pylint: disable=invalid-name
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ dependencies = [
"lark",
"mediapy",
"ml_collections",
"numpy>2",
"numpy",
"opencv-python", # speeds up pygrain image loading
"optax",
"orbax-checkpoint",
Expand Down

0 comments on commit 205b34e

Please sign in to comment.