Skip to content

Commit

Permalink
Enable testing pd.Int32Dtype/pd.Int64Dtype for geopandas integration
Browse files Browse the repository at this point in the history
  • Loading branch information
seisman committed Nov 30, 2023
1 parent f4ab975 commit 717b1b6
Showing 1 changed file with 3 additions and 4 deletions.
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

0 comments on commit 717b1b6

Please sign in to comment.