Skip to content

Commit d9ba857

Browse files
tchatonBorda
authored andcommitted
version 1.0.7 & update changelog
increase version
1 parent 5bb5b14 commit d9ba857

File tree

2 files changed

+6
-16
lines changed

2 files changed

+6
-16
lines changed

CHANGELOG.md

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -33,28 +33,18 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
3333

3434
### Added
3535

36-
- Added lambda closure to manual_optimizer_step ([#4618](https://github.com/PyTorchLightning/pytorch-lightning/pull/4618))
36+
- Added lambda closure to `manual_optimizer_step` ([#4618](https://github.com/PyTorchLightning/pytorch-lightning/pull/4618))
3737

3838
### Changed
3939

40-
- Ci: tpu drop install horovod ([#4622](https://github.com/PyTorchLightning/pytorch-lightning/pull/4622))
41-
- Ci: Added isort import check for the code on pull-request ([#4242](https://github.com/PyTorchLightning/pytorch-lightning/pull/4242))
42-
- Increase parity ([#4651](https://github.com/PyTorchLightning/pytorch-lightning/pull/4651))
43-
- Isolate `PL_DEV_DEBUG` with `unittest.mock` ([#4643](https://github.com/PyTorchLightning/pytorch-lightning/pull/4643))
44-
- Improve test for `training_step` with no return ([#4109](https://github.com/PyTorchLightning/pytorch-lightning/pull/4109))
45-
- Updated `CODEOWNERS` ([#4610](https://github.com/PyTorchLightning/pytorch-lightning/pull/4610), [#4610](https://github.com/PyTorchLightning/pytorch-lightning/pull/4610))
46-
- Change default behaviour of state dict in Metrics ([#4685](https://github.com/PyTorchLightning/pytorch-lightning/pull/4685))
40+
- Change Metrics `persistent` default mode to `False` ([#4685](https://github.com/PyTorchLightning/pytorch-lightning/pull/4685))
4741

4842

4943
### Fixed
5044

5145
- Prevent crash if `sync_dist=True` on CPU ([#4626](https://github.com/PyTorchLightning/pytorch-lightning/pull/4626))
5246
- Fixed average pbar Metrics ([#4534](https://github.com/PyTorchLightning/pytorch-lightning/pull/4534))
53-
- Fixed logger docs and api docs ([#3950](https://github.com/PyTorchLightning/pytorch-lightning/pull/3950))
5447
- Fixed `setup` callback hook to correctly pass the LightningModule through ([#4608](https://github.com/PyTorchLightning/pytorch-lightning/pull/4608))
55-
- Fixed docs typo ([#4659](https://github.com/PyTorchLightning/pytorch-lightning/pull/4659), [#4670](https://github.com/PyTorchLightning/pytorch-lightning/pull/4670),
56-
[##4715](https://github.com/PyTorchLightning/pytorch-lightning/pull/#4715), [##4722](https://github.com/PyTorchLightning/pytorch-lightning/pull/#4722))
57-
- Fixed notebooks typo ([#4657](https://github.com/PyTorchLightning/pytorch-lightning/pull/4657))
5848
- Allowing decorate model init with saving `hparams` inside ([#4662](https://github.com/PyTorchLightning/pytorch-lightning/pull/4662))
5949
- Fixed `split_idx` set by `LoggerConnector` in `on_trainer_init` to `Trainer` ([#4697](https://github.com/PyTorchLightning/pytorch-lightning/pull/4697))
6050

@@ -72,7 +62,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
7262
### Changed
7363

7464
- Changed `fsspec` to tuner ([#4458](https://github.com/PyTorchLightning/pytorch-lightning/pull/4458))
75-
- Unify sLURM/TorchElastic under backend plugin ([#4578](https://github.com/PyTorchLightning/pytorch-lightning/pull/4578),
65+
- Unify SLURM/TorchElastic under backend plugin ([#4578](https://github.com/PyTorchLightning/pytorch-lightning/pull/4578),
7666
[#4580](https://github.com/PyTorchLightning/pytorch-lightning/pull/4580),
7767
[#4581](https://github.com/PyTorchLightning/pytorch-lightning/pull/4581),
7868
[#4582](https://github.com/PyTorchLightning/pytorch-lightning/pull/4582),

pytorch_lightning/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Root package info."""
22

3-
__version__ = '1.0.7rc0'
3+
__version__ = '1.0.7'
44
__author__ = 'William Falcon et al.'
55
__author_email__ = 'waf2107@columbia.edu'
66
__license__ = 'Apache-2.0'
@@ -53,11 +53,11 @@
5353
sys.stdout.write(f'Partial import of `{__name__}` during the build process.\n') # pragma: no-cover
5454
# We are not importing the rest of the lightning during the build process, as it may not be compiled yet
5555
else:
56-
from pytorch_lightning.core import LightningDataModule, LightningModule
56+
from pytorch_lightning import metrics
5757
from pytorch_lightning.callbacks import Callback
58+
from pytorch_lightning.core import LightningDataModule, LightningModule
5859
from pytorch_lightning.trainer import Trainer
5960
from pytorch_lightning.utilities.seed import seed_everything
60-
from pytorch_lightning import metrics
6161

6262
__all__ = [
6363
'Trainer',

0 commit comments

Comments
 (0)