From 2d0df1b936a9e7b83ecaa19748dc34df4e83d2b6 Mon Sep 17 00:00:00 2001 From: lelaboratoire Date: Sun, 8 Sep 2024 09:50:39 -0400 Subject: [PATCH 1/3] try ydata-profiling --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c3553dcb6..031086afb 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ def calculate_version(): ], extras_require={ 'dev': ['nose', 'numpy', 'scipy', 'tabulate', 'parameterized', - 'matplotlib', 'seaborn', 'pandas-profiling'], + 'matplotlib', 'seaborn', 'ydata-profiling'], }, classifiers=[ 'Intended Audience :: Developers', From 279be36f4f4afb5c729d91b970b9546c3afd7071 Mon Sep 17 00:00:00 2001 From: lelaboratoire Date: Sun, 8 Sep 2024 09:54:17 -0400 Subject: [PATCH 2/3] ydata profiling --- pmlb/profiling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmlb/profiling.py b/pmlb/profiling.py index 9d80a7c11..6e9834dc0 100644 --- a/pmlb/profiling.py +++ b/pmlb/profiling.py @@ -3,7 +3,7 @@ import subprocess import pandas as pd -from pandas_profiling import ProfileReport +from ydata_profiling import ProfileReport # Updated import from .pmlb import ( fetch_data, get_updated_datasets, last_commit_message From 13851becb92c58a39002fd4b71938fe1f8b7a2af Mon Sep 17 00:00:00 2001 From: lelaboratoire Date: Tue, 10 Sep 2024 14:39:22 -0400 Subject: [PATCH 3/3] install libjpeg-dev --- .github/workflows/pythonapp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index 84337428c..3f179665b 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -41,7 +41,7 @@ jobs: run: | pip install ".[dev]" sudo apt-get update - sudo apt-get install libssl-dev libcurl4-openssl-dev + sudo apt-get install libssl-dev libcurl4-openssl-dev libjpeg-dev - name: Test with nose run: | nosetests -s -v