File tree 2 files changed +13
-5
lines changed
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
24
24
imagehash == 4.3.1
25
25
wordcloud >= 1.9.1
26
26
dacite >= 1.8
27
+ numba >= 0.56.0 ,< 0.59.0
Original file line number Diff line number Diff line change 2
2
3
3
.. include:: ../../README.md
4
4
"""
5
- import importlib .util
6
5
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
11
18
12
19
# backend
13
20
import ydata_profiling .model .pandas # isort:skip # noqa
You can’t perform that action at this time.
0 commit comments