We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa7e5f1 commit 2e872a6Copy full SHA for 2e872a6
setup.py
@@ -41,7 +41,7 @@
41
],
42
"numba": [
43
"numba>=0.56.0, <1",
44
- ]
+ ],
45
},
46
package_data={
47
"ydata_profiling": ["py.typed"],
src/ydata_profiling/__init__.py
@@ -22,6 +22,7 @@
22
spec_numba = importlib.util.find_spec("numba")
23
if spec_numba is not None:
24
from numba.core.errors import NumbaDeprecationWarning # isort:skip # noqa
25
+
26
warnings.simplefilter("ignore", category=NumbaDeprecationWarning)
27
28
__all__ = [
0 commit comments