Skip to content

Commit 62e1c6d

Browse files
awaelchlilantiga
authored andcommitted
Release 2.2.2
1 parent b5deb6f commit 62e1c6d

File tree

4 files changed

+11
-1
lines changed

4 files changed

+11
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,7 @@ module = [
243243
"lightning.app.utilities.state",
244244
"lightning.app.utilities.tracer",
245245
"lightning.app.utilities.tree",
246+
"lightning.data.streaming.serializers",
246247
"lightning.store.utils",
247248
]
248249
ignore_errors = "True"

src/lightning/pytorch/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
66

77

8+
## [2.2.2] - 2024-04-11
9+
10+
### Fixed
11+
12+
- Fixed an issue causing a TypeError when using `torch.compile` as a decorator ([#19627](https://github.com/Lightning-AI/pytorch-lightning/pull/19627))
13+
14+
815
## [2.2.1] - 2024-03-04
916

1017
### Fixed

src/lightning/pytorch/loggers/logger.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
from lightning.fabric.loggers.logger import rank_zero_experiment # noqa: F401 # for backward compatibility
2828
from lightning.pytorch.callbacks.model_checkpoint import ModelCheckpoint
2929

30+
__doctest_skip__ = ["merge_dicts"]
31+
3032

3133
class Logger(FabricLogger, ABC):
3234
"""Base class for experiment loggers."""

src/version.info

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.2.1
1+
2.2.2

0 commit comments

Comments
 (0)