diff --git a/docs/_modules/pymatgen/analysis/diffusion/aimd/tests/test_van_hove.html b/docs/_modules/pymatgen/analysis/diffusion/aimd/tests/test_van_hove.html
index 2d2111d..08a7f7e 100644
--- a/docs/_modules/pymatgen/analysis/diffusion/aimd/tests/test_van_hove.html
+++ b/docs/_modules/pymatgen/analysis/diffusion/aimd/tests/test_van_hove.html
@@ -94,6 +94,8 @@
Source code for pymatgen.analysis.diffusion.aimd.tests.test_van_hove
self.assertAlmostEqual(vh.gsrt[0, 0], 3.98942280401, 10)
self.assertAlmostEqual(vh.gdrt[10, 0], 9.68574868168, 10)
ax = vh.get_1d_plot()
+ assert isinstance(ax, mpl.axes.Axes)
+ ax = vh.get_3d_plot()
assert isinstance(ax, mpl.axes.Axes)
diff --git a/docs/_modules/pymatgen/analysis/diffusion/aimd/van_hove.html b/docs/_modules/pymatgen/analysis/diffusion/aimd/van_hove.html
index 348aed1..ec3b846 100644
--- a/docs/_modules/pymatgen/analysis/diffusion/aimd/van_hove.html
+++ b/docs/_modules/pymatgen/analysis/diffusion/aimd/van_hove.html
@@ -289,7 +289,7 @@ Source code for pymatgen.analysis.diffusion.aimd.van_hove
labelsize = int(figsize[0] * 3)
- ax.pcolor(X, Y, grt, cmap="jet", vmin=grt.min(), vmax=vmax)
+ plt.pcolor(X, Y, grt, cmap="jet", vmin=grt.min(), vmax=vmax)
ax.set_xlabel("Time (ps)", size=labelsize)
ax.set_ylabel(r"$r$ ($\AA$)", size=labelsize)
ax.axis([x.min(), x.max(), y.min(), y.max()])
diff --git a/docs/doctrees/environment.pickle b/docs/doctrees/environment.pickle
index 04efc81..12e9e6d 100644
Binary files a/docs/doctrees/environment.pickle and b/docs/doctrees/environment.pickle differ
diff --git a/pyproject.toml b/pyproject.toml
index a201711..60275c5 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -56,7 +56,7 @@ dependencies = [
"ase",
"seaborn"
]
-version = "2024.6.25.1"
+version = "2024.6.27"
[project.urls]
Homepage = "http://materialsvirtuallab.github.io/pymatgen-analysis-diffusion/"