Skip to content

Commit 21d152c

Browse files
committed
Try not testing pyarrow timedelta types
1 parent e051144 commit 21d152c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/_testing/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@
215215
for unit in ["s", "ms", "us", "ns"]
216216
for tz in [None, "UTC", "US/Pacific", "US/Eastern"]
217217
]
218-
TIMEDELTA_PYARROW_DTYPES = [pa.duration(unit) for unit in ["s", "ms", "us", "ns"]]
218+
# TIMEDELTA_PYARROW_DTYPES = [pa.duration(unit) for unit in ["s", "ms", "us", "ns"]]
219219

220220
BOOL_PYARROW_DTYPES = [pa.bool_()]
221221

@@ -227,7 +227,7 @@
227227
+ TIME_PYARROW_DTYPES
228228
+ DATE_PYARROW_DTYPES
229229
+ DATETIME_PYARROW_DTYPES
230-
+ TIMEDELTA_PYARROW_DTYPES
230+
# + TIMEDELTA_PYARROW_DTYPES
231231
+ BOOL_PYARROW_DTYPES
232232
)
233233

0 commit comments

Comments
 (0)