ludwig-ai--ludwig
593b94c120
pytest / Unit Tests (push) Has been cancelled
pytest / Integration (integration_tests_a) (push) Has been cancelled
pytest / Integration (integration_tests_b) (push) Has been cancelled
pytest / Integration (integration_tests_c) (push) Has been cancelled
pytest / Integration (integration_tests_d) (push) Has been cancelled
pytest / Integration (integration_tests_e) (push) Has been cancelled
pytest / Integration (integration_tests_f) (push) Has been cancelled
pytest / Integration (integration_tests_g) (push) Has been cancelled
pytest / Integration (integration_tests_h) (push) Has been cancelled
pytest / Integration (integration_tests_i) (push) Has been cancelled
pytest / Integration (integration_tests_j) (push) Has been cancelled
pytest / Distributed (distributed_a) (push) Has been cancelled
pytest / Distributed (distributed_b) (push) Has been cancelled
pytest / Distributed (distributed_c) (push) Has been cancelled
pytest / Distributed (distributed_d) (push) Has been cancelled
pytest / Distributed (distributed_e) (push) Has been cancelled
pytest / Distributed (distributed_f) (push) Has been cancelled
pytest / Minimal Install (push) Has been cancelled
pytest / Event File (push) Has been cancelled
pytest (slow) / py-slow (push) Has been cancelled
Publish JSON Schema / publish-schema (push) Has been cancelled
30 行
1.1 KiB
Python
30 行
1.1 KiB
Python
import warnings
|
|
|
|
from ludwig.utils.logging_utils import log_once
|
|
|
|
|
|
def warn_structure_refactor(old_module: str, new_module: str, direct: bool = True) -> None:
|
|
"""Create structure refactor warning to indicate modules new location post.
|
|
|
|
Only creates a warning once per module.
|
|
"""
|
|
old_module = old_module.replace(".py", "")
|
|
if log_once(old_module):
|
|
warning = (
|
|
f"The module `{old_module}` has been moved to `{new_module}` and the old "
|
|
f"location will be deprecated soon. Please adjust your imports to point "
|
|
f"to the new location."
|
|
)
|
|
|
|
if direct:
|
|
warning += f" Example: Do a global search and replace `{old_module}` with `{new_module}`."
|
|
else:
|
|
warning += (
|
|
f"\nATTENTION: This module may have been split or refactored. Please "
|
|
f"check the contents of `{new_module}` before making changes."
|
|
)
|
|
|
|
with warnings.catch_warnings():
|
|
warnings.simplefilter("always")
|
|
warnings.warn(warning, DeprecationWarning, stacklevel=3)
|