Skip to content

Commit 205b34e

Browse files
ConchylicultorThe kauldron Authors
authored andcommitted
Fix numpy 2 compatibility
PiperOrigin-RevId: 725567326
1 parent b21d25d commit 205b34e

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ Changelog follow the https://keepachangelog.com/ standard (at least the headers)
88

99
## [Unreleased]
1010

11+
## [1.1.1] - 2025-02-11
12+
13+
* Restore numpy 1.26 compatibility
14+
1115
## [1.1.0] - 2025-02-07
1216

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

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

108-
[Unreleased]: https://github.com/google-research/kauldron/compare/v1.1.0...HEAD
112+
[Unreleased]: https://github.com/google-research/kauldron/compare/v1.1.1...HEAD
113+
[1.1.1]: https://github.com/google-research/kauldron/releases/tag/v1.1.0...v1.1.1
109114
[1.1.0]: https://github.com/google-research/kauldron/releases/tag/v1.0.0...v1.1.0
110115
[1.0.0]: https://github.com/google-research/kauldron/releases/tag/v0.1.0...v1.0.0
111116
[0.1.0]: https://github.com/google-research/kauldron/releases/tag/v0.1.0

kauldron/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

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

2626

2727
def __getattr__(name: str): # pylint: disable=invalid-name

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ dependencies = [
3030
"lark",
3131
"mediapy",
3232
"ml_collections",
33-
"numpy>2",
33+
"numpy",
3434
"opencv-python", # speeds up pygrain image loading
3535
"optax",
3636
"orbax-checkpoint",

0 commit comments

Comments
 (0)