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,