Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions pygmt/tests/test_geopandas.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Test integration with geopandas.
"""
import numpy.testing as npt
import pandas as pd
import pytest
from pygmt import Figure, info, makecpt, which

Expand Down Expand Up @@ -138,10 +139,8 @@ def test_geopandas_plot3d_non_default_circle():
[
"int32",
"int64",
# Enable Int32/Int64 dtypes when geopandas>=0.13.3 is released with
# patch https://github.com/geopandas/geopandas/pull/2950
# pd.Int32Dtype(),
# pd.Int64Dtype(),
pd.Int32Dtype(),
pd.Int64Dtype(),
],
)
@pytest.mark.mpl_image_compare(filename="test_geopandas_plot_int_dtypes.png")
Expand Down