Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix action #182

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pmlb/profiling.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
Loading