title
stringlengths
1
185
diff
stringlengths
0
32.2M
body
stringlengths
0
123k
url
stringlengths
57
58
created_at
stringlengths
20
20
closed_at
stringlengths
20
20
merged_at
stringlengths
20
20
updated_at
stringlengths
20
20
TST: Verify that float columns stay float after pivot (#7142)
diff --git a/pandas/tests/reshape/test_pivot.py b/pandas/tests/reshape/test_pivot.py index fc5a2eb468d4f..9881ab72f3ef5 100644 --- a/pandas/tests/reshape/test_pivot.py +++ b/pandas/tests/reshape/test_pivot.py @@ -167,6 +167,24 @@ def test_pivot_dtypes(self): expected = Series(dict(float64=2)) tm.asser...
Just a test to confirm that #7142 stays fixed. Seems to have been solved in 0.19.2.
https://api.github.com/repos/pandas-dev/pandas/pulls/16815
2017-07-03T05:21:56Z
2017-07-06T22:42:11Z
2017-07-06T22:42:11Z
2017-07-06T23:32:56Z
fix BUG: ValueError when performing rolling covariance on multi indexed DataFrame
diff --git a/doc/source/whatsnew/v0.20.3.txt b/doc/source/whatsnew/v0.20.3.txt index b2d382a3202a5..c4768f980bc6a 100644 --- a/doc/source/whatsnew/v0.20.3.txt +++ b/doc/source/whatsnew/v0.20.3.txt @@ -39,7 +39,7 @@ Bug Fixes - Fixed issue with dataframe scatter plot for categorical data that reports incorrect column k...
- [x] tests added / passed Proposed fix for #16789. Using class properties (with implemented setter/getter) rather than field variables.
https://api.github.com/repos/pandas-dev/pandas/pulls/16814
2017-07-02T12:19:12Z
2017-07-03T17:23:45Z
2017-07-03T17:23:45Z
2017-07-07T13:10:42Z
TST: Verify that positional shifting works with duplicate columns (#9…
diff --git a/pandas/tests/frame/test_timeseries.py b/pandas/tests/frame/test_timeseries.py index 143a7ea8f6fb2..aaca8a60fe062 100644 --- a/pandas/tests/frame/test_timeseries.py +++ b/pandas/tests/frame/test_timeseries.py @@ -266,6 +266,28 @@ def test_shift_empty(self): assert_frame_equal(df, rs) + def t...
Add a test to confirm that closes #9092 is solved (seems to work >= 0.18.0.)
https://api.github.com/repos/pandas-dev/pandas/pulls/16810
2017-07-01T01:12:13Z
2017-07-02T17:38:59Z
2017-07-02T17:38:59Z
2017-07-02T17:39:02Z
TST: Verify columns entirely below chop_threshold still print (#6839)
diff --git a/pandas/tests/io/formats/test_format.py b/pandas/tests/io/formats/test_format.py index 4431108a55963..679d43ac492ca 100644 --- a/pandas/tests/io/formats/test_format.py +++ b/pandas/tests/io/formats/test_format.py @@ -209,6 +209,33 @@ def test_repr_chop_threshold(self): with option_context("display....
Just adds a confirming test for closes #6839. No need for whatsnew update.
https://api.github.com/repos/pandas-dev/pandas/pulls/16809
2017-07-01T00:34:52Z
2017-07-01T06:54:06Z
2017-07-01T06:54:06Z
2017-07-01T06:54:09Z
CI: use dist/trusty rather than os/linux
diff --git a/.travis.yml b/.travis.yml index 5dc4256a268ad..897d31cf23a3b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,44 +35,44 @@ matrix: language: generic env: - JOB="3.5_OSX" TEST_ARGS="--skip-slow --skip-network" - - os: linux + - dist: trusty env: - JOB="2.7_LOCAL...
closes #16730
https://api.github.com/repos/pandas-dev/pandas/pulls/16806
2017-06-30T20:16:55Z
2017-06-30T21:29:45Z
2017-06-30T21:29:45Z
2017-07-07T13:10:42Z
BUG: render dataframe as html do not produce duplicate element id's (#16780)
diff --git a/doc/source/whatsnew/v0.20.3.txt b/doc/source/whatsnew/v0.20.3.txt index 17195715d0f95..6b806fd411d03 100644 --- a/doc/source/whatsnew/v0.20.3.txt +++ b/doc/source/whatsnew/v0.20.3.txt @@ -37,6 +37,7 @@ Performance Improvements Bug Fixes ~~~~~~~~~ - Fixed issue with dataframe scatter plot for categorical...
closes #16780 tests added / passed passes ``git diff upstream/master --name-only -- '*.py' | flake8 --diff`` whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/16801
2017-06-29T22:15:44Z
2017-07-03T12:39:56Z
2017-07-03T12:39:56Z
2017-07-07T13:10:42Z
TST: register slow marker
diff --git a/doc/source/whatsnew/v0.20.3.txt b/doc/source/whatsnew/v0.20.3.txt index c730142450ea6..17195715d0f95 100644 --- a/doc/source/whatsnew/v0.20.3.txt +++ b/doc/source/whatsnew/v0.20.3.txt @@ -37,7 +37,7 @@ Performance Improvements Bug Fixes ~~~~~~~~~ - Fixed issue with dataframe scatter plot for categorical...
Closes https://github.com/pandas-dev/pandas/issues/16680
https://api.github.com/repos/pandas-dev/pandas/pulls/16797
2017-06-29T14:56:55Z
2017-06-30T16:53:12Z
2017-06-30T16:53:12Z
2017-12-20T16:10:31Z
DOC: Updated cookbook to show usage of Grouper instead of TimeGrouper…
diff --git a/doc/source/cookbook.rst b/doc/source/cookbook.rst index 62aa487069132..32e7a616fe856 100644 --- a/doc/source/cookbook.rst +++ b/doc/source/cookbook.rst @@ -776,11 +776,17 @@ Resampling The :ref:`Resample <timeseries.resampling>` docs. -`TimeGrouping of values grouped across time -<http://stackoverflow...
Added links to show usage of Grouper and removed SO links to TimeGrouper- #16747 - [ ] closes #xxxx - [ ] tests added / passed - [ ] passes ``git diff upstream/master --name-only -- '*.py' | flake8 --diff`` - [ ] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/16794
2017-06-29T04:44:36Z
2017-07-07T10:18:13Z
2017-07-07T10:18:13Z
2017-07-07T10:31:34Z
BUG: Fix read of py3 PeriodIndex DataFrame HDF made in py2 (#16781)
diff --git a/doc/source/whatsnew/v0.20.3.txt b/doc/source/whatsnew/v0.20.3.txt index 0fac6367fd3a5..ebbdecb7dc0d0 100644 --- a/doc/source/whatsnew/v0.20.3.txt +++ b/doc/source/whatsnew/v0.20.3.txt @@ -38,6 +38,7 @@ Bug Fixes ~~~~~~~~~ - Fixed issue with dataframe scatter plot for categorical data that reports incorre...
…16781) Reading a DataFrame with a PeriodIndex from an HDF file created in Python2 in Python3 would incorrectly make the index an In64Index. - closes #16781
https://api.github.com/repos/pandas-dev/pandas/pulls/16790
2017-06-28T15:49:54Z
2017-06-30T20:05:55Z
2017-06-30T20:05:55Z
2017-07-07T13:10:42Z
Bug in pd.merge() when merge/join with multiple categorical columns
diff --git a/doc/source/whatsnew/v0.20.3.txt b/doc/source/whatsnew/v0.20.3.txt index f8916f5464276..0fac6367fd3a5 100644 --- a/doc/source/whatsnew/v0.20.3.txt +++ b/doc/source/whatsnew/v0.20.3.txt @@ -55,8 +55,8 @@ Indexing I/O ^^^ -- Bug in :func:`read_csv`` in which files weren't opened as binary files by the C e...
closes #16767
https://api.github.com/repos/pandas-dev/pandas/pulls/16786
2017-06-28T11:04:20Z
2017-06-30T19:49:13Z
2017-06-30T19:49:13Z
2017-07-07T13:10:42Z
DOC: remove section on Panel4D support in HDF io
diff --git a/doc/source/io.rst b/doc/source/io.rst index e7c1cc13d103d..2adbd59d492c0 100644 --- a/doc/source/io.rst +++ b/doc/source/io.rst @@ -4459,34 +4459,6 @@ Performance `Here <http://stackoverflow.com/questions/14355151/how-to-make-pandas-hdfstore-put-operation-faster/14370190#14370190>`__ for more informa...
Since this is deprecated, I don't think we need to advertise this in the latest docs (it is always available in older docs)
https://api.github.com/repos/pandas-dev/pandas/pulls/16783
2017-06-27T19:46:54Z
2017-06-28T05:09:04Z
2017-06-28T05:09:04Z
2017-07-07T13:10:42Z
BUG: allow empty multiindex (fixes .isin regression, GH16777)
diff --git a/doc/source/whatsnew/v0.20.3.txt b/doc/source/whatsnew/v0.20.3.txt index 77b3e3bd25740..3d6aba98d4d57 100644 --- a/doc/source/whatsnew/v0.20.3.txt +++ b/doc/source/whatsnew/v0.20.3.txt @@ -55,6 +55,7 @@ Indexing ^^^^^^^^ - Bug in ``Float64Index`` causing an empty array instead of ``None`` to be returned...
- [X] closes issue #16777 - [X] tests added / passed - [X] passes ``git diff upstream/master --name-only -- '*.py' | flake8 --diff`` - [X] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/16782
2017-06-27T17:23:08Z
2017-07-07T10:25:37Z
2017-07-07T10:25:37Z
2017-07-07T13:10:42Z
DOC: some rst fixes
diff --git a/doc/source/groupby.rst b/doc/source/groupby.rst index 865f1ccae2c04..61f43146aba85 100644 --- a/doc/source/groupby.rst +++ b/doc/source/groupby.rst @@ -1200,14 +1200,14 @@ Regroup columns of a DataFrame according to their sum, and sum the aggregated on df df.groupby(df.sum(), axis=1).sum() -.. _g...
Fixes most of the sphinx warnings currently in the build log
https://api.github.com/repos/pandas-dev/pandas/pulls/16763
2017-06-23T11:12:58Z
2017-06-23T20:59:30Z
2017-06-23T20:59:30Z
2017-06-23T20:59:30Z
MAINT: Drop pd.options.display.mpl_style
diff --git a/doc/source/whatsnew/v0.21.0.txt b/doc/source/whatsnew/v0.21.0.txt index 74763dbc1c71a..de2516d75040b 100644 --- a/doc/source/whatsnew/v0.21.0.txt +++ b/doc/source/whatsnew/v0.21.0.txt @@ -75,6 +75,7 @@ Removal of prior version deprecations/changes ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - :func:`...
Deprecated in 0.18.0 xref #12190 (another nice short deprecation! 😄 )
https://api.github.com/repos/pandas-dev/pandas/pulls/16761
2017-06-23T04:56:59Z
2017-06-27T15:23:45Z
2017-06-27T15:23:45Z
2017-06-27T15:48:09Z
MAINT: Drop Index.sym_diff
diff --git a/doc/source/whatsnew/v0.21.0.txt b/doc/source/whatsnew/v0.21.0.txt index 9d330cf3fdf2d..74763dbc1c71a 100644 --- a/doc/source/whatsnew/v0.21.0.txt +++ b/doc/source/whatsnew/v0.21.0.txt @@ -75,6 +75,7 @@ Removal of prior version deprecations/changes ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - :func:`...
Deprecated in 0.18.1 xref #12591, #12594 (a nice deprecation removal unlike `pd.eval` :smile:)
https://api.github.com/repos/pandas-dev/pandas/pulls/16760
2017-06-23T04:42:15Z
2017-06-27T15:22:10Z
2017-06-27T15:22:10Z
2017-06-27T15:44:22Z
DOC: add section on data validation and library engarde
diff --git a/doc/source/ecosystem.rst b/doc/source/ecosystem.rst index 31849fc142aea..2348a3d10c54f 100644 --- a/doc/source/ecosystem.rst +++ b/doc/source/ecosystem.rst @@ -239,3 +239,14 @@ pandas own ``read_csv`` for CSV IO and leverages many existing packages such as PyTables, h5py, and pymongo to move data between ...
- [x ] Improve docs In section ``Pandas ecosystem``, added a section on data validation with pandas.
https://api.github.com/repos/pandas-dev/pandas/pulls/16758
2017-06-22T21:54:23Z
2017-06-28T05:29:19Z
2017-06-28T05:29:19Z
2017-06-28T05:29:22Z
replaced pandas.plotting with pandas.tools.plotting
diff --git a/doc/source/visualization.rst b/doc/source/visualization.rst index fb799c642131d..5d7e8dd12e5da 100644 --- a/doc/source/visualization.rst +++ b/doc/source/visualization.rst @@ -834,7 +834,7 @@ Scatter Matrix Plot .. versionadded:: 0.7.3 You can create a scatter plot matrix using the -``scatter_matrix`` ...
- [x] closes #16754 - [x] tests added / passed - mentioned in #16754 - [ ] passes ``git diff upstream/master --name-only -- '*.py' | flake8 --diff`` - [x] whatsnew entry - Going through [Visualization](https://pandas-docs.github.io/pandas-docs-travis/visualization.html) in search of beautiful plots I came acro...
https://api.github.com/repos/pandas-dev/pandas/pulls/16755
2017-06-22T19:03:04Z
2017-06-22T20:56:49Z
null
2023-05-11T01:15:54Z
FIX: Allow aggregate to return dictionaries again #16741
diff --git a/doc/source/whatsnew/v0.21.0.txt b/doc/source/whatsnew/v0.21.0.txt index 9d330cf3fdf2d..36b1cb7b6d5c5 100644 --- a/doc/source/whatsnew/v0.21.0.txt +++ b/doc/source/whatsnew/v0.21.0.txt @@ -90,6 +90,8 @@ Performance Improvements Bug Fixes ~~~~~~~~~ +- Fixes regression in 0.20, :func:`Series.aggregate` an...
Fixes a regression from 0.19 to 0.20. The function passed to `aggregate` is allowed again to return dictionaries. - [X] closes #16741 - [X] tests added / passed, added `test_cython_agg_return_dict` - [X] passes ``git diff upstream/master --name-only -- '*.py' | flake8 --diff`` - [X] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/16752
2017-06-22T18:07:55Z
2017-06-30T20:25:15Z
2017-06-30T20:25:15Z
2017-06-30T20:25:19Z
ENH: simple patch for read_json compression
diff --git a/doc/source/whatsnew/v0.21.0.txt b/doc/source/whatsnew/v0.21.0.txt index 046a6c885bd24..fe1c24653e173 100644 --- a/doc/source/whatsnew/v0.21.0.txt +++ b/doc/source/whatsnew/v0.21.0.txt @@ -24,6 +24,7 @@ New features <https://www.python.org/dev/peps/pep-0519/>`_ on most readers and writers (:issue:`13823`...
Addresses GH15644 - [x] closes #15644 - [x] tests added / passed - [x] passes ``git diff upstream/master --name-only -- '*.py' | flake8 --diff`` - [x] whatsnew entry The latest comment on https://github.com/pandas-dev/pandas/issues/15644 from March suggest just adding compression to read_json. This does th...
https://api.github.com/repos/pandas-dev/pandas/pulls/16750
2017-06-21T17:40:33Z
2017-07-19T10:29:59Z
null
2017-07-19T10:29:59Z
PKG: Added pyproject.toml for PEP 518
diff --git a/MANIFEST.in b/MANIFEST.in index 8bd83a7d56948..1a6b831c1b975 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -3,6 +3,7 @@ include LICENSE include RELEASE.md include README.rst include setup.py +include pyproject.toml graft doc prune doc/build diff --git a/doc/source/whatsnew/v0.21.0.txt b/doc/source/w...
Declaring build-time requirements: https://www.python.org/dev/peps/pep-0518/
https://api.github.com/repos/pandas-dev/pandas/pulls/16745
2017-06-21T13:09:12Z
2017-08-30T10:50:04Z
2017-08-30T10:50:04Z
2017-08-30T10:50:13Z
Test for #16726. unittest that ensures datetime is understood
diff --git a/pandas/tests/series/test_datetime_values.py b/pandas/tests/series/test_datetime_values.py index e1fc9af0cca89..e810eadd2dee9 100644 --- a/pandas/tests/series/test_datetime_values.py +++ b/pandas/tests/series/test_datetime_values.py @@ -409,3 +409,13 @@ def test_date_tz(self): da...
- [x] closes #16726 - [x] test added
https://api.github.com/repos/pandas-dev/pandas/pulls/16744
2017-06-21T11:24:41Z
2017-06-23T13:49:49Z
2017-06-23T13:49:49Z
2017-06-23T13:50:00Z
whatsnew v0.20.3 edits
diff --git a/doc/source/whatsnew/v0.20.3.txt b/doc/source/whatsnew/v0.20.3.txt index 265f0c8d0cf59..c730142450ea6 100644 --- a/doc/source/whatsnew/v0.20.3.txt +++ b/doc/source/whatsnew/v0.20.3.txt @@ -50,13 +50,13 @@ Conversion Indexing ^^^^^^^^ -- Bug in ``Float64Index`` causing an empty array instead of None to b...
https://api.github.com/repos/pandas-dev/pandas/pulls/16743
2017-06-21T10:40:50Z
2017-06-21T10:40:57Z
2017-06-21T10:40:57Z
2017-07-07T13:10:42Z
whatsnew v0.21.0.txt typos
diff --git a/doc/source/whatsnew/v0.21.0.txt b/doc/source/whatsnew/v0.21.0.txt index 45c92717b60f0..2daa03e6e97b1 100644 --- a/doc/source/whatsnew/v0.21.0.txt +++ b/doc/source/whatsnew/v0.21.0.txt @@ -22,8 +22,8 @@ New features - Support for `PEP 519 -- Adding a file system path protocol <https://www.python.org/d...
https://api.github.com/repos/pandas-dev/pandas/pulls/16742
2017-06-21T10:38:03Z
2017-06-21T10:38:10Z
2017-06-21T10:38:09Z
2017-06-21T10:38:10Z
BUG: Load data from a CategoricalIndex for dtype comparison, closes #…
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 9281c51059087..959858fb50f89 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,4 +1,4 @@ - [ ] closes #xxxx - [ ] tests added / passed - - [ ] passes ``git diff upstream/master --name-only...
Hello, This is an attempt to solve #16627. I admit I'm relatively new to the pandas development process, so there is likely a better way than this (should I enable the `is_dtype_equal` method on a `CategoricalIndex`?)... But here's one way to do it. - [X] closes #16627 - [X] tests added / passed - [X] pa...
https://api.github.com/repos/pandas-dev/pandas/pulls/16738
2017-06-20T21:42:45Z
2017-06-30T18:50:52Z
2017-06-30T18:50:52Z
2017-07-14T15:26:11Z
BUG: do not raise UnsortedIndexError if sorting is not required
diff --git a/doc/source/whatsnew/v0.21.0.txt b/doc/source/whatsnew/v0.21.0.txt index d6b699abdba2d..87ef5a158e0f6 100644 --- a/doc/source/whatsnew/v0.21.0.txt +++ b/doc/source/whatsnew/v0.21.0.txt @@ -98,6 +98,7 @@ Indexing ^^^^^^^^ - When called with a null slice (e.g. ``df.iloc[:]``), the``iloc`` and ``loc`` inde...
- [x] closes #16734 - [x] tests added / passed - [x] passes ``git diff master --name-only -- '*.py' | flake8 --diff`` - [x] whatsnew entry Simple fix, but it does what I think it should. Maybe that part of indexing would benefit from some more general cleaning, but I really don't have time at the moment.
https://api.github.com/repos/pandas-dev/pandas/pulls/16736
2017-06-20T09:58:21Z
2017-06-21T10:53:10Z
null
2017-06-21T11:41:38Z
Typo?
diff --git a/doc/source/io.rst b/doc/source/io.rst index 340eb9aa053aa..e7c1cc13d103d 100644 --- a/doc/source/io.rst +++ b/doc/source/io.rst @@ -3407,7 +3407,7 @@ Fixed Format This was prior to 0.13.0 the ``Storer`` format. The examples above show storing using ``put``, which write the HDF5 to ``PyTables`` in a ...
https://api.github.com/repos/pandas-dev/pandas/pulls/16733
2017-06-20T06:24:04Z
2017-06-20T07:12:12Z
2017-06-20T07:12:12Z
2017-06-20T07:12:32Z
BUG/MAINT: Change default of inplace to False in pd.eval
diff --git a/doc/source/whatsnew/v0.21.0.txt b/doc/source/whatsnew/v0.21.0.txt index ce0d40d327c15..0338b25c4d329 100644 --- a/doc/source/whatsnew/v0.21.0.txt +++ b/doc/source/whatsnew/v0.21.0.txt @@ -45,6 +45,52 @@ Other Enhancements Backwards incompatible API changes ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Improved e...
Deprecated back in 0.18.0. xref #11149. Also patches bug where we were improperly handling the `inplace=False` condition, as we were assuming that target input was non-None when that wasn't necessarily enforced.
https://api.github.com/repos/pandas-dev/pandas/pulls/16732
2017-06-20T04:30:41Z
2017-07-06T22:46:01Z
2017-07-06T22:46:01Z
2017-07-07T02:26:54Z
Revert "CI: pin jemalloc=4.4.0 (#16727)"
diff --git a/ci/requirements-2.7.sh b/ci/requirements-2.7.sh index 87daf740e059e..64d470e5c6e0e 100644 --- a/ci/requirements-2.7.sh +++ b/ci/requirements-2.7.sh @@ -4,4 +4,4 @@ source activate pandas echo "install 27" -conda install -n pandas -c conda-forge feather-format jemalloc=4.4.0 +conda install -n pandas -c...
This reverts commit 09d8c22d9f56f4a067880a28fbb1235bcf0a1e49. closes #16729
https://api.github.com/repos/pandas-dev/pandas/pulls/16731
2017-06-20T00:45:02Z
2017-06-30T20:56:34Z
2017-06-30T20:56:34Z
2017-06-30T21:24:58Z
MAINT: Drop Categorical.order & sort
diff --git a/doc/source/whatsnew/v0.21.0.txt b/doc/source/whatsnew/v0.21.0.txt index d6b699abdba2d..45c92717b60f0 100644 --- a/doc/source/whatsnew/v0.21.0.txt +++ b/doc/source/whatsnew/v0.21.0.txt @@ -75,6 +75,7 @@ Removal of prior version deprecations/changes ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - ``pd.re...
Deprecated back in 0.18.1 xref #12882.
https://api.github.com/repos/pandas-dev/pandas/pulls/16728
2017-06-19T14:49:36Z
2017-06-19T23:35:39Z
2017-06-19T23:35:39Z
2017-06-20T03:34:21Z
CI: pin jemalloc=4.4.0
diff --git a/ci/requirements-2.7.sh b/ci/requirements-2.7.sh index 64d470e5c6e0e..87daf740e059e 100644 --- a/ci/requirements-2.7.sh +++ b/ci/requirements-2.7.sh @@ -4,4 +4,4 @@ source activate pandas echo "install 27" -conda install -n pandas -c conda-forge feather-format +conda install -n pandas -c conda-forge fe...
xref https://issues.apache.org/jira/browse/ARROW-1127
https://api.github.com/repos/pandas-dev/pandas/pulls/16727
2017-06-19T13:05:30Z
2017-06-19T23:34:53Z
2017-06-19T23:34:53Z
2017-06-19T23:36:04Z
BUG: Fix Series doesn't work in pd.astype(). Now treat Series as dict.
diff --git a/doc/source/whatsnew/v0.20.3.txt b/doc/source/whatsnew/v0.20.3.txt index ebbdecb7dc0d0..8997d68c65615 100644 --- a/doc/source/whatsnew/v0.20.3.txt +++ b/doc/source/whatsnew/v0.20.3.txt @@ -46,7 +46,8 @@ Conversion ^^^^^^^^^^ - Bug in pickle compat prior to the v0.20.x series, when ``UTC`` is a timezone ...
- [x] closes #16717 - [x] tests added / passed - [x] passes ``git diff upstream/master --name-only -- '*.py' | flake8 --diff`` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/16725
2017-06-19T09:31:26Z
2017-06-30T20:11:20Z
2017-06-30T20:11:20Z
2017-07-07T13:10:41Z
BUG: fix pivot_table with multiple aggregations per column and margins=True #12210
diff --git a/pandas/core/reshape/pivot.py b/pandas/core/reshape/pivot.py index 0581ec7484c49..65326c8023f8d 100644 --- a/pandas/core/reshape/pivot.py +++ b/pandas/core/reshape/pivot.py @@ -10,6 +10,7 @@ from pandas import compat import pandas.core.common as com import numpy as np +import types def pivot_table(d...
Fix handling of list of functions per column: - in pivot_table (checking) column name conflict - in _compute_grand_margin This case is still failing: if also specify columns='C', then there's another exception in _generate_marginal_results. - [X] closes #12210 - [X] tests added / passed - [ ] pass...
https://api.github.com/repos/pandas-dev/pandas/pulls/16721
2017-06-18T18:56:43Z
2017-06-29T21:58:50Z
null
2023-05-11T01:15:52Z
BUG: fix to_latex bold_rows option
diff --git a/doc/source/whatsnew/v0.20.3.txt b/doc/source/whatsnew/v0.20.3.txt index 8997d68c65615..b2d382a3202a5 100644 --- a/doc/source/whatsnew/v0.20.3.txt +++ b/doc/source/whatsnew/v0.20.3.txt @@ -41,7 +41,6 @@ Bug Fixes - Fixed compat with loading a ``DataFrame`` with a ``PeriodIndex``, from a ``format='fixed'`` ...
- [x] closes #16707 - [x] tests added / passed - [ ] passes ``git diff upstream/master --name-only -- '*.py' | flake8 --diff`` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/16708
2017-06-15T18:48:35Z
2017-06-30T20:34:12Z
2017-06-30T20:34:11Z
2017-07-07T13:10:41Z
DOC: pin sphinx to version 1.5
diff --git a/ci/requirements-3.6_DOC.run b/ci/requirements-3.6_DOC.run index df8087f62ef16..f87760b507357 100644 --- a/ci/requirements-3.6_DOC.run +++ b/ci/requirements-3.6_DOC.run @@ -1,7 +1,7 @@ ipython ipykernel ipywidgets -sphinx +sphinx=1.5* nbconvert nbformat notebook
xref https://github.com/pandas-dev/pandas/pull/16702#issuecomment-308689543
https://api.github.com/repos/pandas-dev/pandas/pulls/16704
2017-06-15T11:51:00Z
2017-06-15T12:29:49Z
2017-06-15T12:29:49Z
2017-11-09T13:22:40Z
DOC: fix wrongly placed versionadded
diff --git a/pandas/core/strings.py b/pandas/core/strings.py index c57d7a9362490..4814e78ee6546 100644 --- a/pandas/core/strings.py +++ b/pandas/core/strings.py @@ -611,11 +611,12 @@ def str_extract(arr, pat, flags=0, expand=None): flags : int, default 0 (no flags) re module flags, e.g. re.IGNORECASE - ...
Just came across a wrongly placed versionadded tag
https://api.github.com/repos/pandas-dev/pandas/pulls/16702
2017-06-15T07:47:14Z
2017-06-15T10:13:15Z
2017-06-15T10:13:14Z
2017-11-09T13:21:49Z
BUG: Fix regression for RGB(A) color arguments
diff --git a/doc/source/whatsnew/v0.20.3.txt b/doc/source/whatsnew/v0.20.3.txt index 249e05623a27f..acd19a8b8da10 100644 --- a/doc/source/whatsnew/v0.20.3.txt +++ b/doc/source/whatsnew/v0.20.3.txt @@ -59,7 +59,7 @@ I/O Plotting ^^^^^^^^ - +- Fix regression in series plotting that prevented RGB and RGBA tuples from ...
- [ ] closes #16695 - [x] test added / passed - [x] passes ``git diff upstream/master --name-only -- '*.py' | flake8 --diff`` - [x] whatsnew entry Fixes a regression in the plot API in which RGB and RGBA tuples in the `color` kwarg caused an error when passed to matplotlib. The root cause of this error is th...
https://api.github.com/repos/pandas-dev/pandas/pulls/16701
2017-06-15T06:33:34Z
2017-06-16T12:46:19Z
2017-06-16T12:46:19Z
2017-07-07T13:10:41Z
TST: Add test of building frame from named Series and columns (#9232)
diff --git a/pandas/tests/frame/test_constructors.py b/pandas/tests/frame/test_constructors.py index 8459900ea1059..97cf3ce8a7216 100644 --- a/pandas/tests/frame/test_constructors.py +++ b/pandas/tests/frame/test_constructors.py @@ -1108,6 +1108,22 @@ def test_constructor_Series_named(self): expected = DataFra...
This test confirms that #9232 seems to work today, and so can be closed.
https://api.github.com/repos/pandas-dev/pandas/pulls/16700
2017-06-15T02:47:10Z
2017-06-15T10:10:13Z
2017-06-15T10:10:13Z
2017-06-15T10:10:16Z
Update link in the deprecation message for .ix
diff --git a/pandas/core/indexing.py b/pandas/core/indexing.py index a01e3dc46dfe9..95dccfc43e30e 100755 --- a/pandas/core/indexing.py +++ b/pandas/core/indexing.py @@ -1288,7 +1288,7 @@ def __init__(self, obj, name): .iloc for positional indexing See the documentation here: -http://pandas.pydata.org/pandas-docs/st...
The anchor on the indexing.html page has changed, this updates the link in the warning message
https://api.github.com/repos/pandas-dev/pandas/pulls/16691
2017-06-13T16:43:13Z
2017-06-13T23:14:20Z
null
2017-07-07T13:10:41Z
DOC: add header=None to read_excel docstring
diff --git a/pandas/io/excel.py b/pandas/io/excel.py index e3c9ae3f164cb..5db4603c37be0 100644 --- a/pandas/io/excel.py +++ b/pandas/io/excel.py @@ -77,7 +77,7 @@ header : int, list of ints, default 0 Row (0-indexed) to use for the column labels of the parsed DataFrame. If a list of integers is passed those ...
Documentation added
https://api.github.com/repos/pandas-dev/pandas/pulls/16689
2017-06-13T11:22:40Z
2017-06-14T08:36:21Z
2017-06-14T08:36:21Z
2017-06-14T08:36:27Z
Revert "BLD: fix numpy on 2.7 build as 1.13 was released but no deps are built for it
diff --git a/ci/requirements-2.7.build b/ci/requirements-2.7.build index a7b950e615464..415df13179fcf 100644 --- a/ci/requirements-2.7.build +++ b/ci/requirements-2.7.build @@ -2,5 +2,5 @@ python=2.7* python-dateutil=2.4.1 pytz=2013b nomkl -numpy=1.12* +numpy cython=0.23
xref #16650 xref #16634 This reverts commit 789f7bbb52f279bd1ed53abf1a9580f682c2d6b9.
https://api.github.com/repos/pandas-dev/pandas/pulls/16688
2017-06-13T11:13:55Z
2017-06-13T11:52:34Z
2017-06-13T11:52:34Z
2017-06-13T12:05:44Z
BUG: fix infer frequency for business daily
diff --git a/asv_bench/benchmarks/timeseries.py b/asv_bench/benchmarks/timeseries.py index f5ea4d7875931..efe713639fec9 100644 --- a/asv_bench/benchmarks/timeseries.py +++ b/asv_bench/benchmarks/timeseries.py @@ -53,7 +53,11 @@ def setup(self): self.rng6 = date_range(start='1/1/1', periods=self.N, freq='B') ...
Closes #16624 Had to update a couple of tests, test_timedelta and test_business_daily, which appear to rely on the old incorrect behaviour. Added a new regression test, test_business_daily_look_alike, for the bug. Modest performance impact: for 50,000-long business daily index, infer_freq goes from 2.54 ms to 3....
https://api.github.com/repos/pandas-dev/pandas/pulls/16683
2017-06-12T13:32:48Z
2017-07-07T13:11:46Z
2017-07-07T13:11:46Z
2017-07-07T13:11:50Z
Korean translation for README.md, README.rst file
diff --git a/README.md b/README.md index e05f1405419fc..dc74828ba9863 100644 --- a/README.md +++ b/README.md @@ -197,20 +197,13 @@ mode](https://pip.pypa.io/en/latest/reference/pip_install.html#editable-installs pip install -e . ``` -On Windows, you will need to install MinGW and execute: - -```sh -python setup.py ...
[ ] : closes #xxxx [ ] : tests added / passed [ ] : passes git diff upstream/master --name-only -- '*.py' | flake8 --diff [O] : whatsnew entry We have translated some documents into Korean for Pandas Korean users. This is to make it easier for Koreans to read documents and use Pandas more easily and convenient...
https://api.github.com/repos/pandas-dev/pandas/pulls/16681
2017-06-12T12:30:51Z
2017-07-19T10:30:40Z
null
2017-07-19T10:30:41Z
doc/README.rst 문법만 수정
diff --git a/README.md b/README.md index e05f1405419fc..d1c2f78a1b134 100644 --- a/README.md +++ b/README.md @@ -4,26 +4,26 @@ ----------------- -# pandas: powerful Python data analysis toolkit +# pandas : 강력한 파이썬 데이터 분석 툴킷 <table> <tr> - <td>Latest Release</td> +  <td>최신 버전</td> <td><img src="https://img....
md 파일 문법에 맞게, 하이퍼링크가 잘 걸리도록, 수정 했습니다. 해석 부분이 더 보완되야할 거 같습니다.
https://api.github.com/repos/pandas-dev/pandas/pulls/16678
2017-06-12T08:43:25Z
2017-06-12T12:45:36Z
null
2023-05-11T01:15:50Z
번역기판
diff --git a/doc/README.rst b/doc/README.rst index 0ea3234dec348..72f64e6b1cc39 100644 --- a/doc/README.rst +++ b/doc/README.rst @@ -1,53 +1,50 @@ .. _contributing.docs: -Contributing to the documentation +문서작업에 기여하세요! ================================= -If you're not the developer type, contributing to the docume...
I changed doc\readme.rst
https://api.github.com/repos/pandas-dev/pandas/pulls/16677
2017-06-12T06:13:06Z
2017-06-12T10:43:57Z
null
2023-05-11T01:15:50Z
revert #16663, which was a revert of #16039
diff --git a/doc/source/whatsnew/v0.20.3.txt b/doc/source/whatsnew/v0.20.3.txt index f21230693686e..5820e4ab38130 100644 --- a/doc/source/whatsnew/v0.20.3.txt +++ b/doc/source/whatsnew/v0.20.3.txt @@ -54,8 +54,7 @@ Indexing I/O ^^^ -- Bug in ``pd.read_csv()`` in which files containing EOF characters mid-field could...
i believe the issue with #16039 was the loss of the semantics provided by the "b" part of the mode in `fopen()`. this is a nop on unix-like systems, but appears to be significant on windows. the equivalent functionality on windows in `open()` is the `O_BINARY` flag. this adds that to the `open()` call, and provides ...
https://api.github.com/repos/pandas-dev/pandas/pulls/16675
2017-06-12T01:51:46Z
2017-06-13T10:20:48Z
2017-06-13T10:20:48Z
2017-07-07T13:10:41Z
MAINT: Buttress memory handling in C csv engine
diff --git a/pandas/_libs/src/parser/io.c b/pandas/_libs/src/parser/io.c index 4381ef19e991b..a82552c960074 100644 --- a/pandas/_libs/src/parser/io.c +++ b/pandas/_libs/src/parser/io.c @@ -15,6 +15,10 @@ The full license is in the LICENSE file, distributed with this software. void *new_file_source(char *fname, size_...
Title is self-explanatory. Follow-up to #16663.
https://api.github.com/repos/pandas-dev/pandas/pulls/16673
2017-06-12T00:29:36Z
2017-06-12T05:31:41Z
null
2023-05-11T01:15:50Z
Read excel nrows
diff --git a/.gitignore b/.gitignore index ff0a6aef47163..6ce10492a7d55 100644 --- a/.gitignore +++ b/.gitignore @@ -21,6 +21,7 @@ .ipynb_checkpoints .tags .cache/ +.vscode/ # Compiled source # ################### diff --git a/doc/source/whatsnew/v0.21.0.txt b/doc/source/whatsnew/v0.21.0.txt index 3dd8bb2ac2de5....
- [x] closes #16645 - [x] tests added / passed - [x] passes ``git diff upstream/master --name-only -- '*.py' | flake8 --diff`` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/16672
2017-06-11T22:21:42Z
2017-11-10T20:18:15Z
null
2017-11-26T18:33:07Z
TST: Add test for groupby sum of large ints
diff --git a/pandas/tests/groupby/test_aggregate.py b/pandas/tests/groupby/test_aggregate.py index 0de263589c6d6..b578a6efb0034 100644 --- a/pandas/tests/groupby/test_aggregate.py +++ b/pandas/tests/groupby/test_aggregate.py @@ -865,3 +865,20 @@ def test_agg_timezone_round_trip(self): ts = df['B'].iloc[2] ...
Title is self-explanatory. Closes #14758.
https://api.github.com/repos/pandas-dev/pandas/pulls/16671
2017-06-11T21:54:58Z
2017-06-12T10:46:53Z
2017-06-12T10:46:53Z
2017-06-13T01:15:18Z
TST: Add test for groupby mean of ints
diff --git a/pandas/tests/groupby/test_aggregate.py b/pandas/tests/groupby/test_aggregate.py index d7b46e6748b99..0de263589c6d6 100644 --- a/pandas/tests/groupby/test_aggregate.py +++ b/pandas/tests/groupby/test_aggregate.py @@ -234,6 +234,27 @@ def test_agg_grouping_is_list_tuple(self): expected = grouped.mea...
Title is self-explanatory. Closes #11199.
https://api.github.com/repos/pandas-dev/pandas/pulls/16670
2017-06-11T19:25:35Z
2017-06-11T23:08:56Z
2017-06-11T23:08:56Z
2017-06-12T01:17:01Z
BUG: Fix Categorical comparsion with Series of dtype 'category'
diff --git a/doc/source/whatsnew/v0.21.0.txt b/doc/source/whatsnew/v0.21.0.txt index 89e2d3006696c..01ead1f9945e0 100644 --- a/doc/source/whatsnew/v0.21.0.txt +++ b/doc/source/whatsnew/v0.21.0.txt @@ -1168,6 +1168,7 @@ PyPy - Fix :func:`DataFrame.memory_usage` to support PyPy. Objects on PyPy do not have a fixed size,...
This is a fix attempt for issue #16659. - [ ] closes #xxxx - [ ] tests added / passed - [ ] passes ``git diff upstream/master --name-only -- '*.py' | flake8 --diff`` - [ ] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/16667
2017-06-11T13:51:23Z
2017-12-10T23:31:36Z
null
2017-12-10T23:31:36Z
PERF: HDFStore __unicode__ method
diff --git a/asv_bench/benchmarks/hdfstore_bench.py b/asv_bench/benchmarks/hdfstore_bench.py index dc72f3d548aaf..7d490180e8af6 100644 --- a/asv_bench/benchmarks/hdfstore_bench.py +++ b/asv_bench/benchmarks/hdfstore_bench.py @@ -90,6 +90,15 @@ def time_query_store_table(self): stop = self.df2.index[15000] ...
supersedes #16514 HDFStore unicode now only returns file path info. New info() method has the previous behavior of unicode. ``` import pandas as pd store = pd.HDFStore('test.h5', 'w') for i in range(5000): store.put('table_{}'.format(i), pd.DataFrame([i])) # Before %time str(store) CPU times: user 2...
https://api.github.com/repos/pandas-dev/pandas/pulls/16666
2017-06-11T11:35:07Z
2017-06-11T23:48:31Z
2017-06-11T23:48:31Z
2017-06-12T01:06:49Z
DOC: Fix typo in shared doc for align method
diff --git a/pandas/core/generic.py b/pandas/core/generic.py index accb7d0db1d2c..98977bf8a595f 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -5045,7 +5045,7 @@ def ranker(data): return ranker(data) _shared_docs['align'] = (""" - Align two object on their axes with the + ...
https://api.github.com/repos/pandas-dev/pandas/pulls/16665
2017-06-11T10:34:28Z
2017-06-11T15:48:30Z
2017-06-11T15:48:30Z
2017-06-11T15:48:33Z
MAINT: Give nice error message if xarray import fails
diff --git a/pandas/core/generic.py b/pandas/core/generic.py index accb7d0db1d2c..a674c3ca28ae8 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -1501,7 +1501,17 @@ def to_xarray(self): ----- See the `xarray docs <http://xarray.pydata.org/en/stable/>`__ """ - import ...
Title is self-explanatory. Shouldn't `xarray` get the same nice error message as `feather-format`?
https://api.github.com/repos/pandas-dev/pandas/pulls/16664
2017-06-11T09:15:59Z
2017-06-11T15:49:08Z
2017-06-11T15:49:08Z
2017-06-11T19:47:27Z
BUG: csv parsing with EOF byte on windows, Revert gh-16039
diff --git a/doc/source/whatsnew/v0.20.3.txt b/doc/source/whatsnew/v0.20.3.txt index 52f7701724f18..f21230693686e 100644 --- a/doc/source/whatsnew/v0.20.3.txt +++ b/doc/source/whatsnew/v0.20.3.txt @@ -54,6 +54,7 @@ Indexing I/O ^^^ +- Bug in ``pd.read_csv()`` in which files containing EOF characters mid-field could...
#16039 created a bug in which files containing byte-like data could break on Windows, as EOF characters mid-field (despite being quoted) would cause premature line breaks. Given that this PR was a performance patch, this commit can be safely reverted. Closes #16559 (confirmed with unit test). cc @dgwynne
https://api.github.com/repos/pandas-dev/pandas/pulls/16663
2017-06-11T09:05:07Z
2017-06-11T23:42:44Z
2017-06-11T23:42:44Z
2017-07-07T13:10:41Z
ENH: to_datetime support iso week year (16607)
diff --git a/doc/source/whatsnew/v0.21.0.txt b/doc/source/whatsnew/v0.21.0.txt index 3dd8bb2ac2de5..38cd3bb56abae 100644 --- a/doc/source/whatsnew/v0.21.0.txt +++ b/doc/source/whatsnew/v0.21.0.txt @@ -24,6 +24,9 @@ New features <https://www.python.org/dev/peps/pep-0519/>`_ on most readers and writers (:issue:`13823`...
ENH: to_datetime support iso week year - [x] closes #16607 - [x] test added / passed - [x] passes ``git diff upstream/master --name-only -- '*.py' | flake8 --diff`` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/16661
2017-06-10T21:55:09Z
2017-11-23T16:45:30Z
null
2017-11-23T16:45:30Z
DOC: improve read_excel docstring
diff --git a/doc/source/io.rst b/doc/source/io.rst index bd81b478b5326..7ea476514e88d 100644 --- a/doc/source/io.rst +++ b/doc/source/io.rst @@ -712,6 +712,16 @@ index column inference and discard the last column, pass ``index_col=False``: pd.read_csv(StringIO(data)) pd.read_csv(StringIO(data), index_col=Fals...
closes #16582 closes #16580 closes #16655
https://api.github.com/repos/pandas-dev/pandas/pulls/16658
2017-06-10T15:05:58Z
2017-06-11T23:19:39Z
2017-06-11T23:19:39Z
2017-07-07T13:10:41Z
Revert "fix pytest-xidst version as 1.17 appears buggy (#16652)"
diff --git a/ci/install_travis.sh b/ci/install_travis.sh index f4e6c979f28a4..8cf6f2ce636da 100755 --- a/ci/install_travis.sh +++ b/ci/install_travis.sh @@ -107,7 +107,7 @@ if [ -e ${REQ} ]; then fi time conda install -n pandas pytest -time pip install pytest-xdist==1.16.0 +time pip install pytest-xdist if [ "$L...
This reverts commit ec6bf6deaf502ac05a7120df13bd9b13cb3083f6. 1.17.1 released that fixes closes #16653
https://api.github.com/repos/pandas-dev/pandas/pulls/16657
2017-06-10T14:30:25Z
2017-06-10T15:09:31Z
2017-06-10T15:09:31Z
2017-06-10T15:09:31Z
CI: restore np 113 in ci builds
diff --git a/ci/requirements-3.6.build b/ci/requirements-3.6.build index 8d09e0ee93070..1c4b46aea3865 100644 --- a/ci/requirements-3.6.build +++ b/ci/requirements-3.6.build @@ -2,5 +2,5 @@ python=3.6* python-dateutil pytz nomkl -numpy=1.12* +numpy cython diff --git a/ci/requirements-3.6_DOC.build b/ci/requirements-...
closes #16634
https://api.github.com/repos/pandas-dev/pandas/pulls/16656
2017-06-10T10:42:04Z
2017-06-15T14:45:31Z
2017-06-15T14:45:31Z
2017-07-06T17:40:07Z
COMPAT: numpy 1.13 test compat
diff --git a/ci/requirements-3.6_DOC.build b/ci/requirements-3.6_DOC.build index bdcfe28105866..37faaa7e4db88 100644 --- a/ci/requirements-3.6_DOC.build +++ b/ci/requirements-3.6_DOC.build @@ -1,5 +1,5 @@ python=3.6* python-dateutil pytz -numpy +numpy=1.12* cython diff --git a/pandas/compat/numpy/__init__.py b/pand...
https://api.github.com/repos/pandas-dev/pandas/pulls/16654
2017-06-10T01:49:16Z
2017-06-10T02:09:25Z
2017-06-10T02:09:25Z
2017-06-10T02:09:25Z
fix pytest-xidst version as 1.17 appears buggy
diff --git a/ci/install_travis.sh b/ci/install_travis.sh index 8cf6f2ce636da..f4e6c979f28a4 100755 --- a/ci/install_travis.sh +++ b/ci/install_travis.sh @@ -107,7 +107,7 @@ if [ -e ${REQ} ]; then fi time conda install -n pandas pytest -time pip install pytest-xdist +time pip install pytest-xdist==1.16.0 if [ "$L...
https://api.github.com/repos/pandas-dev/pandas/pulls/16652
2017-06-10T00:13:28Z
2017-06-10T01:28:41Z
2017-06-10T01:28:41Z
2017-07-06T17:34:12Z
WIP: keep column levels when using apply after grouping (#16231)
diff --git a/doc/source/whatsnew/v0.20.3.txt b/doc/source/whatsnew/v0.20.3.txt index 52f7701724f18..8d145033ddf89 100644 --- a/doc/source/whatsnew/v0.20.3.txt +++ b/doc/source/whatsnew/v0.20.3.txt @@ -65,6 +65,7 @@ Plotting Groupby/Resample/Rolling ^^^^^^^^^^^^^^^^^^^^^^^^ +- Bug in groupby logic causing MultiIndex...
- [X] closes #16231 - [X] 3 tests added / passed - [X] passes ``git diff upstream/master --name-only -- '*.py' | flake8 --diff`` - [X] whatsnew entry This is still experimental-- the groupby logic is awfully complicated at this point, and there are lots of edge cases.
https://api.github.com/repos/pandas-dev/pandas/pulls/16651
2017-06-09T22:38:42Z
2017-11-10T20:16:40Z
null
2017-11-10T20:16:40Z
BLD: fix numpy on 2.7 build as 1.13 was released but no deps are built yet
diff --git a/ci/requirements-2.7.build b/ci/requirements-2.7.build index 415df13179fcf..a7b950e615464 100644 --- a/ci/requirements-2.7.build +++ b/ci/requirements-2.7.build @@ -2,5 +2,5 @@ python=2.7* python-dateutil=2.4.1 pytz=2013b nomkl -numpy +numpy=1.12* cython=0.23
https://api.github.com/repos/pandas-dev/pandas/pulls/16650
2017-06-09T22:23:29Z
2017-06-09T22:45:29Z
2017-06-09T22:45:29Z
2017-12-12T02:38:29Z
CLN: make license file machine readable
diff --git a/AUTHORS.md b/AUTHORS.md new file mode 100644 index 0000000000000..dcaaea101f4c8 --- /dev/null +++ b/AUTHORS.md @@ -0,0 +1,57 @@ +About the Copyright Holders +=========================== + +* Copyright (c) 2008-2011 AQR Capital Management, LLC + + AQR Capital Management began pandas development in 2008...
Splits extra information about the license and copyright holders to AUTHORS.md. The [gem used by GitHub's license detection](https://help.github.com/articles/licensing-a-repository/#detecting-a-license) now properly detects the correct license. ``` $ licensee License file: LICENSE License hash: d6dd3ea9454476...
https://api.github.com/repos/pandas-dev/pandas/pulls/16649
2017-06-09T21:08:15Z
2017-06-09T22:46:34Z
2017-06-09T22:46:34Z
2017-06-09T22:47:12Z
TST: Test against python-dateutil master
diff --git a/ci/requirements-3.6_NUMPY_DEV.build b/ci/requirements-3.6_NUMPY_DEV.build index 738366867a217..900c050f1cc9e 100644 --- a/ci/requirements-3.6_NUMPY_DEV.build +++ b/ci/requirements-3.6_NUMPY_DEV.build @@ -1,4 +1,3 @@ python=3.6* -python-dateutil pytz cython diff --git a/ci/requirements-3.6_NUMPY_DEV.buil...
https://github.com/dateutil/dateutil/issues/397 just for testing
https://api.github.com/repos/pandas-dev/pandas/pulls/16648
2017-06-09T18:41:04Z
2017-06-14T23:01:32Z
2017-06-14T23:01:32Z
2017-09-19T20:51:12Z
Set defaults to empty dicts since that's how they are set internally
diff --git a/pandas/plotting/_misc.py b/pandas/plotting/_misc.py index 20ada033c0f58..5160cae6788ed 100644 --- a/pandas/plotting/_misc.py +++ b/pandas/plotting/_misc.py @@ -15,8 +15,8 @@ def scatter_matrix(frame, alpha=0.5, figsize=None, ax=None, grid=False, - diagonal='hist', marker='.', density...
`scatter_matrix()` takes arguments `density_kwds` and `hist_kwds` which defaults to None. These are later set to empty dicts if they are not None. This tiny PR changes the defaults to empty dicts to improve code clarity. - [ ] closes #xxxx - [X] tests added / passed - [X] passes ``git diff upstream/master --nam...
https://api.github.com/repos/pandas-dev/pandas/pulls/16643
2017-06-08T17:15:58Z
2017-06-08T18:34:40Z
null
2023-05-11T01:15:49Z
Lsh
diff --git a/README.md b/README.md index e05f1405419fc..a616d5040da1e 100644 --- a/README.md +++ b/README.md @@ -78,49 +78,24 @@ [![https://gitter.im/pydata/pandas](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/pydata/pandas?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) ...
README.md 파일의 처음부터 일부를 한국어로 번역하였습니다.
https://api.github.com/repos/pandas-dev/pandas/pulls/16640
2017-06-08T15:18:17Z
2017-06-09T08:10:07Z
null
2023-05-11T01:15:48Z
BUG: TimedeltaIndex raising ValueError when slice indexing (#16637)
diff --git a/doc/source/whatsnew/v0.20.3.txt b/doc/source/whatsnew/v0.20.3.txt index 3d1bed2c9f1a9..ce7e8be16d8e2 100644 --- a/doc/source/whatsnew/v0.20.3.txt +++ b/doc/source/whatsnew/v0.20.3.txt @@ -41,6 +41,8 @@ Bug Fixes - Fixed a pytest marker failing downstream packages' tests suites (:issue:`16680`) - Fixed co...
Before accepting this Pull request is there any other kind of usage of loc that might fail using deltatimeindex that I am not aware of? I could take some time to fix it once and for all. closes #16637 - [ x ] closes #16637 - [ x ] tests added / passed - [ x ] passes ``git diff upstream/master --name-only -- ...
https://api.github.com/repos/pandas-dev/pandas/pulls/16638
2017-06-08T13:48:25Z
2017-07-06T12:23:39Z
2017-07-06T12:23:39Z
2017-07-07T13:12:14Z
TST: fix numpy on 3.6 build as 1.13 was released but no deps are built yet
diff --git a/ci/requirements-3.6.build b/ci/requirements-3.6.build index 1c4b46aea3865..8d09e0ee93070 100644 --- a/ci/requirements-3.6.build +++ b/ci/requirements-3.6.build @@ -2,5 +2,5 @@ python=3.6* python-dateutil pytz nomkl -numpy +numpy=1.12* cython
https://api.github.com/repos/pandas-dev/pandas/pulls/16633
2017-06-08T10:39:47Z
2017-06-08T10:47:19Z
2017-06-08T10:47:19Z
2017-07-06T17:34:47Z
TST: verify we can add and subtract from indices (#8142)
diff --git a/pandas/tests/indexes/test_base.py b/pandas/tests/indexes/test_base.py index d9f8e5e7f382b..18dbe6624008a 100644 --- a/pandas/tests/indexes/test_base.py +++ b/pandas/tests/indexes/test_base.py @@ -1800,6 +1800,25 @@ def test_string_index_repr(self): assert coerce(idx) == expected + @...
This just provides a validating test that some basic arithmetic on int64 and float64 indices works, and in particular that things like `pd.Int64Index([1, 2]) - 1` no longer raise `Exception: Input must be iterable!`. Should be able to close #8142, which in practice hasn't been applicable for a long time.
https://api.github.com/repos/pandas-dev/pandas/pulls/16629
2017-06-08T04:00:31Z
2017-06-08T10:48:23Z
2017-06-08T10:48:23Z
2017-06-08T11:57:52Z
TST: NaN in MultiIndex should not become a string (#7031)
diff --git a/pandas/tests/indexes/test_multi.py b/pandas/tests/indexes/test_multi.py index ba917f33d8595..ae734a44e10d2 100644 --- a/pandas/tests/indexes/test_multi.py +++ b/pandas/tests/indexes/test_multi.py @@ -2858,3 +2858,24 @@ def test_tuples_with_name_string(self): pd.Index(li, name='abc') w...
This verifies that NaNs in multiindexes don't become strings under outer joins or during arithmetic. This seems to have been fixed between 0.14.1 and 0.15.0. Too minor and internal for a whatsnew update.
https://api.github.com/repos/pandas-dev/pandas/pulls/16625
2017-06-07T17:07:04Z
2017-06-08T10:48:01Z
2017-06-08T10:48:01Z
2017-06-08T11:58:40Z
BUG: Fix Series.get failure on missing NaN (#8569)
diff --git a/doc/source/whatsnew/v0.20.3.txt b/doc/source/whatsnew/v0.20.3.txt index 2032209c4aa23..049737f948e17 100644 --- a/doc/source/whatsnew/v0.20.3.txt +++ b/doc/source/whatsnew/v0.20.3.txt @@ -48,7 +48,7 @@ Conversion Indexing ^^^^^^^^ - +- Bug in ``Float64Index`` causing an empty array instead of None to b...
Handle obscure case where `.get(np.nan)` wouldn't behave as expected. Fortunately the only change needed is within the unlikely branch, and so performance of get shouldn't be affected at all in the ordinary case. [X] fixes #8569 [X] tests added / passed [X] passes git diff upstream/master --name-only -- '*.py' | ...
https://api.github.com/repos/pandas-dev/pandas/pulls/16619
2017-06-07T03:25:55Z
2017-06-08T10:47:33Z
2017-06-08T10:47:32Z
2017-06-08T11:56:57Z
SparseSeries accepts scipy.sparse.spmatrix in constructor
diff --git a/doc/source/sparse.rst b/doc/source/sparse.rst index b4884cf1c4141..d5cf39ce2925f 100644 --- a/doc/source/sparse.rst +++ b/doc/source/sparse.rst @@ -213,9 +213,28 @@ To convert a ``SparseDataFrame`` back to sparse SciPy matrix in COO format, you sdf.to_coo() +.. _sparse.scipysparse_series: + Sparse...
- [X] closes #15634 - [X] tests added / passed - [X] passes ``git diff upstream/master --name-only -- '*.py' | flake8 --diff`` - [X] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/16617
2017-06-06T20:22:39Z
2018-01-21T18:20:45Z
null
2018-01-21T18:20:45Z
BUG: Fix/test SparseSeries/SparseDataFrame stack/unstack
diff --git a/doc/source/whatsnew/v0.21.0.txt b/doc/source/whatsnew/v0.21.0.txt index 261e12b824509..8d6dc95f094af 100644 --- a/doc/source/whatsnew/v0.21.0.txt +++ b/doc/source/whatsnew/v0.21.0.txt @@ -588,7 +588,7 @@ Sparse - Bug in ``SparseSeries`` raises ``AttributeError`` when a dictionary is passed in as data (:...
- [X] fixes #15045, closes #16614 - [X] tests added / passed - [X] passes ``git diff upstream/master --name-only -- '*.py' | flake8 --diff`` - [X] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/16616
2017-06-06T19:26:36Z
2017-09-26T19:01:41Z
2017-09-26T19:01:40Z
2017-09-26T19:01:48Z
Fix some lgtm alerts
diff --git a/pandas/core/dtypes/cast.py b/pandas/core/dtypes/cast.py index fd61813a57c98..16b0a5c8a74ca 100644 --- a/pandas/core/dtypes/cast.py +++ b/pandas/core/dtypes/cast.py @@ -668,7 +668,7 @@ def maybe_convert_objects(values, convert_dates=True, convert_numeric=True, if convert_timedeltas == 'coerce': ...
Hi, I just wanted to quickly fix a few alerts flagged up by lgtm.com. These are mostly simple ones but they were a few misnamed arguments in some calls. A total of 209 alerts have been found by lgtm.com, you can enable PR integration for automated PR reviews and flag these in the future before they find their way ...
https://api.github.com/repos/pandas-dev/pandas/pulls/16613
2017-06-06T17:55:17Z
2017-06-07T00:41:32Z
2017-06-07T00:41:32Z
2017-08-04T11:06:03Z
BUG: pickle compat with UTC tz's
diff --git a/doc/source/whatsnew.rst b/doc/source/whatsnew.rst index b1f9990a3e6af..3385bafc26467 100644 --- a/doc/source/whatsnew.rst +++ b/doc/source/whatsnew.rst @@ -20,6 +20,8 @@ These are new features and improvements of note in each release. .. include:: whatsnew/v0.21.0.txt +.. include:: whatsnew/v0.20.3.tx...
closes #16608
https://api.github.com/repos/pandas-dev/pandas/pulls/16611
2017-06-06T10:20:26Z
2017-06-06T13:10:01Z
2017-06-06T13:10:01Z
2017-07-07T13:12:14Z
Fix reading Series with read_hdf
diff --git a/doc/source/whatsnew/v0.20.3.txt b/doc/source/whatsnew/v0.20.3.txt index 249e05623a27f..967dd0be99280 100644 --- a/doc/source/whatsnew/v0.20.3.txt +++ b/doc/source/whatsnew/v0.20.3.txt @@ -56,6 +56,7 @@ I/O ^^^ -- Bug in ``pd.read_csv()`` in which files weren't opened as binary files by the C engine on ...
- [x] closes #16583 - [x] tests added / passed - [x] passes ``git diff upstream/master --name-only -- '*.py' | flake8 --diff`` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/16610
2017-06-06T08:50:51Z
2017-06-19T23:36:45Z
2017-06-19T23:36:45Z
2017-07-07T13:12:14Z
Fix automatic xlims in line plots
diff --git a/doc/source/whatsnew/v0.21.0.txt b/doc/source/whatsnew/v0.21.0.txt index 23a98d59554e9..00ce097d9d980 100644 --- a/doc/source/whatsnew/v0.21.0.txt +++ b/doc/source/whatsnew/v0.21.0.txt @@ -525,6 +525,8 @@ Plotting ^^^^^^^^ - Bug in plotting methods using ``secondary_y`` and ``fontsize`` not setting second...
- [x] closes #11310, closes #11471, closes #15495 - [x] tests added / passed - [x] passes ``git diff upstream/master --name-only -- '*.py' | flake8 --diff`` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/16600
2017-06-05T12:39:46Z
2017-09-19T18:52:04Z
2017-09-19T18:52:04Z
2017-09-24T10:10:41Z
BUG #15150 normalization of crosstable with multiindex and margins
diff --git a/doc/source/whatsnew/v0.21.0.txt b/doc/source/whatsnew/v0.21.0.txt index 5a5ea827e74ad..40908b4fc3b02 100644 --- a/doc/source/whatsnew/v0.21.0.txt +++ b/doc/source/whatsnew/v0.21.0.txt @@ -311,6 +311,9 @@ Reshaping - Bug in merging with categorical dtypes with datetimelikes incorrectly raised a ``TypeError...
- [x] closes #15150 - [x] tests added / passed - [x] passes ``git diff upstream/master --name-only -- '*.py' | flake8 --diff`` - [x] whatsnew entry When debugging this issue I came across some unexpected results for margins when normalization 'index' or 'column' is performed. Here a cross table with 'column...
https://api.github.com/repos/pandas-dev/pandas/pulls/16599
2017-06-05T11:00:18Z
2017-11-10T20:19:16Z
null
2017-11-10T20:19:16Z
DOC: Whatsnew fixups
diff --git a/doc/source/whatsnew/v0.20.2.txt b/doc/source/whatsnew/v0.20.2.txt index e1469cf15e20c..31125db0f34d4 100644 --- a/doc/source/whatsnew/v0.20.2.txt +++ b/doc/source/whatsnew/v0.20.2.txt @@ -1,14 +1,12 @@ .. _whatsnew_0202: -v0.20.2 (June 3, 2017) +v0.20.2 (June 4, 2017) ---------------------- This is ...
https://api.github.com/repos/pandas-dev/pandas/pulls/16596
2017-06-04T11:29:05Z
2017-06-04T11:29:15Z
2017-06-04T11:29:15Z
2017-06-04T20:29:16Z
Fix typo in merge doc for validate kwarg
diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 25c3c3fe4e48e..2b2e7be62427b 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -184,7 +184,7 @@ dataset. * "many_to_one" or "m:1": check if merge keys are unique in right dataset. - * "many_to_may" or "m:m": allowed, but ...
- [x] tests added / passed
https://api.github.com/repos/pandas-dev/pandas/pulls/16595
2017-06-04T07:59:06Z
2017-06-04T10:42:47Z
2017-06-04T10:42:47Z
2017-06-05T06:41:55Z
PERF: vectorize _interp_limit
diff --git a/pandas/core/missing.py b/pandas/core/missing.py index 51778684d68f5..5aabc9d8730dd 100644 --- a/pandas/core/missing.py +++ b/pandas/core/missing.py @@ -143,12 +143,6 @@ def interpolate_1d(xvalues, yvalues, method='linear', limit=None, 'DatetimeIndex') method = 'values...
xref https://github.com/pandas-dev/pandas/issues/16584 Here are the timings vs. master ``` before after ratio [ff0d1f4d] [6b1552f1] - 12.3±0.3ms 2.28±0.04ms 0.18 frame_methods.Interpolate.time_interpolate_some_good_infer - 12.6±0.7ms 1.15±0.01ms ...
https://api.github.com/repos/pandas-dev/pandas/pulls/16592
2017-06-03T17:46:55Z
2017-06-04T10:39:31Z
2017-06-04T10:39:31Z
2017-06-04T20:29:17Z
DOC: Fix typo in timeseries.rst
diff --git a/doc/source/timeseries.rst b/doc/source/timeseries.rst index 71d85f9b3995b..1dd80aec4fd6c 100644 --- a/doc/source/timeseries.rst +++ b/doc/source/timeseries.rst @@ -1922,7 +1922,7 @@ then you can use a ``PeriodIndex`` and/or ``Series`` of ``Periods`` to do comput span = pd.period_range('1215-01-01', '13...
Simple typo fix
https://api.github.com/repos/pandas-dev/pandas/pulls/16590
2017-06-03T12:53:28Z
2017-06-04T00:52:51Z
2017-06-04T00:52:51Z
2017-06-04T02:31:56Z
consolidated the duplicate definitions of NA values (in parsers & IO)
diff --git a/doc/source/io.rst b/doc/source/io.rst index 7ea476514e88d..69377fad15270 100644 --- a/doc/source/io.rst +++ b/doc/source/io.rst @@ -225,9 +225,9 @@ NA and Missing Data Handling na_values : scalar, str, list-like, or dict, default ``None`` Additional strings to recognize as NA/NaN. If dict passed, spe...
xref https://github.com/pandas-dev/pandas/pull/16534#issuecomment-305636727 xref #16606
https://api.github.com/repos/pandas-dev/pandas/pulls/16589
2017-06-03T03:53:28Z
2017-06-13T23:17:45Z
2017-06-13T23:17:45Z
2017-06-15T15:58:26Z
BUG: IntervalIndex is_non_overlapping_monotonic is incorrect when endpoints are closed on both sides
diff --git a/.gitignore b/.gitignore index ff0a6aef47163..4b540f38e8adf 100644 --- a/.gitignore +++ b/.gitignore @@ -21,6 +21,7 @@ .ipynb_checkpoints .tags .cache/ +.vscode # Compiled source # ################### diff --git a/doc/source/whatsnew/v0.21.0.txt b/doc/source/whatsnew/v0.21.0.txt index 3dd8bb2ac2de5.....
- [x] closes #16560 - [x] tests added / passed - [x] passes ``git diff upstream/master --name-only -- '*.py' | flake8 --diff`` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/16588
2017-06-02T23:20:51Z
2017-09-09T07:18:26Z
null
2023-05-11T01:15:46Z
DOC: whatsnew 0.20.2 edits
diff --git a/doc/source/whatsnew/v0.20.2.txt b/doc/source/whatsnew/v0.20.2.txt index d58a98703f22a..c9486954258c8 100644 --- a/doc/source/whatsnew/v0.20.2.txt +++ b/doc/source/whatsnew/v0.20.2.txt @@ -1,7 +1,7 @@ .. _whatsnew_0202: -v0.20.2 (???) -------------- +v0.20.2 (June 3, 2017) +---------------------- This...
https://api.github.com/repos/pandas-dev/pandas/pulls/16587
2017-06-02T22:29:09Z
2017-06-02T22:30:10Z
2017-06-02T22:30:10Z
2017-06-04T17:03:48Z
BUG: fix missing sort keyword for PeriodIndex.join
diff --git a/doc/source/whatsnew/v0.20.3.txt b/doc/source/whatsnew/v0.20.3.txt index ce7e8be16d8e2..8744bc4f70026 100644 --- a/doc/source/whatsnew/v0.20.3.txt +++ b/doc/source/whatsnew/v0.20.3.txt @@ -82,7 +82,7 @@ Sparse Reshaping ^^^^^^^^^ - +- ``PeriodIndex`` / ``TimedeltaIndex.join`` was missing the ``sort=`` k...
- [x] closes #16541 - [x] tests added / passed - [x] passes ``git diff upstream/master --name-only -- '*.py' | flake8 --diff`` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/16586
2017-06-02T19:57:47Z
2017-07-07T12:16:56Z
2017-07-07T12:16:56Z
2017-07-07T13:17:10Z
API: Make is_strictly_monotonic_* private
diff --git a/doc/source/advanced.rst b/doc/source/advanced.rst index ea00588ba156f..711c3e9a95d05 100644 --- a/doc/source/advanced.rst +++ b/doc/source/advanced.rst @@ -948,6 +948,16 @@ On the other hand, if the index is not monotonic, then both slice bounds must be In [11]: df.loc[2:3, :] KeyError: 'Cannot g...
xref https://github.com/pandas-dev/pandas/pull/16555#issuecomment-305608528
https://api.github.com/repos/pandas-dev/pandas/pulls/16576
2017-06-01T20:42:45Z
2017-06-02T09:54:41Z
2017-06-02T09:54:41Z
2017-06-04T20:29:19Z
TST: Make HDF5 fspath write test robust
diff --git a/pandas/tests/io/test_common.py b/pandas/tests/io/test_common.py index 289f86eb2dc53..b527e3c5dc254 100644 --- a/pandas/tests/io/test_common.py +++ b/pandas/tests/io/test_common.py @@ -143,7 +143,6 @@ def test_read_fspath_all(self, reader, module, path): ('to_csv', {}, 'os'), ('to_excel', ...
The test_write_fspath_all test would fail on the HDF5 example occasionally (about 1/100 in my experience). Apparently you don't get an identical HDF5 every single time. This refactors that test out to its own where we write and read both versions, and compare equality that way. See https://github.com/pandas-dev/p...
https://api.github.com/repos/pandas-dev/pandas/pulls/16575
2017-06-01T18:35:41Z
2017-06-01T22:09:52Z
2017-06-01T22:09:52Z
2017-06-04T20:29:22Z
add implementation of is_monotonic_decreasing to MultiIndex
diff --git a/pandas/core/indexes/multi.py b/pandas/core/indexes/multi.py index 420788f9008cd..6cfc45e7690fa 100644 --- a/pandas/core/indexes/multi.py +++ b/pandas/core/indexes/multi.py @@ -714,7 +714,7 @@ def is_monotonic_decreasing(self): return if the index is monotonic decreasing (only equal or dec...
- [X] closes #16554 - [X] tests added / passed - [X] passes ``git diff upstream/master --name-only -- '*.py' | flake8 --diff`` - [ ] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/16573
2017-06-01T14:11:50Z
2017-09-07T00:26:33Z
null
2017-09-07T00:26:33Z
0.20.2 backports 2
diff --git a/asv_bench/benchmarks/indexing.py b/asv_bench/benchmarks/indexing.py index 6a2c9d48c4a28..d941ef20dc7ac 100644 --- a/asv_bench/benchmarks/indexing.py +++ b/asv_bench/benchmarks/indexing.py @@ -204,6 +204,12 @@ def setup(self): [np.arange(100), list('A'), list('A')], names=['one', '...
https://api.github.com/repos/pandas-dev/pandas/pulls/16570
2017-06-01T12:16:44Z
2017-06-04T17:01:55Z
2017-06-04T17:01:55Z
2017-06-04T17:01:59Z
PERF/BUG: reimplement MultiIndex.remove_unused_levels
diff --git a/asv_bench/benchmarks/indexing.py b/asv_bench/benchmarks/indexing.py index 6a2c9d48c4a28..d941ef20dc7ac 100644 --- a/asv_bench/benchmarks/indexing.py +++ b/asv_bench/benchmarks/indexing.py @@ -204,6 +204,12 @@ def setup(self): [np.arange(100), list('A'), list('A')], names=['one', '...
* Add a large random test case for remove_unused_levels that failed the previous implementation * Fix #16556, a performance issue with the previous implementation * <strike>Add inplace functionality</strike> * Always return (if not inplace) at least a view instead of the original index
https://api.github.com/repos/pandas-dev/pandas/pulls/16565
2017-06-01T01:40:30Z
2017-06-02T00:23:11Z
2017-06-02T00:23:11Z
2022-11-24T14:47:26Z
COMPAT: cython str-to-int can raise a ValueError on non-CPython
diff --git a/pandas/_libs/index.pyx b/pandas/_libs/index.pyx index 21680fb0b3921..5e92c506b5d0c 100644 --- a/pandas/_libs/index.pyx +++ b/pandas/_libs/index.pyx @@ -152,7 +152,7 @@ cdef class IndexEngine: try: return self.mapping.get_item(val) - except TypeError: + except (TypeErro...
closes #16336
https://api.github.com/repos/pandas-dev/pandas/pulls/16563
2017-05-31T21:14:36Z
2017-05-31T23:04:56Z
2017-05-31T23:04:56Z
2017-05-31T23:05:00Z
BUG: conversion of Series to Categorical
diff --git a/doc/source/whatsnew/v0.20.3.txt b/doc/source/whatsnew/v0.20.3.txt index 2032209c4aa23..83cd5cc4b470c 100644 --- a/doc/source/whatsnew/v0.20.3.txt +++ b/doc/source/whatsnew/v0.20.3.txt @@ -44,6 +44,7 @@ Conversion ^^^^^^^^^^ - Bug in pickle compat prior to the v0.20.x series, when ``UTC`` is a timezone ...
Patch to bug fix #16524
https://api.github.com/repos/pandas-dev/pandas/pulls/16557
2017-05-31T18:08:15Z
2017-06-09T15:51:12Z
2017-06-09T15:51:12Z
2017-07-07T13:12:14Z
Strictly monotonic
diff --git a/doc/source/api.rst b/doc/source/api.rst index 888bb6d67e94b..e210849d9a0ca 100644 --- a/doc/source/api.rst +++ b/doc/source/api.rst @@ -1286,6 +1286,8 @@ Attributes Index.is_monotonic Index.is_monotonic_increasing Index.is_monotonic_decreasing + Index.is_strictly_monotonic_increasing + Inde...
Closes https://github.com/pandas-dev/pandas/issues/16515 I think this can go in 0.20.2, even though part of it is a (small) enhancement.
https://api.github.com/repos/pandas-dev/pandas/pulls/16555
2017-05-31T16:44:52Z
2017-06-01T10:37:00Z
2017-06-01T10:37:00Z
2017-06-04T17:02:56Z
DOC: Remove incorrect elements of PeriodIndex docstring
diff --git a/pandas/core/indexes/period.py b/pandas/core/indexes/period.py index 15fd9b7dc2b6a..f8af6c8303d99 100644 --- a/pandas/core/indexes/period.py +++ b/pandas/core/indexes/period.py @@ -125,15 +125,7 @@ def _new_PeriodIndex(cls, **d): class PeriodIndex(DatelikeOps, DatetimeIndexOpsMixin, Int64Index): """ ...
- Closes #9056
https://api.github.com/repos/pandas-dev/pandas/pulls/16553
2017-05-31T14:52:54Z
2017-06-01T19:59:44Z
2017-06-01T19:59:44Z
2017-06-12T14:25:23Z
BUG: Bug in .resample() and .groupby() when aggregating on integers
diff --git a/doc/source/whatsnew/v0.20.2.txt b/doc/source/whatsnew/v0.20.2.txt index 676da5c370041..9f88d629880ed 100644 --- a/doc/source/whatsnew/v0.20.2.txt +++ b/doc/source/whatsnew/v0.20.2.txt @@ -88,6 +88,7 @@ Groupby/Resample/Rolling - Bug creating datetime rolling window on an empty DataFrame (:issue:`15819`)...
closes #16361
https://api.github.com/repos/pandas-dev/pandas/pulls/16549
2017-05-31T11:55:07Z
2017-05-31T22:44:40Z
2017-05-31T22:44:40Z
2017-06-04T17:03:56Z
DOC: change doc build to python 3.6
diff --git a/.travis.yml b/.travis.yml index 8b6700e11d2c5..5dc4256a268ad 100644 --- a/.travis.yml +++ b/.travis.yml @@ -74,7 +74,11 @@ matrix: # In allow_failures - os: linux env: - - JOB="3.5_DOC" DOC=true + - JOB="3.6_DOC" DOC=true + addons: + apt: + packages: + ...
see https://github.com/pandas-dev/pandas/pull/16432
https://api.github.com/repos/pandas-dev/pandas/pulls/16545
2017-05-31T09:42:59Z
2017-06-02T12:26:44Z
2017-06-02T12:26:44Z
2017-06-02T12:29:03Z
BUG: Fixed pd.unique on array of tuples
diff --git a/doc/source/whatsnew/v0.20.2.txt b/doc/source/whatsnew/v0.20.2.txt index 676da5c370041..2f0ee7a1a6e71 100644 --- a/doc/source/whatsnew/v0.20.2.txt +++ b/doc/source/whatsnew/v0.20.2.txt @@ -44,8 +44,7 @@ Bug Fixes - Bug in ``DataFrame.update()`` with ``overwrite=False`` and ``NaN values`` (:issue:`15593`) ...
Closes #16519
https://api.github.com/repos/pandas-dev/pandas/pulls/16543
2017-05-30T22:05:37Z
2017-06-01T10:30:58Z
2017-06-01T10:30:58Z
2017-06-04T20:29:23Z
TST: Avoid global state in matplotlib tests
diff --git a/pandas/tests/plotting/test_datetimelike.py b/pandas/tests/plotting/test_datetimelike.py index 0e15aaa2555f4..0cff365be3ec8 100644 --- a/pandas/tests/plotting/test_datetimelike.py +++ b/pandas/tests/plotting/test_datetimelike.py @@ -55,16 +55,15 @@ def test_ts_plot_with_tz(self): def test_fontsize_se...
Replaces most uses of implicit global state from matplotlib in test_datetimelike.py and test_series.py. This was potentially causing random failures where a figure expected to be on a new, blank figure would instead plot on an existing axes (that's the guess at least). Closes #16371 (hopefully).
https://api.github.com/repos/pandas-dev/pandas/pulls/16539
2017-05-30T14:54:45Z
2017-05-31T02:39:16Z
2017-05-31T02:39:16Z
2017-06-04T20:29:34Z
0.20.2 backports 1
diff --git a/.travis.yml b/.travis.yml index e5e05ed26da56..b7c18d2850a15 100644 --- a/.travis.yml +++ b/.travis.yml @@ -123,7 +123,7 @@ after_success: after_script: - echo "after_script start" - - source activate pandas && python -c "import pandas; pandas.show_versions();" + - source activate pandas && pushd /...
First round of backports. Covers everything up to and including https://github.com/pandas-dev/pandas/pull/16526 @jorisvandenbossche I can't remember, did you make PRs for batches of backports or commit directly to the maintenance branch? I think I prefer PRs, if only for another historical record. And I think we ...
https://api.github.com/repos/pandas-dev/pandas/pulls/16535
2017-05-29T20:24:19Z
2017-05-30T12:23:46Z
2017-05-30T12:23:46Z
2017-06-04T20:29:10Z