File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,6 +8,19 @@ Changelog follow the https://keepachangelog.com/ standard (at least the headers)
88
99## [ Unreleased]
1010
11+ ## [ 1.3.0] - 2025-04-28
12+
13+ * ` --xp.debug.catch_post_mortem ` flag now works externally as well
14+ * Fixed a problem with ` init_transforms ` that affected ` optim.decay_to_init `
15+ * Further removed deprecated summaries protocol
16+ * Fixes regarding ` grain ` workers and non-thread-safe imports such as ` einops `
17+ * Lifted jit restriction for merging ` auto_state.sum_field `
18+ * Added support for ` ImmutableDict ` inside ` konfig `
19+ * Added ` ShowTexts ` summary
20+ * Make grain an optional dependency on Windows
21+ * Reduced logging noise
22+ * Several other minor bugfixes
23+
1124## [ 1.2.1] - 2025-03-10
1225
1326* Minor bug fixes.
@@ -123,6 +136,7 @@ Changelog follow the https://keepachangelog.com/ standard (at least the headers)
123136< !-- mdlint off(LINK_UNUSED_ID ) -- >
124137
125138[Unreleased]: https:// github.com/ google- research/ kauldron/ compare/ v1.2.0... HEAD
139+ [1.3 .0]: https:// github.com/ google- research/ kauldron/ compare/ v1.2.0... HEAD
126140[1.1 .1]: https:// github.com/ google- research/ kauldron/ releases/ tag/ v1.1.1... v1.2.0
127141[1.1 .1]: https:// github.com/ google- research/ kauldron/ releases/ tag/ v1.1.0... v1.1.1
128142[1.1 .0]: https:// github.com/ google- research/ kauldron/ releases/ tag/ v1.0.0... v1.1.0
Original file line number Diff line number Diff line change 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.2.1 '
24+ __version__ = '1.2.2 '
2525
2626
2727def __getattr__ (name : str ): # pylint: disable=invalid-name
Original file line number Diff line number Diff line change @@ -39,14 +39,11 @@ dependencies = [
3939 " scikit-learn" ,
4040 " tabulate" , # used by pandas.DataFrame.to_markdown (for logging context)
4141 " tensorflow" ,
42- " tfds-nightly" , # TODO(klausg): switch back to tensorflow_datasets>=4.9.7
43- # once released: https://github.com/tensorflow/datasets/commit/d4bfd59863c6cb5b64d043b7cb6ab566e7d92440
42+ " tensorflow_datasets>=4.9.7" ,
4443 " tqdm" ,
4544 " typeguard>=4.4.1" ,
4645 " typing_extensions" ,
4746 " xmanager" ,
48- # lazy deps (should ideally remove those)
49- # "grand_vision",
5047]
5148
5249# This is set automatically by flit using `kauldron.__version__`
You can’t perform that action at this time.
0 commit comments