Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
0e10a9d
remove read_excel kwd NotImplemented error, update documentation #11544
grahamjeffries Jan 15, 2016
925ce1b
Update tests
jorisvandenbossche Sep 30, 2016
b1c7f87
add whatsnew
jorisvandenbossche Sep 30, 2016
656ec44
Fix detection to raise warning
jorisvandenbossche Sep 30, 2016
0b65a7a
update wording
jorisvandenbossche Sep 30, 2016
a1d966a
DOC: GH21194
msmarchena May 31, 2018
5603bd2
BUG: GH21194
msmarchena May 31, 2018
1886cc3
TST: adding tz tests
msmarchena May 31, 2018
09348c6
solving PEP8 errors
msmarchena Jun 1, 2018
e2cc031
DOC update
msmarchena Jun 1, 2018
9cb6242
Merge remote-tracking branch 'upstream/master'
msmarchena Jun 1, 2018
d353ddb
DOC update
msmarchena Jun 1, 2018
b421c2e
DOC update
msmarchena Jun 1, 2018
0996c19
Merge branch 'master' of github.com:msmarchena/pandas into PR21194
msmarchena Jun 1, 2018
1b398d9
Doc update
msmarchena Jun 1, 2018
91a4547
Doc update
msmarchena Jun 1, 2018
f76d423
parametrizing tests
msmarchena Jun 4, 2018
8cc507b
parametrizing tests
msmarchena Jun 4, 2018
8441881
parametrizing tests
msmarchena Jun 4, 2018
d3cc807
Implementing pytest.mark.parametrize
msmarchena Jun 25, 2018
8726d0e
Implementing pytest.mark.parametrize
msmarchena Jun 25, 2018
e1cdfa5
Documentation update
msmarchena Jun 25, 2018
246326d
Merge branch 'pr/12051' of https://github.com/msmarchena/pandas into …
msmarchena Jun 25, 2018
4c91628
Merging
msmarchena Jun 25, 2018
79dbfe6
Merge branch 'PR21194' of https://github.com/msmarchena/pandas into P…
msmarchena Jun 25, 2018
a5bc90b
Merge branch 'master' into PR21194
msmarchena Aug 3, 2018
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge branch 'master' into PR21194
  • Loading branch information
msmarchena authored Aug 3, 2018
commit a5bc90b0f93ee9cd4e45d652857978771712418d
18 changes: 3 additions & 15 deletions doc/source/whatsnew/v0.23.1.txt
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,7 @@ Performance Improvements
Bug Fixes
~~~~~~~~~

- Bug in :func:`Dataframe.asof` that raised a ``TypeError`` when attempting to compare tz-naive and tz-aware timestamps (:issue:`21194`)


Groupby/Resample/Rolling
^^^^^^^^^^^^^^^^^^^^^^^^
**Groupby/Resample/Rolling**

- Bug in :func:`DataFrame.agg` where applying multiple aggregation functions to a :class:`DataFrame` with duplicated column names would cause a stack overflow (:issue:`21063`)
- Bug in :func:`pandas.core.groupby.GroupBy.ffill` and :func:`pandas.core.groupby.GroupBy.bfill` where the fill within a grouping would not always be applied as intended due to the implementations' use of a non-stable sort (:issue:`21207`)
Expand All @@ -114,14 +110,7 @@ Groupby/Resample/Rolling

- Bug in :attr:`SparseArray.shape` which previously only returned the shape :attr:`SparseArray.sp_values` (:issue:`21126`)

Conversion
^^^^^^^^^^

- Bug in :func:`Dataframe.asof` that raised a ``TypeError`` when attempting to compare tz-naive and tz-aware timestamps (:issue:`21194`)
-

Indexing
^^^^^^^^
**Indexing**

- Bug in :meth:`Series.reset_index` where appropriate error was not raised with an invalid level name (:issue:`20925`)
- Bug in :func:`interval_range` when ``start``/``periods`` or ``end``/``periods`` are specified with float ``start`` or ``end`` (:issue:`21161`)
Expand All @@ -148,5 +137,4 @@ Indexing
**Other**

- Tab completion on :class:`Index` in IPython no longer outputs deprecation warnings (:issue:`21125`)
- Bug preventing pandas from being importable with -OO optimization (:issue:`21071`)

- Bug preventing pandas being used on Windows without C++ redistributable installed (:issue:`21106`)
5 changes: 2 additions & 3 deletions pandas/io/excel.py
Original file line number Diff line number Diff line change
Expand Up @@ -530,9 +530,8 @@ def _parse_excel(self,
"is not implemented")

if parse_dates is True and index_col is None:

warn("The 'parse_dates=True' keyword of read_excel was provided"
" without an 'index_col' keyword value.")
warnings.warn("The 'parse_dates=True' keyword of read_excel was "
"provided without an 'index_col' keyword value.")

import xlrd
from xlrd import (xldate, XL_CELL_DATE,
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.