Skip to content

Commit d30018d

Browse files
authored
Merge pull request #74 from kozistr/build/v1.3.0
[Build] version to `1.3.0`
2 parents f691cf6 + d9ff347 commit d30018d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pytorch_optimizer"
3-
version = "1.2.0"
3+
version = "1.3.0"
44
description = "Bunch of optimizer implementations in PyTorch with clean-code, strict types. Also, including useful optimization ideas."
55
license = "Apache-2.0"
66
authors = ["kozistr <[email protected]>"]

pytorch_optimizer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
unit_norm,
3737
)
3838

39-
OPTIMIZER_LIST: List = [
39+
OPTIMIZER_LIST: List[Type[Optimizer]] = [
4040
AdaBelief,
4141
AdaBound,
4242
AdamP,

0 commit comments

Comments
 (0)