From 6df2d6bf4192332d54fdf44d71ded7999ff8c5b6 Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Thu, 31 Dec 2020 12:16:33 +0000 Subject: [PATCH 1/2] DOC: sphinx error in 1.2.1 release notes --- doc/source/whatsnew/v1.2.1.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/whatsnew/v1.2.1.rst b/doc/source/whatsnew/v1.2.1.rst index c83a2ff7c1d22..61cbb625def04 100644 --- a/doc/source/whatsnew/v1.2.1.rst +++ b/doc/source/whatsnew/v1.2.1.rst @@ -21,8 +21,8 @@ Fixed regressions - Fixed regression in :meth:`DataFrame.groupby()` with :class:`Categorical` grouping column not showing unused categories for ``grouped.indices`` (:issue:`38642`) - Fixed regression in :meth:`DataFrame.any` and :meth:`DataFrame.all` not returning a result for tz-aware ``datetime64`` columns (:issue:`38723`) - Fixed regression in :meth:`.GroupBy.sem` where the presence of non-numeric columns would cause an error instead of being dropped (:issue:`38774`) -- :func:`read_excel` does not work for non-rawbyte file handles (issue:`38788`) -- Bug in :meth:`read_csv` with ``float_precision="high"`` caused segfault or wrong parsing of long exponent strings (:issue:`38753`) +- Fixed regression in :func:`read_excel` with non-rawbyte file handles (:issue:`38788`) +- Bug in :meth:`read_csv` with ``float_precision="high"`` caused segfault or wrong parsing of long exponent strings. This resulted in a regression is some cases as the default for ``float_precision`` was changed in pandas 1.2.0 (:issue:`38753`) - .. --------------------------------------------------------------------------- From 620112205421e2dd7d1829dcc5cd0b136fe8c0f8 Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Thu, 31 Dec 2020 12:18:58 +0000 Subject: [PATCH 2/2] typo --- doc/source/whatsnew/v1.2.1.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/whatsnew/v1.2.1.rst b/doc/source/whatsnew/v1.2.1.rst index 61cbb625def04..a1612117072a5 100644 --- a/doc/source/whatsnew/v1.2.1.rst +++ b/doc/source/whatsnew/v1.2.1.rst @@ -22,7 +22,7 @@ Fixed regressions - Fixed regression in :meth:`DataFrame.any` and :meth:`DataFrame.all` not returning a result for tz-aware ``datetime64`` columns (:issue:`38723`) - Fixed regression in :meth:`.GroupBy.sem` where the presence of non-numeric columns would cause an error instead of being dropped (:issue:`38774`) - Fixed regression in :func:`read_excel` with non-rawbyte file handles (:issue:`38788`) -- Bug in :meth:`read_csv` with ``float_precision="high"`` caused segfault or wrong parsing of long exponent strings. This resulted in a regression is some cases as the default for ``float_precision`` was changed in pandas 1.2.0 (:issue:`38753`) +- Bug in :meth:`read_csv` with ``float_precision="high"`` caused segfault or wrong parsing of long exponent strings. This resulted in a regression in some cases as the default for ``float_precision`` was changed in pandas 1.2.0 (:issue:`38753`) - .. ---------------------------------------------------------------------------