mirror of
https://github.com/wassname/pytorch-lightning.git
synced 2026-09-21 13:20:08 +08:00
* check deprecation warnings * extend warning test * try * unimport modules * update
12 lines
423 B
Python
12 lines
423 B
Python
"""
|
|
.. warning:: `logging` package has been renamed to `loggers` since v0.7.0.
|
|
The deprecated package name will be removed in v0.9.0.
|
|
"""
|
|
|
|
from pytorch_lightning.utilities import rank_zero_warn
|
|
|
|
rank_zero_warn("`logging` package has been renamed to `loggers` since v0.7.0"
|
|
" The deprecated package name will be removed in v0.9.0.", DeprecationWarning)
|
|
|
|
from pytorch_lightning.loggers import * # noqa: F403
|