Skip to content

Commit

Permalink
Version v2.0.1
Browse files Browse the repository at this point in the history
- Add offline support [#177], [#179] and [#180]
  • Loading branch information
sbrugman authored Jun 21, 2019
2 parents b713c19 + ee01925 commit c817111
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 c817111

Please sign in to comment.