Skip to content

BUG: Fix unpickling of string dtypes of legacy pandas versions #61770

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Jul 7, 2025
Prev Previous commit
Next Next commit
Import MutableMapping
  • Loading branch information
Liam3851 committed Jul 3, 2025
commit 3d612b2aedf3df18b87ae92508147d11bc2a0af7
2 changes: 2 additions & 0 deletions pandas/core/arrays/string_.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@
from pandas.io.formats import printing

if TYPE_CHECKING:
from collections.abc import MutableMapping

import pyarrow

from pandas._typing import (
Expand Down
Loading