Skip to content

Commit

Permalink
Fix [#180]
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrugman committed Jun 21, 2019
1 parent 0ce8153 commit ee01925
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ <h2 id="dependencies">Dependencies</h2>

from pandas_profiling.utils.dataframe import clean_column_names, rename_index

__version__ = &#34;2.0.0&#34;
__version__ = &#34;2.0.1&#34;

from pathlib import Path
import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion pandas_profiling/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/test_url.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit ee01925

Please sign in to comment.