File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66import warnings # isort:skip # noqa
77
88import importlib .util # isort:skip # noqa
9+ from warnings import warn
910
1011from ydata_profiling .compare_reports import compare # isort:skip # noqa
1112from ydata_profiling .controller import pandas_decorator # isort:skip # noqa
2526
2627 warnings .simplefilter ("ignore" , category = NumbaDeprecationWarning )
2728
29+ warn (
30+ """
31+ `import ydata_profiling` is deprecated and will not receive more updates.
32+ Please install data-profiling via `pip install data-profiling` and use `import data_profiling` instead.
33+ """ ,
34+ DeprecationWarning ,
35+ stacklevel = 2 ,
36+ )
37+
2838__all__ = [
2939 "pandas_decorator" ,
3040 "ProfileReport" ,
Original file line number Diff line number Diff line change 44Error for series with large integers.
55"""
66import pandas as pd
7-
87from pandas_profiling import ProfileReport
98
109
You can’t perform that action at this time.
0 commit comments