diff --git a/README.md b/README.md index fba2ea1..c8a7ade 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ pip install streamlit-pandas-profiling ```python import pandas as pd -import pandas_profiling +import ydata_profiling import streamlit as st from streamlit_pandas_profiling import st_profile_report diff --git a/setup.cfg b/setup.cfg index caeb3e1..0436f17 100644 --- a/setup.cfg +++ b/setup.cfg @@ -18,5 +18,5 @@ setup_requires = setuptools >= 40.8.0 wheel install_requires = - pandas-profiling + ydata-profiling streamlit >= 0.63 diff --git a/streamlit_pandas_profiling/__init__.py b/streamlit_pandas_profiling/__init__.py index d418c8c..3a78ce8 100644 --- a/streamlit_pandas_profiling/__init__.py +++ b/streamlit_pandas_profiling/__init__.py @@ -17,7 +17,7 @@ def st_profile_report(report, height=None, navbar=True, key=None): Parameters ---------- - report : pandas_profiling.ProfileReport + report : ydata_profiling.ProfileReport The profile report instance to display. height : int or None Report height. If set to None, report will take full height, but diff --git a/streamlit_pandas_profiling/version.py b/streamlit_pandas_profiling/version.py index 5c9e45e..8c6930e 100644 --- a/streamlit_pandas_profiling/version.py +++ b/streamlit_pandas_profiling/version.py @@ -1,2 +1,2 @@ -__version__ = "0.1.3" +__version__ = "0.1.4" __release__ = True