summarylogtreecommitdiffstats
path: root/pandas-datetime.patch
diff options
context:
space:
mode:
Diffstat (limited to 'pandas-datetime.patch')
-rw-r--r--pandas-datetime.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/pandas-datetime.patch b/pandas-datetime.patch
new file mode 100644
index 000000000000..a0f7de824b7c
--- /dev/null
+++ b/pandas-datetime.patch
@@ -0,0 +1,13 @@
+diff -urN partd-0.3.9-orig/partd/pandas.py partd-0.3.9/partd/pandas.py
+--- partd-0.3.9-orig/partd/pandas.py 2019-03-11 11:00:34.131675834 -0400
++++ partd-0.3.9/partd/pandas.py 2019-03-11 11:00:56.070700836 -0400
+@@ -140,8 +140,7 @@
+ ordered=extension_values[0])
+ elif extension_type == 'datetime64_tz_type':
+ tz_info = extension_values[0]
+- values = pd.DatetimeIndex(values).tz_localize('utc').tz_convert(
+- tz_info)
++ values = pd.DatetimeIndex(values)
+ return make_block(values, placement=placement)
+
+