Skip to content

Commit 13550dc

Browse files
committed
Fix several deprecation warnings in pandas 2.1 which became actual errors in 2.2. Also updated several test cases to use iloc when comparing results.
1 parent caa7150 commit 13550dc

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

AUTHORS.rst

+1
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,4 @@ Contributions
2929
- `Anton Ian Sipos <https://github.com/aisipos>`_
3030
- `Chuan-Jhe Hwong <https://github.com/CJHwong>`_
3131
- `Thomas Grainger <https://github.com/graingert/>`_
32+
- `Ryan Smith <https://github.com/bixbyr/>`_

django_pandas/io.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def read_frame(qs, fieldnames=(), index_col=None, coerce_float=False,
8484
"""
8585

8686
if fieldnames:
87-
fieldnames = pd.unique(fieldnames)
87+
fieldnames = pd.unique(pd.Series(fieldnames))
8888
if index_col is not None and index_col not in fieldnames:
8989
# Add it to the field names if not already there
9090
fieldnames = tuple(fieldnames) + (index_col,)

django_pandas/tests/test_manager.py

+7-8
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ def setUp(self):
8787
col4=cols['col4']))
8888
WideTimeSeriesDateField.objects.bulk_create(create_list)
8989

90-
create_list = [LongTimeSeries(date_ix=r[0], series_name=r[1][0],
91-
value=r[1][1])
92-
for r in self.ts2.iterrows()]
90+
create_list = [LongTimeSeries(date_ix=timestamp, series_name=s.iloc[0],
91+
value=s.iloc[1])
92+
for timestamp, s in self.ts2.iterrows()]
9393

9494
LongTimeSeries.objects.bulk_create(create_list)
9595

@@ -222,11 +222,10 @@ def setUp(self):
222222
'value_col_d': np.random.randn(11),
223223
'value_col_e': np.random.randn(11),
224224
'value_col_f': np.random.randn(11)})
225-
226-
create_list = [PivotData(row_col_a=r[1][0], row_col_b=r[1][1],
227-
row_col_c=r[1][2], value_col_d=r[1][3],
228-
value_col_e=r[1][4], value_col_f=r[1][5])
229-
for r in self.data.iterrows()]
225+
create_list = [PivotData(row_col_a=r.iloc[0], row_col_b=r.iloc[1],
226+
row_col_c=r.iloc[2], value_col_d=r.iloc[3],
227+
value_col_e=r.iloc[4], value_col_f=r.iloc[5])
228+
for _, r in self.data.iterrows()]
230229

231230
PivotData.objects.bulk_create(create_list)
232231

django_pandas/utils.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,7 @@ def get_cache_key_from_pk(pk):
4848

4949
def inner(pk_series):
5050
pk_series = pk_series.astype(object).where(pk_series.notnull(), None)
51-
cache_keys = pk_series.apply(
52-
get_cache_key_from_pk, convert_dtype=False)
51+
cache_keys = pk_series.apply(get_cache_key_from_pk)
5352
unique_cache_keys = list(filter(None, cache_keys.unique()))
5453

5554
if not unique_cache_keys:

0 commit comments

Comments
 (0)