You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BUG: Fix for extraneous default cell format in xlsxwriter files.
Fix for issue in the xlsxwriter engine where is adds a default
'General' format to cells if no other format is applied. This
isn't a bug, per se, but it prevents other row or column formatting.
Closes#9167
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.16.0.txt
+5-1
Original file line number
Diff line number
Diff line change
@@ -144,6 +144,10 @@ Bug Fixes
144
144
145
145
- DataFrame now properly supports simultaneous ``copy`` and ``dtype`` arguments in constructor (:issue:`9099`)
146
146
- Bug in read_csv when using skiprows on a file with CR line endings with the c engine. (:issue:`9079`)
147
-
- isnull now detects NaT in PeriodIndex (:issue:`9129`)
147
+
- isnull now detects ``NaT`` in PeriodIndex (:issue:`9129`)
148
148
- Bug in groupby ``.nth()`` with a multiple column groupby (:issue:`8979`)
149
+
149
150
- Fixed division by zero error for ``Series.kurt()`` when all values are equal (:issue:`9197`)
151
+
152
+
153
+
- Fixed issue in the ``xlsxwriter`` engine where it added a default 'General' format to cells if no other format wass applied. This prevented other row or column formatting being applied. (:issue:`9167`)
0 commit comments