From 74b1317ecb523890a70a62e70364d57d3ed80971 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mochol=C3=AD?= Date: Wed, 1 Jun 2022 16:27:08 +0200 Subject: [PATCH] Update `__version__` field (#13200) --- pytorch_lightning/__about__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytorch_lightning/__about__.py b/pytorch_lightning/__about__.py index bf1938828cd42..fdaa499392c7e 100644 --- a/pytorch_lightning/__about__.py +++ b/pytorch_lightning/__about__.py @@ -1,7 +1,7 @@ import time _this_year = time.strftime("%Y") -__version__ = "1.6.3" +__version__ = "1.6.4" __author__ = "William Falcon et al." __author_email__ = "waf2107@columbia.edu" __license__ = "Apache-2.0"