Skip to content

Commit 9ff7179

Browse files
Simplify PintArray.map; CI and CHANGES updates
Simplify PintArray.map to let `pandas.core.algorithms.map_array` do the mapping and we just clean up the PintArray details if necessary. Pandas 2.1.0rc0 added to CI Updated CHANGES Signed-off-by: Michael Tiemann <[email protected]>
1 parent e1e4585 commit 9ff7179

File tree

3 files changed

+13
-23
lines changed

3 files changed

+13
-23
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
matrix:
99
python-version: [3.9, "3.10", "3.11"]
1010
numpy: ["numpy>=1.20.3,<2.0.0"]
11-
pandas: ["pandas==2.0.2", ]
11+
pandas: ["pandas==2.0.2", "pandas==2.1.0rc0" ]
1212
pint: ["pint>=0.21.1", "pint==0.22"]
1313

1414
runs-on: ubuntu-latest

CHANGES

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ pint-pandas Changelog
55
----------------
66

77
<<<<<<< HEAD
8+
- Support for Pandas version 2.1.0 (including dtype-preserving `PintArray.map`) #196
89
- Support for <NA> values in columns with integer magnitudes
910
- Support for magnitudes of any type, such as complex128 or tuples #146
1011
- Support for pandas 2.0, allowing `.cumsum, .cummax, .cummin` methods for `Series` and `DataFrame`. #186

pint_pandas/pint_array.py

+11-22
Original file line numberDiff line numberDiff line change
@@ -844,28 +844,17 @@ def map(self, mapper, na_action=None):
844844
If mapper is a function, operate on the magnitudes of the array and
845845
846846
"""
847-
if callable(mapper) and len(self):
848-
from pandas._libs import lib
849-
850-
# This converts PintArray into array of Quantities
851-
values = self.astype(object, copy=False)
852-
# Using _from_sequence allows for possibility that mapper changes units
853-
if na_action is None:
854-
arr = lib.map_infer(values, mapper, convert=True)
855-
else:
856-
arr = lib.map_infer_mask(
857-
values, mapper, mask=pd.isna(values).view(np.uint8), convert=True
858-
)
859-
master_scalar = None
860-
try:
861-
master_scalar = next(i for i in arr if hasattr(i, "units"))
862-
except StopIteration:
863-
# JSON mapper formatting Qs as str don't create PintArrays
864-
# ...and that's OK. Caller will get array of values
865-
return arr
866-
return PintArray._from_sequence(arr, PintType(master_scalar.units))
867-
else:
868-
return super().map(mapper, na_action=na_action)
847+
from pandas.core.algorithms import map_array
848+
849+
arr = map_array(self, mapper, na_action)
850+
master_scalar = None
851+
try:
852+
master_scalar = next(i for i in arr if hasattr(i, "units"))
853+
except StopIteration:
854+
# JSON mapper formatting Qs as str don't create PintArrays
855+
# ...and that's OK. Caller will get array of values
856+
return arr
857+
return PintArray._from_sequence(arr, PintType(master_scalar.units))
869858

870859
def _reduce(self, name, *, skipna: bool = True, keepdims: bool = False, **kwds):
871860
"""

0 commit comments

Comments
 (0)