Skip to content

Commit 3415323

Browse files
carmoccalexierule
authored andcommitted
Update versions after recent PyTorch releases (#9623)
update changelog
1 parent 10be4b8 commit 3415323

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

CHANGELOG.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
4141
- Fixed signature of `Timer.on_train_epoch_end` and `StochasticWeightAveraging.on_train_epoch_end` to prevent unwanted deprecation warnings ([#9347](https://github.com/PyTorchLightning/pytorch-lightning/pull/9347))
4242

4343

44-
- Fixed error reporting in DDP process reconciliation when processes are launched by an external agent ([#9389](https://github.com/PyTorchLightning/pytorch-lightning/pull/9389))
45-
46-
4744
## [1.4.5] - 2021-08-31
4845

4946
- Fixed reduction using `self.log(sync_dict=True, reduce_fx={mean,max})` ([#9142](https://github.com/PyTorchLightning/pytorch-lightning/pull/9142))

requirements/adjust_versions.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,18 @@
33
import sys
44
from typing import Dict, Optional
55

6+
# IMPORTANT: this list needs to be sorted in reverse
67
VERSIONS = [
78
dict(torch="1.10.0", torchvision="0.11.*", torchtext=""), # nightly
9+
dict(torch="1.9.1", torchvision="0.10.1", torchtext="0.10.1"),
810
dict(torch="1.9.0", torchvision="0.10.0", torchtext="0.10.0"),
11+
dict(torch="1.8.2", torchvision="0.9.1", torchtext="0.9.1"),
912
dict(torch="1.8.1", torchvision="0.9.1", torchtext="0.9.1"),
1013
dict(torch="1.8.0", torchvision="0.9.0", torchtext="0.9.0"),
1114
dict(torch="1.7.1", torchvision="0.8.2", torchtext="0.8.1"),
1215
dict(torch="1.7.0", torchvision="0.8.1", torchtext="0.8.0"),
1316
dict(torch="1.6.0", torchvision="0.7.0", torchtext="0.7"),
1417
]
15-
VERSIONS.sort(key=lambda v: v["torch"], reverse=True)
1618

1719

1820
def find_latest(ver: str) -> Dict[str, str]:

0 commit comments

Comments
 (0)