Fix backwards compatibility for optional logging dependencies (#900)

This commit is contained in:
Tullie Murrell
2020-02-21 13:18:27 -05:00
committed by GitHub
parent b933b23d5c
commit 897def2cac
6 changed files with 26 additions and 0 deletions
+1
View File
@@ -9,3 +9,4 @@ warnings.warn("`logging` package has been renamed to `loggers` since v0.6.1"
" The deprecated package name will be removed in v0.8.0.", DeprecationWarning)
from pytorch_lightning.loggers import * # noqa: F403
from pytorch_lightning.loggers import base, tensorboard # noqa: F403
+5
View File
@@ -0,0 +1,5 @@
"""
.. warning:: `logging` package has been renamed to `loggers` since v0.6.1 and will be removed in v0.8.0
"""
from pytorch_lightning.loggers import comet # noqa: F403
+5
View File
@@ -0,0 +1,5 @@
"""
.. warning:: `logging` package has been renamed to `loggers` since v0.6.1 and will be removed in v0.8.0
"""
from pytorch_lightning.loggers import mlflow # noqa: F403
+5
View File
@@ -0,0 +1,5 @@
"""
.. warning:: `logging` package has been renamed to `loggers` since v0.6.1 and will be removed in v0.8.0
"""
from pytorch_lightning.loggers import neptune # noqa: F403
+5
View File
@@ -0,0 +1,5 @@
"""
.. warning:: `logging` package has been renamed to `loggers` since v0.6.1 and will be removed in v0.8.0
"""
from pytorch_lightning.loggers import test_tube # noqa: F403
+5
View File
@@ -0,0 +1,5 @@
"""
.. warning:: `logging` package has been renamed to `loggers` since v0.6.1 and will be removed in v0.8.0
"""
from pytorch_lightning.loggers import wandb # noqa: F403