From ee0192500dcc2e39aa0b01229c6a44186ae28ad9 Mon Sep 17 00:00:00 2001 From: simon_graphkite Date: Fri, 21 Jun 2019 16:09:52 +0200 Subject: [PATCH] Fix [#180] --- MANIFEST.in | 2 ++ docs/index.html | 2 +- pandas_profiling/__init__.py | 2 +- tests/test_url.py | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index d44fc5871..fac060ccc 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,6 +2,8 @@ include LICENSE include pandas_profiling/view/*.mplstyle include pandas_profiling/view/templates/*.html include pandas_profiling/view/templates/variables/*.html +include pandas_profiling/view/templates/assets/*.js +include pandas_profiling/view/templates/assets/*.css include pandas_profiling/view/templates/*.css include pandas_profiling/config_default.yaml include README.md diff --git a/docs/index.html b/docs/index.html index 4a36a791a..720e3bc2a 100644 --- a/docs/index.html +++ b/docs/index.html @@ -137,7 +137,7 @@

Dependencies

from pandas_profiling.utils.dataframe import clean_column_names, rename_index -__version__ = "2.0.0" +__version__ = "2.0.1" from pathlib import Path import numpy as np diff --git a/pandas_profiling/__init__.py b/pandas_profiling/__init__.py index 5b383eea3..a5346c433 100644 --- a/pandas_profiling/__init__.py +++ b/pandas_profiling/__init__.py @@ -7,7 +7,7 @@ from pandas_profiling.utils.dataframe import clean_column_names, rename_index -__version__ = "2.0.0" +__version__ = "2.0.1" from pathlib import Path import numpy as np diff --git a/tests/test_url.py b/tests/test_url.py index cd90d8bba..331a7f36f 100644 --- a/tests/test_url.py +++ b/tests/test_url.py @@ -4,7 +4,7 @@ import pandas_profiling -def test_urls(tmpdir): +def test_urls(): df = pd.read_csv( "https://raw.githubusercontent.com/openeventdata/scraper/master/whitelist_urls.csv", header=None,