File tree Expand file tree Collapse file tree 2 files changed +13
-5
lines changed Expand file tree Collapse file tree 2 files changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -24,3 +24,4 @@ typeguard>=2.13.2, <3
2424imagehash == 4.3.1
2525wordcloud >= 1.9.1
2626dacite >= 1.8
27+ numba >= 0.56.0 ,< 0.59.0
Original file line number Diff line number Diff line change 22
33.. include:: ../../README.md
44"""
5- import importlib .util
65
7- from ydata_profiling .compare_reports import compare
8- from ydata_profiling .controller import pandas_decorator
9- from ydata_profiling .profile_report import ProfileReport
10- from ydata_profiling .version import __version__
6+ # ignore numba warnings
7+ import warnings # isort:skip # noqa
8+ from numba .core .errors import NumbaDeprecationWarning # isort:skip # noqa
9+
10+ warnings .simplefilter ("ignore" , category = NumbaDeprecationWarning )
11+
12+ import importlib .util # isort:skip # noqa
13+
14+ from ydata_profiling .compare_reports import compare # isort:skip # noqa
15+ from ydata_profiling .controller import pandas_decorator # isort:skip # noqa
16+ from ydata_profiling .profile_report import ProfileReport # isort:skip # noqa
17+ from ydata_profiling .version import __version__ # isort:skip # noqa
1118
1219# backend
1320import ydata_profiling .model .pandas # isort:skip # noqa
You can’t perform that action at this time.
0 commit comments