We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23c7eaf commit 9a2e120Copy full SHA for 9a2e120
1 file changed
src/ydata_profiling/__init__.py
@@ -25,6 +25,15 @@
25
26
warnings.simplefilter("ignore", category=NumbaDeprecationWarning)
27
28
+warn(
29
+ """
30
+ `import ydata_profiling` is deprecated and will not receive more updates.
31
+ Please install data-profiling via `pip install data-profiling` and use `import data_profiling` instead.
32
+ """,
33
+ DeprecationWarning,
34
+ stacklevel=2,
35
+)
36
+
37
__all__ = [
38
"pandas_decorator",
39
"ProfileReport",
0 commit comments