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 |
|---|---|---|---|---|---|---|---|
BUG: Add check for input array lengths in from_arrays method (GH13599) | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index 58a92cfa5a784..f24bbe8e52ec8 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -728,3 +728,5 @@ Bug Fixes
- Bug where ``pd.read_gbq()`` could throw ``ImportError: No module named discovery`` as a re... | - [x] closes #13599
- [ ] tests added / passed
- [x] whatsnew entry
/cc @jreback
| https://api.github.com/repos/pandas-dev/pandas/pulls/13728 | 2016-07-20T22:10:30Z | 2016-07-20T22:25:22Z | null | 2016-07-20T22:27:17Z |
BUG: Fix pd.Timedelta(None) to return NaT. | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index 646e8822ed46f..3839acaed15e6 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -755,3 +755,4 @@ Bug Fixes
- Bug where ``pd.read_gbq()`` could throw ``ImportError: No module named discovery`` as a re... | - [ ] closes #xxxx
- [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
Before this commit pd.Timedelta raised ValueError
when None is passed.
This behavior is inconsistent because
- pd.Timestamp(None) and pd.Period(None) return NaT
- pd.Timedelta returns NaT if '', '... | https://api.github.com/repos/pandas-dev/pandas/pulls/13723 | 2016-07-20T17:00:53Z | 2016-07-24T16:00:24Z | null | 2016-07-24T16:03:34Z |
CLN: Remove a test case about Timestamp to TestTimestamp | diff --git a/pandas/tseries/tests/test_timedeltas.py b/pandas/tseries/tests/test_timedeltas.py
index 36ae479c3dfcc..659101cb4cad2 100644
--- a/pandas/tseries/tests/test_timedeltas.py
+++ b/pandas/tseries/tests/test_timedeltas.py
@@ -188,7 +188,6 @@ def test_construction(self):
self.assertEqual(Timedelta('').va... | - [ ] closes #xxxx
- [ ] tests added / passed
- [ ] passes `git diff upstream/master | flake8 --diff`
- [ ] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/13722 | 2016-07-20T17:00:07Z | 2016-07-20T17:25:33Z | 2016-07-20T17:25:33Z | 2016-07-20T17:27:38Z |
BLD: Use tempita for cython templating | diff --git a/ci/lint.sh b/ci/lint.sh
index 144febcfcece5..3adfa8d1e3d33 100755
--- a/ci/lint.sh
+++ b/ci/lint.sh
@@ -23,7 +23,7 @@ if [ "$LINT" ]; then
for path in 'window.pyx'
do
echo "linting -> pandas/$path"
- flake8 pandas/$path --filename '*.pyx' --select=E501,E302,E203,E226,E111,E114,E22... | - [x] closes #13399
- [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
not sure what the `setup.py` 's best practice be...
CC: @gfyoung
| https://api.github.com/repos/pandas-dev/pandas/pulls/13716 | 2016-07-20T11:59:15Z | 2016-07-26T10:51:50Z | null | 2016-07-26T11:14:07Z |
ENH: Enable automatic writing of dates to Stata files | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index efa6e5575fa79..d1ee506ba294c 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -251,6 +251,7 @@ Other enhancements
- ``Series`` has gained the properties ``.is_monotonic``, ``.is_monotonic_increasin... | - [x] closes #12259
- [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
Automatically select type %tc for datetime[ns] columns
Change ValueErrors to NotImplementedError for unsupported types
Add tests for select exceptions
closes #12259
| https://api.github.com/repos/pandas-dev/pandas/pulls/13710 | 2016-07-19T17:14:07Z | 2016-07-21T10:59:35Z | null | 2017-01-24T21:31:00Z |
DOC/DEPR: pivot_annual | diff --git a/doc/source/cookbook.rst b/doc/source/cookbook.rst
index 0dbc79415af0b..38a816060e1bc 100644
--- a/doc/source/cookbook.rst
+++ b/doc/source/cookbook.rst
@@ -679,6 +679,19 @@ The :ref:`Pivot <reshaping.pivot>` docs.
'Employed' : lambda x : sum(x),
'Grade' : lam... | - [x] closes #736
- [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
Updated cookbook attaching SO link of original issue.
BTW, `pivot_annual` has a similar functionality but it looks to be replaced by `pivot_table` and datetime property access. Because the functio... | https://api.github.com/repos/pandas-dev/pandas/pulls/13706 | 2016-07-19T12:34:43Z | 2016-07-20T21:11:50Z | null | 2016-07-20T22:05:22Z |
PERF: Improve Period hashing | diff --git a/asv_bench/benchmarks/period.py b/asv_bench/benchmarks/period.py
index 012030a71ac82..c1b89ae1db75b 100644
--- a/asv_bench/benchmarks/period.py
+++ b/asv_bench/benchmarks/period.py
@@ -1,4 +1,4 @@
-from pandas import PeriodIndex, date_range
+from pandas import Series, Period, PeriodIndex, date_range
cl... | - [x] closes #12817
- [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
```
# asv
- 33.75ms 3.22ms 0.10 period.period_algorithm.time_period_series_drop_duplicates
```
| https://api.github.com/repos/pandas-dev/pandas/pulls/13705 | 2016-07-19T12:23:27Z | 2016-07-20T21:23:30Z | null | 2016-07-20T21:34:54Z |
MAINT: Removed some warnings in tests | diff --git a/pandas/core/internals.py b/pandas/core/internals.py
index ff12cfddbe9cd..8e77486457546 100644
--- a/pandas/core/internals.py
+++ b/pandas/core/internals.py
@@ -1490,7 +1490,7 @@ def putmask(self, mask, new, align=True, inplace=False, axis=0,
if isinstance(new, np.ndarray) and len(new) == len(mask)... | Per discussion with @jreback <a href="https://github.com/pydata/pandas/pull/13671#issuecomment-233508468">here</a>.
| https://api.github.com/repos/pandas-dev/pandas/pulls/13702 | 2016-07-19T07:20:34Z | 2016-07-20T21:27:06Z | null | 2016-07-21T00:54:41Z |
CLN: Removed the return_type param in StringMethods.split | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index 57b0d8895f67b..05379a0fd3f55 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -544,6 +544,7 @@ Removal of prior version deprecations/changes
- ``pd.Categorical`` has dropped the ``levels`` attribut... | Continues where #10085 left off by removing the `return_type` parameter for good.
| https://api.github.com/repos/pandas-dev/pandas/pulls/13701 | 2016-07-19T05:43:05Z | 2016-07-22T08:50:40Z | 2016-07-22T08:50:40Z | 2016-07-22T13:37:23Z |
BUG: merge_asof not handling allow_exact_matches and tolerance on first entry | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index 0b9695125c0a9..dd528669b47ef 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -46,7 +46,7 @@ The following are now part of this API:
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
A long-... | closes #13695
| https://api.github.com/repos/pandas-dev/pandas/pulls/13698 | 2016-07-18T21:41:52Z | 2016-07-19T01:16:41Z | null | 2016-07-19T01:16:41Z |
Test case for patch, plus fix to not swallow exceptions | https://github.com/pandas-dev/pandas/pull/13693.diff | - [x] closes #13652
- [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/13693 | 2016-07-18T14:43:01Z | 2016-07-20T21:54:09Z | null | 2016-07-20T21:54:19Z |
PERF: improve DTI string parse | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index f65f7d57d5d08..69200d7142b9f 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -566,6 +566,7 @@ Performance Improvements
- Improved performance of float64 hash table operations, fixing some very slo... | - [x] closes #11169, closes #11287
- [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
cleaned up `DatetimeIndex` constructor removing slower string-parsing path.
## Performance Improvement
related to #7599, internally use `to_datetime` always as it tries some fastp... | https://api.github.com/repos/pandas-dev/pandas/pulls/13692 | 2016-07-18T12:57:41Z | 2016-07-19T13:06:23Z | null | 2016-07-19T13:07:55Z |
BUG: Add type check for width parameter in str.pad method GH13598 | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index 0b9695125c0a9..5c4c1126cb078 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -614,3 +614,4 @@ Bug Fixes
- Bug in ``groupby`` with ``as_index=False`` returns all NaN's when grouping on multiple col... | - [x] closes #13598
- [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/13690 | 2016-07-17T19:24:26Z | 2016-07-19T01:11:18Z | null | 2016-07-19T01:11:36Z |
Closes #13688: added scroll to top button to div.footer via doc/_temp… | diff --git a/doc/source/themes/nature_with_gtoc/layout.html b/doc/source/themes/nature_with_gtoc/layout.html
index fd0755e096023..ddf1e861f5f81 100644
--- a/doc/source/themes/nature_with_gtoc/layout.html
+++ b/doc/source/themes/nature_with_gtoc/layout.html
@@ -61,3 +61,37 @@ <h3 style="margin-top: 1.5em;">{{ _('Search'... | - [x] closes #13688
- [ ] tests added / passed
- [ ] passes `git diff upstream/master | flake8 --diff`
- [ ] whatsnew entry
Added scroll to top feature to documentation div.footer using Sphinx template
| https://api.github.com/repos/pandas-dev/pandas/pulls/13689 | 2016-07-17T19:06:17Z | 2016-07-23T16:25:20Z | 2016-07-23T16:25:20Z | 2016-07-25T21:47:08Z |
BUG: Cast a key to NaT before get loc from Index | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index 0b9695125c0a9..3e250c77f104d 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -614,3 +614,5 @@ Bug Fixes
- Bug in ``groupby`` with ``as_index=False`` returns all NaN's when grouping on multiple col... | - [x] closes #13603
- [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
pd.NaT, None, float('nan') and np.nan are
converted NaT in TestTimedeltas.
So we should convert keys if keys are these value.
Fix #13603
| https://api.github.com/repos/pandas-dev/pandas/pulls/13687 | 2016-07-17T16:16:56Z | 2016-07-19T01:14:14Z | null | 2016-07-19T01:16:33Z |
DOC: Fix a name of option | diff --git a/pandas/tslib.pyx b/pandas/tslib.pyx
index c681cebd84836..5624b84523705 100644
--- a/pandas/tslib.pyx
+++ b/pandas/tslib.pyx
@@ -3028,7 +3028,7 @@ cdef inline bint is_timedelta(object o):
def array_to_timedelta64(ndarray[object] values, unit='ns', errors='raise'):
""" convert an ndarray to an array ... | - [ ] closes #xxxx
- [ ] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [ ] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/13686 | 2016-07-17T14:02:42Z | 2016-07-17T18:32:25Z | 2016-07-17T18:32:25Z | 2016-07-17T18:32:35Z |
DOC: slight change in .cum* function descriptions | diff --git a/pandas/core/generic.py b/pandas/core/generic.py
index d6e6f571be53a..6c1676fbdd7f4 100644
--- a/pandas/core/generic.py
+++ b/pandas/core/generic.py
@@ -5504,7 +5504,7 @@ def _make_cum_function(cls, name, name1, name2, axis_descr, desc, accum_func,
mask_a, mask_b):
@Substitution... | closes #13682
I changed the template function to use the _desc_ instead of the _name_ in generic.py.
SIDENOTE: I accidentally committed to a branch with another PR, so I rebased without it and created a new branch with this commit.
| https://api.github.com/repos/pandas-dev/pandas/pulls/13683 | 2016-07-17T08:21:38Z | 2016-07-17T18:30:19Z | 2016-07-17T18:30:19Z | 2016-12-14T05:10:47Z |
COMPAT: use mpl area legend if available | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index f93e8f4240787..4d6133a09ddae 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -849,6 +849,7 @@ Bug Fixes
- Bug in ``pd.read_csv()``, which caused BOM files to be incorrectly parsed by not ignoring ... | - [x] closes #9161, closes #13544
- [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
Do not use area legend workaround if mpl >= 1.5.0 is available. Legends are now displayed properly if mpl >= 1.5.0.
#9161:
```
df = pd.DataFrame(np.random.rand(10, 3))
df... | https://api.github.com/repos/pandas-dev/pandas/pulls/13680 | 2016-07-16T22:54:06Z | 2016-08-10T12:25:06Z | 2016-08-10T12:25:06Z | 2017-03-04T11:11:00Z |
Merge pull request #1 from pydata/master | - [ ] closes #xxxx
- [ ] tests added / passed
- [ ] passes `git diff upstream/master | flake8 --diff`
- [ ] whatsnew entry
Merge from pydata master
| https://api.github.com/repos/pandas-dev/pandas/pulls/13679 | 2016-07-16T20:57:58Z | 2016-07-16T20:58:28Z | null | 2023-05-11T01:13:48Z | |
Add reference of DataFrame.rename_axis and Series.rename_axis to api.rst | diff --git a/doc/source/api.rst b/doc/source/api.rst
index 0dde341d820e3..e8fe26e8a525d 100644
--- a/doc/source/api.rst
+++ b/doc/source/api.rst
@@ -380,6 +380,7 @@ Reindexing / Selection / Label manipulation
Series.reindex
Series.reindex_like
Series.rename
+ Series.rename_axis
Series.reset_index
... | - [x] closes #13642
- [ ] tests added / passed
- [ ] passes `git diff upstream/master | flake8 --diff`
- [ ] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/13678 | 2016-07-16T19:58:39Z | 2016-07-17T12:40:27Z | 2016-07-17T12:40:27Z | 2016-07-17T12:42:24Z |
ENH: Series.append now has ignore_index kw | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index 0b9695125c0a9..a69617bfbec55 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -249,6 +249,7 @@ Other enhancements
- ``pd.read_html()`` has gained support for the ``decimal`` option (:issue:`12907`)... | - [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
not sure if there is any reason we haven't supported...
| https://api.github.com/repos/pandas-dev/pandas/pulls/13677 | 2016-07-16T19:14:46Z | 2016-07-19T01:05:36Z | null | 2016-07-19T02:46:11Z |
TST: assert message shows unnecessary diff | diff --git a/pandas/util/testing.py b/pandas/util/testing.py
index 4442eed898b60..402613d3f1728 100644
--- a/pandas/util/testing.py
+++ b/pandas/util/testing.py
@@ -1010,14 +1010,15 @@ def raise_assert_detail(obj, message, left, right, diff=None):
if isinstance(right, np.ndarray):
right = pprint_thing(rig... | - [x] passes `git diff upstream/master | flake8 --diff`
removed unnecessary trailing `None`.
```
pd.util.testing.assert_index_equal(pd.Index([1, 2, 3]), pd.Index([1 ,2, 4]))
# AssertionError: Index are different
#
# Index values are different (33.33333 %)
# [left]: Int64Index([1, 2, 3], dtype='int64')
# [right]: I... | https://api.github.com/repos/pandas-dev/pandas/pulls/13676 | 2016-07-16T19:09:46Z | 2016-07-18T22:08:26Z | 2016-07-18T22:08:26Z | 2016-07-18T22:26:18Z |
DOC: resample warnings | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index f65f7d57d5d08..126b8f023c967 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -637,7 +637,7 @@ Bug Fixes
- Bug in ``pd.to_datetime()`` when passing invalid datatypes (e.g. bool); will now respect t... | - [ ] closes #13618, closes #13520
- [ ] tests added / passed
- [ ] passes `git diff upstream/master | flake8 --diff`
- [ ] whatsnew entry
Prevents warnings triggered by IPython by matching against `'_repr'` or `'_ipython'`, and expands the `resample` warning message to indicate what caused the deferred object to be m... | https://api.github.com/repos/pandas-dev/pandas/pulls/13675 | 2016-07-16T17:57:53Z | 2016-07-19T13:15:22Z | null | 2016-07-19T13:15:26Z |
CLN: Replace float64_t with int64_t in _ensure_components | diff --git a/pandas/tslib.pyx b/pandas/tslib.pyx
index 650b4c7979d8d..8f3c4fb8c9a1e 100644
--- a/pandas/tslib.pyx
+++ b/pandas/tslib.pyx
@@ -2507,20 +2507,19 @@ cdef class _Timedelta(timedelta):
"""
compute the components
"""
- cdef int64_t sfrac, ifrac, ivalue = self.value
- cd... | - [x] passes `git diff upstream/master | flake8 --diff`
| https://api.github.com/repos/pandas-dev/pandas/pulls/13673 | 2016-07-16T16:18:31Z | 2016-07-20T22:16:28Z | 2016-07-20T22:16:28Z | 2016-07-20T22:16:32Z |
CLN: removed setter method of categorical's ordered attribute | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index 0b9695125c0a9..92285676d36e3 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -506,6 +506,7 @@ Removal of prior version deprecations/changes
- ``DataFrame.to_csv()`` has dropped the ``engine`` pa... | Deprecated back in `0.16.0` <a href="https://github.com/pydata/pandas/pull/9611">here</a>.
| https://api.github.com/repos/pandas-dev/pandas/pulls/13671 | 2016-07-16T07:41:48Z | 2016-07-19T01:44:45Z | null | 2016-07-19T02:13:44Z |
CLN: removed pandas.sandbox | diff --git a/doc/source/ecosystem.rst b/doc/source/ecosystem.rst
index 8fafe8ec9eaa2..0d010b47f393a 100644
--- a/doc/source/ecosystem.rst
+++ b/doc/source/ecosystem.rst
@@ -93,6 +93,12 @@ targets the IPython Notebook environment.
`Plotly’s <https://plot.ly/>`__ `Python API <https://plot.ly/python/>`__ enables intera... | Deprecated back in `0.16.0` <a href="https://github.com/pydata/pandas/pull/9615">here</a>, and the module seems to be rarely, if at all, used according to @jorisvandenbossche .
| https://api.github.com/repos/pandas-dev/pandas/pulls/13670 | 2016-07-16T06:56:51Z | 2016-07-19T01:20:18Z | null | 2016-07-19T01:21:33Z |
CLN: removed the 'diff' method for Index | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index 57b0d8895f67b..95d8011f0e10c 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -543,6 +543,7 @@ Removal of prior version deprecations/changes
- ``pd.Categorical`` has dropped setting of the ``ordere... | Deprecated all the way back in `0.15.0` <a href="https://github.com/pydata/pandas/pull/8227">here</a>.
| https://api.github.com/repos/pandas-dev/pandas/pulls/13669 | 2016-07-16T04:58:34Z | 2016-07-20T21:28:11Z | null | 2016-07-21T00:55:17Z |
MAINT: Make pandasSQL_builder private | diff --git a/pandas/io/sql.py b/pandas/io/sql.py
index 8485a3f13f047..6f18962dba284 100644
--- a/pandas/io/sql.py
+++ b/pandas/io/sql.py
@@ -167,9 +167,9 @@ def execute(sql, con, cur=None, params=None):
Results Iterable
"""
if cur is None:
- pandas_sql = pandasSQL_builder(con)
+ pandas_sql ... | Per discussion with @jorisvandenbossche <a href="https://github.com/pydata/pandas/pull/13611#discussion_r71048508">here</a>.
| https://api.github.com/repos/pandas-dev/pandas/pulls/13668 | 2016-07-16T03:01:13Z | 2016-07-24T19:24:00Z | null | 2023-05-11T01:13:48Z |
API: Index doesn't results in PeriodIndex if Period contains NaT | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index 0b9695125c0a9..6755b54b195ef 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -267,6 +267,8 @@ API changes
- ``.filter()`` enforces mutual exclusion of the keyword arguments. (:issue:`12399`)
- ``... | - [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
This improve `Period` handling a little.
- normal `Index` constructor can accept:
- `Period` and `NaT` mixed input (result is `PeriodIndex`) `Period` version of #13477)
- `Period` with multiple freq (result is `... | https://api.github.com/repos/pandas-dev/pandas/pulls/13664 | 2016-07-15T13:17:55Z | 2016-07-19T02:07:54Z | null | 2016-07-19T02:45:01Z |
COMPAT/TST Matplotlib 2.0 compatability | diff --git a/ci/install_travis.sh b/ci/install_travis.sh
index 3d9651d4f579b..98ce36acc096e 100755
--- a/ci/install_travis.sh
+++ b/ci/install_travis.sh
@@ -138,5 +138,9 @@ else
fi
+if [ "$JOB_NAME" == "34_slow" ]; then
+ conda install -c conda-forge/label/rc -c conda-forge matplotlib
+fi
+
echo "done"
exit 0... | - [x] closes #13333
- [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
Just a WIP for now, I want to cleanup how I handle the errorbar changes.
Will wait for a matplotlib RC before changing the Travis matrix I suppose?
| https://api.github.com/repos/pandas-dev/pandas/pulls/13662 | 2016-07-15T01:39:21Z | 2016-08-22T20:35:12Z | 2016-08-22T20:35:12Z | 2017-04-05T02:07:03Z |
BUG: construction of Series with integers on windows not default to int64 | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index c9f501c682a18..747fc70f858b4 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -534,7 +534,7 @@ Bug Fixes
- Bug when passing a not-default-indexed ``Series`` as ``xerr`` or ``yerr`` in ``.plot()`` (... | closes #13646
| https://api.github.com/repos/pandas-dev/pandas/pulls/13661 | 2016-07-15T00:54:01Z | 2016-07-15T10:21:32Z | null | 2016-07-15T10:21:32Z |
BUG: concat/append misc fixes | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index 777bc01e71833..ca5f3dfc2a8f2 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -1356,6 +1356,13 @@ Bug Fixes
- Bug in ``DatetimeIndex``, which did not honour the ``copy=True`` (:issue:`13205`)
- Bu... | closes #13626
closes #7795
| https://api.github.com/repos/pandas-dev/pandas/pulls/13660 | 2016-07-14T23:51:28Z | 2016-09-03T09:20:29Z | 2016-09-03T09:20:29Z | 2017-01-08T06:28:26Z |
better error message for non-unique columns | diff --git a/pandas/formats/style.py b/pandas/formats/style.py
index 472fd958d35eb..fa4ae82bac28d 100644
--- a/pandas/formats/style.py
+++ b/pandas/formats/style.py
@@ -137,8 +137,10 @@ def __init__(self, data, precision=None, table_styles=None, uuid=None,
raise TypeError("``data`` must be a Series or Data... | - [ ] closes #xxxx
- [ ] tests added / passed
- [ ] passes `git diff upstream/master | flake8 --diff`
- [ ] whatsnew entry
I ran into this error with my code and the error message didn't help me figure out I was dealing with duplicate columns that couldn't be handled. I think this is more helpful
| https://api.github.com/repos/pandas-dev/pandas/pulls/13656 | 2016-07-14T16:15:04Z | 2016-11-16T22:21:25Z | null | 2016-11-16T22:21:26Z |
DOC/BLD: pin IPython version to 4.2.0 (#13639) | diff --git a/ci/requirements-2.7_DOC_BUILD.run b/ci/requirements-2.7_DOC_BUILD.run
index a07721c75cf34..cde0719aa027e 100644
--- a/ci/requirements-2.7_DOC_BUILD.run
+++ b/ci/requirements-2.7_DOC_BUILD.run
@@ -1,4 +1,4 @@
-ipython=4
+ipython=4.2.0
ipykernel
sphinx
nbconvert
| xref #13639
| https://api.github.com/repos/pandas-dev/pandas/pulls/13647 | 2016-07-13T21:24:04Z | 2016-07-14T07:12:52Z | 2016-07-14T07:12:52Z | 2016-07-14T07:13:01Z |
CLN: Fix compile time warnings | diff --git a/pandas/src/datetime/np_datetime.c b/pandas/src/datetime/np_datetime.c
index c30b404d2b8b2..80703c8b08de6 100644
--- a/pandas/src/datetime/np_datetime.c
+++ b/pandas/src/datetime/np_datetime.c
@@ -576,7 +576,7 @@ void pandas_datetime_to_datetimestruct(npy_datetime val, PANDAS_DATETIMEUNIT fr,
}
PANDAS_D... | - [x] passes `git diff upstream/master | flake8 --diff`
This commit suppresses these warnings
warning: implicit conversion from enumeration type\
'NPY_DATETIMEUNIT' to different enumeration type\
'PANDAS_DATETIMEUNIT' [-Wenum-conversion]
| https://api.github.com/repos/pandas-dev/pandas/pulls/13643 | 2016-07-13T16:20:52Z | 2016-07-14T10:48:43Z | null | 2016-07-14T11:22:50Z |
BF(TST): allow AttributeError being raised (in addition to TypeError) from matplotlib | diff --git a/pandas/tests/test_graphics.py b/pandas/tests/test_graphics.py
index 3a5b0117948b7..5493eb37c358b 100644
--- a/pandas/tests/test_graphics.py
+++ b/pandas/tests/test_graphics.py
@@ -1330,7 +1330,8 @@ def test_plot(self):
self._check_axes_shape(axes, axes_num=4, layout=(4, 1))
df = DataFra... | Closes #13570
- [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [ ] whatsnew entry: imho not worth it?
origin: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=827938
| https://api.github.com/repos/pandas-dev/pandas/pulls/13641 | 2016-07-13T15:01:57Z | 2016-07-14T08:44:19Z | 2016-07-14T08:44:19Z | 2016-07-14T08:44:27Z |
BLD: included pandas.api.* in setup.py | diff --git a/setup.py b/setup.py
index 8f8865ecc3b7a..650357588570a 100755
--- a/setup.py
+++ b/setup.py
@@ -547,6 +547,9 @@ def pxd(name):
maintainer=AUTHOR,
version=versioneer.get_version(),
packages=['pandas',
+ 'pandas.api',
+ 'pandas.api.tests',
+ '... | Lots of good refactoring in #13147 , but can't use them if they aren't included!
| https://api.github.com/repos/pandas-dev/pandas/pulls/13640 | 2016-07-13T14:25:13Z | 2016-07-13T14:38:09Z | 2016-07-13T14:38:09Z | 2016-07-13T14:44:54Z |
BUG: Add check for array lengths in from_arrays method (GH13599) | diff --git a/asv_bench/asv.conf.json b/asv_bench/asv.conf.json
index 7b9fe353df2e3..f5fa849464881 100644
--- a/asv_bench/asv.conf.json
+++ b/asv_bench/asv.conf.json
@@ -77,11 +77,11 @@
// On conda install pytables, otherwise tables
{"environment_type": "conda", "tables": ""},
{"environment_ty... | - [x] closes #13599
- [x] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/13633 | 2016-07-12T23:39:05Z | 2016-07-20T21:56:46Z | null | 2023-05-11T01:13:47Z |
DOC: Add reference to frequency strings | diff --git a/doc/source/timeseries.rst b/doc/source/timeseries.rst
index 7e832af14c051..12480bbac7d64 100644
--- a/doc/source/timeseries.rst
+++ b/doc/source/timeseries.rst
@@ -567,11 +567,11 @@ DateOffset objects
------------------
In the preceding examples, we created DatetimeIndex objects at various
-frequencies... | - [x] closes #13160
| https://api.github.com/repos/pandas-dev/pandas/pulls/13632 | 2016-07-12T23:00:45Z | 2016-07-21T14:31:18Z | null | 2016-07-21T14:38:48Z |
ENH: Add support for writing variable labels to Stata files | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index 688f3b7ff6ada..a5478e3bed459 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -250,6 +250,8 @@ Other enhancements
- A function :func:`union_categorical` has been added for combining categoricals, s... | - [x] closes #13536
- [x] closes #13535
- [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
Add support for writing variable labels
Fix documentation for to_stata
Clean up function name to improve readability
closes #13536
closes #13535
| https://api.github.com/repos/pandas-dev/pandas/pulls/13631 | 2016-07-12T17:41:50Z | 2016-07-19T01:59:54Z | null | 2017-01-24T21:30:56Z |
CLN: fix some issues in asv benchmark suite | diff --git a/asv_bench/asv.conf.json b/asv_bench/asv.conf.json
index 7b9fe353df2e3..f5fa849464881 100644
--- a/asv_bench/asv.conf.json
+++ b/asv_bench/asv.conf.json
@@ -77,11 +77,11 @@
// On conda install pytables, otherwise tables
{"environment_type": "conda", "tables": ""},
{"environment_ty... | Was trying to run benchmarks, and bumped into some issue (+ the DataMatrix, I just removed that as this is now removed from pandas, so not much sense having benchmarks for that)
| https://api.github.com/repos/pandas-dev/pandas/pulls/13630 | 2016-07-12T15:26:07Z | 2016-07-14T14:26:07Z | 2016-07-14T14:26:07Z | 2016-07-14T14:26:07Z |
CLN: Removed outtype in DataFrame.to_dict | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index 4cc16aac15f8b..393a961d26909 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -443,6 +443,7 @@ Removal of prior version deprecations/changes
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ``Dat... | Follows up from #8486 in `0.15.0` by removing `outtype` in `DataFrame.to_dict()`
Fortunately or unfortunately, no tests were written then to test the deprecation, so there was nothing to remove from the test suite this time around.
| https://api.github.com/repos/pandas-dev/pandas/pulls/13627 | 2016-07-12T05:48:29Z | 2016-07-12T17:19:49Z | 2016-07-12T17:19:49Z | 2016-07-13T01:46:25Z |
BUG: Handle infinite values correctly in Series.argmax | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index 4cc16aac15f8b..022d8545ca658 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -549,3 +549,5 @@ Bug Fixes
- Bug in ``groupby`` with ``as_index=False`` returns all NaN's when grouping on multiple col... | - [ X] closes #13595
- [X ] tests added / passed
- [X ] passes `git diff upstream/master | flake8 --diff`
- [X ] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/13625 | 2016-07-11T23:46:55Z | 2016-12-30T21:45:27Z | null | 2016-12-30T23:37:49Z |
BUG: Invalid Timedelta op may raise ValueError | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index 4cc16aac15f8b..8661d87a617ba 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -543,7 +543,7 @@ Bug Fixes
- Bug in ``.to_html``, ``.to_latex`` and ``.to_string`` silently ignore custom datetime form... | - [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
`Timedelta` op may raise `ValueError` for invalid inputs because of internal conversion.
```
pd.Timedelta('1 days') + 'a'
# ValueError: unit abbreviation w/o a number
```
Now it raises `TypeError`.
| https://api.github.com/repos/pandas-dev/pandas/pulls/13624 | 2016-07-11T23:06:11Z | 2016-07-12T10:52:19Z | null | 2016-07-12T10:58:11Z |
ENH: DataFrame sort columns by rows: sort_values(axis=1) | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index 4cc16aac15f8b..7d3889505e098 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -229,6 +229,13 @@ Other enhancements
- ``pd.read_html()`` has gained support for the ``decimal`` option (:issue:`12907`... | - [X] closes #10806
- [X] tests added / passed
- [X] passes `git diff upstream/master | flake8 --diff`
- [X] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/13622 | 2016-07-11T19:34:03Z | 2016-07-21T15:05:26Z | null | 2016-07-21T16:18:20Z |
TST: Move plotting related tests to tests/plotting | diff --git a/pandas/tests/plotting/__init__.py b/pandas/tests/plotting/__init__.py
new file mode 100644
index 0000000000000..e69de29bb2d1d
diff --git a/pandas/tests/plotting/common.py b/pandas/tests/plotting/common.py
new file mode 100644
index 0000000000000..d80eb891c5bd6
--- /dev/null
+++ b/pandas/tests/plotting/comm... | - [x] related to #13579
- [x] tests passed
- [x] passes `git diff upstream/master | flake8 --diff`
Because `test_graphics` is getting huge, split them based on data types under `tests/plotting` to make visualization related tests easier.
| https://api.github.com/repos/pandas-dev/pandas/pulls/13621 | 2016-07-11T17:03:57Z | 2016-07-22T12:09:11Z | 2016-07-22T12:09:11Z | 2016-07-22T12:14:54Z |
TST: reorganize tools.tests | diff --git a/pandas/tools/tests/test_concat.py b/pandas/tools/tests/test_concat.py
index a8c86657a48cc..568cf63c02e30 100644
--- a/pandas/tools/tests/test_concat.py
+++ b/pandas/tools/tests/test_concat.py
@@ -17,7 +17,7 @@
assert_almost_equal)
-class TestConcatenate(tm.TestCase):
+... | - [x] tests passed
- [x] passes `git diff upstream/master | flake8 --diff`
`merge`, `join` and `concat` related tests are mixed each other. Cleaned up these tests.
| https://api.github.com/repos/pandas-dev/pandas/pulls/13619 | 2016-07-11T17:00:02Z | 2016-07-14T08:15:23Z | 2016-07-14T08:15:23Z | 2016-07-14T09:17:09Z |
DOC: asfreq clarify original NaNs are not filled (GH9963) | diff --git a/pandas/core/generic.py b/pandas/core/generic.py
index 7b271df4085cc..a42d2b5789aa7 100644
--- a/pandas/core/generic.py
+++ b/pandas/core/generic.py
@@ -3914,16 +3914,20 @@ def groupby(self, by=None, axis=0, level=None, as_index=True, sort=True,
def asfreq(self, freq, method=None, how=None, normalize... | Closes #9963
| https://api.github.com/repos/pandas-dev/pandas/pulls/13617 | 2016-07-11T13:42:11Z | 2016-07-12T07:07:41Z | 2016-07-12T07:07:41Z | 2016-07-12T07:07:41Z |
CLN: remove deprecated io.sql uquery and tquery functions | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index cdae0d5c27c7d..61ba29955bb16 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -615,6 +615,9 @@ Removal of prior version deprecations/changes
Now legacy time rules raises ``ValueError``. For the... | Were already deprecated since 0.14
| https://api.github.com/repos/pandas-dev/pandas/pulls/13616 | 2016-07-11T12:55:20Z | 2016-07-21T11:06:59Z | 2016-07-21T11:06:59Z | 2016-07-21T11:07:00Z |
ENH: Allow to_sql to recognize single sql type (GH11886) | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index bafb351b2f678..646e8822ed46f 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -310,6 +310,7 @@ Other enhancements
- ``pd.read_html()`` has gained support for the ``decimal`` option (:issue:`12907`)... | Rebase of PR https://github.com/pydata/pandas/pull/13252
Closes https://github.com/pydata/pandas/issues/11886
| https://api.github.com/repos/pandas-dev/pandas/pulls/13614 | 2016-07-11T10:18:00Z | 2016-07-23T19:28:48Z | 2016-07-23T19:28:48Z | 2016-07-23T19:28:48Z |
CLN: Removed levels attribute from Categorical | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index 688f3b7ff6ada..7858ab038a1b4 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -467,6 +467,7 @@ Removal of prior version deprecations/changes
- ``DataFrame.to_csv()`` has dropped the ``engine`` pa... | Deprecated back in `0.15.0` and therefore long overdue. Closes #8376.
| https://api.github.com/repos/pandas-dev/pandas/pulls/13612 | 2016-07-11T07:32:53Z | 2016-07-15T10:28:35Z | null | 2016-07-15T15:51:02Z |
CLN: Removed the flavor parameter in DataFrame.to_sql | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index efa6e5575fa79..57b0d8895f67b 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -524,6 +524,7 @@ Deprecations
- ``Categorical.reshape`` has been deprecated and will be removed in a subsequent release... | Deprecated in `0.14.0`, so way, way overdue.
| https://api.github.com/repos/pandas-dev/pandas/pulls/13611 | 2016-07-11T06:56:30Z | 2016-07-19T20:31:08Z | 2016-07-19T20:31:08Z | 2016-07-20T00:46:51Z |
TST: add tests for Timestamp.toordinal/fromordinal | diff --git a/pandas/tseries/tests/test_tslib.py b/pandas/tseries/tests/test_tslib.py
index ce88edcf4249b..31d6393c1c26e 100644
--- a/pandas/tseries/tests/test_tslib.py
+++ b/pandas/tseries/tests/test_tslib.py
@@ -255,6 +255,18 @@ def test_constructor_keyword(self):
hour=1, minute=2, second=3... | - [x] follow-up for #13593
- [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
added tests and fixed missed doc change.
| https://api.github.com/repos/pandas-dev/pandas/pulls/13610 | 2016-07-10T22:52:51Z | 2016-07-15T00:10:16Z | null | 2016-07-15T00:19:57Z |
API: Change Period('NAT') to return NaT | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index bef02a06135de..4092694ca6cd1 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -445,6 +445,45 @@ Furthermore:
- Passing duplicated ``percentiles`` will now raise a ``ValueError``.
- Bug in ``.descr... | - [x] closes #12759, #13582
- [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
- `pd.Period('NaT', freq='D')` now returns `pd.NaT` rather than its own nat repr.
- To be compat with `Period` arithmetic, `pd.NaT` now supports addition / subtraction with `int` (previou... | https://api.github.com/repos/pandas-dev/pandas/pulls/13609 | 2016-07-10T22:39:40Z | 2016-07-15T00:30:34Z | null | 2016-07-15T00:36:14Z |
GbqConnector should be able to fetch default credentials on Google Compute Engine | diff --git a/doc/source/io.rst b/doc/source/io.rst
index 7917e6b4cdfce..477e1a7d5026a 100644
--- a/doc/source/io.rst
+++ b/doc/source/io.rst
@@ -4475,6 +4475,15 @@ Additional information on service accounts can be found
You will need to install an additional dependency: `oauth2client <https://github.com/google/oauth... | - [x] closes #13577
- [x] passed 1 new test
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/13608 | 2016-07-10T20:35:40Z | 2016-08-18T10:49:30Z | null | 2016-08-18T10:49:51Z |
CLN: Fix compile time warnings | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index 657de7ec26efc..de2390b9c1259 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -531,3 +531,4 @@ Bug Fixes
- Bug in ``groupby`` with ``as_index=False`` returns all NaN's when grouping on multiple col... | - [x] passes `git diff upstream/master | flake8 --diff`
This commit suppresses these warnings
warning: comparison of constant -1 with expression\
of type 'PANDAS_DATETIMEUNIT' is always true\
[-Wtautological-constant-out-of-range-compare]
| https://api.github.com/repos/pandas-dev/pandas/pulls/13607 | 2016-07-10T15:35:45Z | 2016-07-13T02:17:23Z | null | 2016-07-13T02:20:35Z |
CLN: remove radd workaround in ops.py | diff --git a/pandas/core/ops.py b/pandas/core/ops.py
index f27a83f50e115..34ab3ae6863b5 100644
--- a/pandas/core/ops.py
+++ b/pandas/core/ops.py
@@ -34,7 +34,7 @@
# methods
-def _create_methods(arith_method, radd_func, comp_method, bool_method,
+def _create_methods(arith_method, comp_method, bool_method,
... | - [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
Remove workaround added in #353. The test added at that time has been passed.
- https://github.com/pydata/pandas/blob/master/pandas/tests/series/test_operators.py#L1264
| https://api.github.com/repos/pandas-dev/pandas/pulls/13606 | 2016-07-10T15:31:33Z | 2016-07-10T21:16:41Z | null | 2016-07-10T21:34:29Z |
CLN: Cleanup ops.py | diff --git a/pandas/core/ops.py b/pandas/core/ops.py
index 0af7b6d80ce0e..3aaca1eea486e 100644
--- a/pandas/core/ops.py
+++ b/pandas/core/ops.py
@@ -20,7 +20,6 @@
from pandas.compat import bind_method
import pandas.core.missing as missing
import pandas.algos as _algos
-import pandas.core.algorithms as algos
from pa... | - [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
Cleanup duplicated code paths before fixing some ops related issues.
| https://api.github.com/repos/pandas-dev/pandas/pulls/13605 | 2016-07-10T15:13:29Z | 2016-07-12T10:55:05Z | null | 2016-07-12T10:58:33Z |
CLN: Removed coerce param in pd.to_timedelta and pd.to_datetime | diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt
index 0354a8046e873..7fa9991138fba 100644
--- a/doc/source/whatsnew/v0.20.0.txt
+++ b/doc/source/whatsnew/v0.20.0.txt
@@ -62,6 +62,7 @@ Deprecations
Removal of prior version deprecations/changes
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^... | Deprecated back in `v0.17.0` <a href="https://github.com/pydata/pandas/commit/987b7e7e586b8df1d127406c69e0a9094a1a5322">here</a>. Seems appropriate to carry though now.
| https://api.github.com/repos/pandas-dev/pandas/pulls/13602 | 2016-07-09T21:51:53Z | 2016-10-15T19:58:27Z | null | 2016-10-15T20:08:03Z |
ERR: Fix TimeDelta to Timedelta | diff --git a/pandas/tseries/tests/test_timedeltas.py b/pandas/tseries/tests/test_timedeltas.py
index e515ba624d203..1586d0385732f 100644
--- a/pandas/tseries/tests/test_timedeltas.py
+++ b/pandas/tseries/tests/test_timedeltas.py
@@ -137,12 +137,12 @@ def test_construction(self):
self.assertRaises(ValueError, l... | - [ ] closes #xxxx
- [ ] tests added / passed
- [ ] passes `git diff upstream/master | flake8 --diff`
- [ ] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/13600 | 2016-07-09T15:29:16Z | 2016-07-09T17:01:59Z | 2016-07-09T17:01:59Z | 2016-07-09T23:47:27Z |
CLN: Initialization coincides with mapping, hence with uniqueness check | diff --git a/pandas/index.pyx b/pandas/index.pyx
index 71717dd2d771b..bc985100692fc 100644
--- a/pandas/index.pyx
+++ b/pandas/index.pyx
@@ -80,7 +80,7 @@ cdef class IndexEngine:
cdef:
bint unique, monotonic_inc, monotonic_dec
- bint initialized, monotonic_check, unique_check
+ bint initia... | - [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
Rebased version of https://github.com/pydata/pandas/pull/10229 which was [actually not](https://github.com/pydata/pandas/pull/10229#issuecomment-131470116) fixed by https://github.com/pydata/pandas/pull/10199.
Nothing particular releva... | https://api.github.com/repos/pandas-dev/pandas/pulls/13594 | 2016-07-09T15:07:20Z | 2016-07-15T00:21:47Z | null | 2016-07-17T07:45:35Z |
DEPR: rename Timestamp.offset to .freq | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index 40ae38f12fccb..afdc15d5dc3ad 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -439,6 +439,7 @@ Deprecations
- ``buffer_lines`` has been deprecated in ``pd.read_csv()`` and will be removed in a futu... | - [x] closes #12160
- [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/13593 | 2016-07-09T15:02:31Z | 2016-07-10T21:39:51Z | null | 2016-07-10T22:09:47Z |
BUG: Series/Index contains NaT with object dtype comparison incorrect | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index 40ae38f12fccb..31ba2e1042547 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -520,6 +520,8 @@ Bug Fixes
- Bug in extension dtype creation where the created types were not is/identical (:issue:`132... | - [x] closes #9005
- [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
`Series` and `Index` compares `NaT == NaT` as `True` if it has `object` dtype.
```
pd.Series([pd.NaT])
#0 NaT
# dtype: datetime64[ns]
# OK
pd.Series([pd.NaT]) == pd.NaT
#0 False
# dtype: ... | https://api.github.com/repos/pandas-dev/pandas/pulls/13592 | 2016-07-09T12:26:50Z | 2016-07-11T01:37:09Z | 2016-07-11T01:37:08Z | 2016-07-11T02:29:02Z |
DEPR: Remove legacy offsets | diff --git a/doc/source/timeseries.rst b/doc/source/timeseries.rst
index 7e832af14c051..f6a1e169afe9d 100644
--- a/doc/source/timeseries.rst
+++ b/doc/source/timeseries.rst
@@ -752,7 +752,7 @@ calculate significantly slower and will raise a ``PerformanceWarning``
rng + BQuarterEnd()
-.. _timeseries.alias:
+.. _... | - [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
Follow-up of #10951. Remove legacy offsets deprecated in 0.17.0.
| https://api.github.com/repos/pandas-dev/pandas/pulls/13590 | 2016-07-09T05:56:57Z | 2016-07-19T01:30:42Z | null | 2016-07-19T02:45:33Z |
DOC: Add Fedora and Centos install instructions | diff --git a/doc/source/install.rst b/doc/source/install.rst
index b43d2b8aac517..82d2dcd1cc709 100644
--- a/doc/source/install.rst
+++ b/doc/source/install.rst
@@ -165,8 +165,9 @@ To install pandas for Python 3 you may need to use the package ``python3-pandas`
Debian & Ubuntu, unstable (latest packages), `NeuroDe... | Since Fedora and Centos use a different tools than OpenSuse, and
have their own packages in official repositories, it is better
to point to them than the one from OpenSuse.
| https://api.github.com/repos/pandas-dev/pandas/pulls/13588 | 2016-07-08T19:24:13Z | 2016-07-24T18:13:43Z | 2016-07-24T18:13:43Z | 2016-07-24T18:13:43Z |
RLS: switch master from 0.18.2 to 0.19.0 | diff --git a/doc/source/categorical.rst b/doc/source/categorical.rst
index e971f1f28903f..f0e01ddc3fc2d 100644
--- a/doc/source/categorical.rst
+++ b/doc/source/categorical.rst
@@ -653,7 +653,7 @@ The same applies to ``df.append(df_different)``.
Unioning
~~~~~~~~
-.. versionadded:: 0.18.2
+.. versionadded:: 0.19.0
... | xref #13562
| https://api.github.com/repos/pandas-dev/pandas/pulls/13586 | 2016-07-08T10:35:11Z | 2016-07-08T15:08:02Z | 2016-07-08T15:08:02Z | 2016-07-08T15:08:26Z |
BUG: groupby apply on selected columns yielding scalar (GH13568) | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index 046690e28dba5..4cc16aac15f8b 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -491,6 +491,7 @@ Bug Fixes
- Bug in ``PeriodIndex`` construction returning a ``float64`` index in some circumstances (:... | - [x] closes #13568
- [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/13585 | 2016-07-08T09:35:57Z | 2016-07-11T15:02:25Z | 2016-07-11T15:02:24Z | 2016-07-11T15:02:25Z |
COMPAT: 32-bit compat fixes mainly in testing | diff --git a/pandas/core/internals.py b/pandas/core/internals.py
index c931adc9a31df..1ea567f15cb7f 100644
--- a/pandas/core/internals.py
+++ b/pandas/core/internals.py
@@ -3085,7 +3085,7 @@ def reduction(self, f, axis=0, consolidate=True, transposed=False,
# compute the orderings of our original data
... | closes #13566
| https://api.github.com/repos/pandas-dev/pandas/pulls/13584 | 2016-07-08T01:18:22Z | 2016-07-09T18:16:40Z | null | 2016-07-09T18:16:40Z |
BUG: Block/DTI doesnt handle tzlocal properly | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index 657de7ec26efc..c19cb33c53b7b 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -480,6 +480,8 @@ Bug Fixes
- Bug in ``.resample(..)`` with a ``PeriodIndex`` not retaining its type or name with an emp... | - [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
Unable to concatenate `Series` with `tzlocal`
```
s = pd.Series([pd.Timestamp('2011-01-01', tz=dateutil.tz.tzlocal())])
s
#0 2011-01-01 00:00:00+09:00
# dtype: datetime64[ns, tzlocal()]
pd.concat([s, s])
# Unkno... | https://api.github.com/repos/pandas-dev/pandas/pulls/13583 | 2016-07-07T23:02:00Z | 2016-07-10T22:05:03Z | null | 2016-07-10T22:10:04Z |
BUG: DatetimeIndex - Period shows ununderstandable error | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index 657de7ec26efc..6a1d450cf083f 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -473,7 +473,7 @@ Bug Fixes
- Bug in ``Series.str.extractall()`` with ``str`` index raises ``ValueError`` (:issue:`1315... | - [x] closes #13078
- [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/13581 | 2016-07-07T20:55:22Z | 2016-07-10T21:02:56Z | null | 2016-07-10T21:35:00Z |
CLN: move plotting funcs to pd.plotting | diff --git a/doc/source/visualization.rst b/doc/source/visualization.rst
index 2b2012dbf0b8a..39a38a82ab997 100644
--- a/doc/source/visualization.rst
+++ b/doc/source/visualization.rst
@@ -152,7 +152,7 @@ You can also create these other plots using the methods ``DataFrame.plot.<kind>`
In addition to these ``kind`` s, ... | Rebased in #16005
---
- [x] closes #12548
- [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
cleanup `tools/plotting` as `plotting` subpackage. Because the differences are being huge, would like to split 3 part if base direction is OK:
~~1. Move plotti... | https://api.github.com/repos/pandas-dev/pandas/pulls/13579 | 2016-07-07T14:51:30Z | 2017-04-14T23:54:36Z | null | 2023-05-11T01:13:46Z |
Default credentials for Google Compute Engine (#13577) | diff --git a/doc/source/whatsnew/v0.18.2.txt b/doc/source/whatsnew/v0.18.2.txt
index 64644bd9a7a26..ac5fceb672809 100644
--- a/doc/source/whatsnew/v0.18.2.txt
+++ b/doc/source/whatsnew/v0.18.2.txt
@@ -223,6 +223,7 @@ Other enhancements
- A ``union_categorical`` function has been added for combining categoricals, see :... | - [x] closes #13577
- [x] passed all existing tests for GbqConnector
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/13578 | 2016-07-07T09:20:00Z | 2016-07-10T20:18:41Z | null | 2023-05-11T01:13:46Z |
ENH: Adding additional keywords to read_html for #13461 | diff --git a/doc/source/io.rst b/doc/source/io.rst
index da0444a8b8df9..113afa32d182e 100644
--- a/doc/source/io.rst
+++ b/doc/source/io.rst
@@ -1959,6 +1959,35 @@ Specify an HTML attribute
dfs2 = read_html(url, attrs={'class': 'sortable'})
print(np.array_equal(dfs1[0], dfs2[0])) # Should be True
+Specify va... | - [x] closes #13461
- [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/13575 | 2016-07-07T06:47:15Z | 2016-07-21T14:16:50Z | 2016-07-21T14:16:49Z | 2016-07-21T14:21:08Z |
Fix bug in contains when looking up a string in a non-monotonic datet… | diff --git a/asv_bench/asv.conf.json b/asv_bench/asv.conf.json
index 7b9fe353df2e3..f5fa849464881 100644
--- a/asv_bench/asv.conf.json
+++ b/asv_bench/asv.conf.json
@@ -77,11 +77,11 @@
// On conda install pytables, otherwise tables
{"environment_type": "conda", "tables": ""},
{"environment_ty... | - [ ] closes #13572
- [x] tests added / passed
pandas.tests.indexes.test_datetimelike.TestDatetimeIndex:test_contains
- [ ] passes `git diff upstream/master | flake8 --diff`
- [ ] whatsnew entry
…ime index and the object in question is first in the index.
| https://api.github.com/repos/pandas-dev/pandas/pulls/13574 | 2016-07-06T21:21:25Z | 2016-07-16T23:04:06Z | null | 2016-07-16T23:04:21Z |
Remove test plot line blarg | diff --git a/doc/source/whatsnew/v0.18.2.txt b/doc/source/whatsnew/v0.18.2.txt
index be1f745537d05..a345629dde6d5 100644
--- a/doc/source/whatsnew/v0.18.2.txt
+++ b/doc/source/whatsnew/v0.18.2.txt
@@ -528,3 +528,5 @@ Bug Fixes
- Bug in ``Categorical.remove_unused_categories()`` changes ``.codes`` dtype to platform i... | Superceded by #13641
---
- [x] closes #13570
- [x] tests passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [X] whatsnew entry
The "blarg" argument is propagated to matplotlib and there it raises an
AttributeError (and not a TypeError).
However, since the test doesn't seem to have a rationale, it is re... | https://api.github.com/repos/pandas-dev/pandas/pulls/13573 | 2016-07-06T13:38:00Z | 2016-07-13T15:41:44Z | null | 2023-05-11T01:13:46Z |
BUG: read_csv throws UnicodeDecodeError with unicode aliases | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index cc3cc631b9575..89a74ab00048d 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -1075,3 +1075,5 @@ Bug Fixes
- Bug in ``Index`` raises ``KeyError`` displaying incorrect column when column is not in t... | Rebased as PR https://github.com/pydata/pandas/pull/14060
---
- [x] closes #13549
- [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
-read_csv with engine=c throws error when encoding=UTF_16 (anything other than utf-16)
-improved nosetests and moved to in pandas/i... | https://api.github.com/repos/pandas-dev/pandas/pulls/13571 | 2016-07-05T21:32:40Z | 2016-08-19T23:07:50Z | null | 2016-08-21T20:47:08Z |
BUG: Datetime64Formatter not respecting ``formatter`` | diff --git a/doc/source/whatsnew/v0.18.2.txt b/doc/source/whatsnew/v0.18.2.txt
index 64644bd9a7a26..90bca9e11826b 100644
--- a/doc/source/whatsnew/v0.18.2.txt
+++ b/doc/source/whatsnew/v0.18.2.txt
@@ -529,4 +529,5 @@ Bug Fixes
- Bug in ``Categorical.remove_unused_categories()`` changes ``.codes`` dtype to platform int... | - [x] closes #10690
- [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
the Datetime64Formatter class did not accept a `formatter` argument, so custom formatters passed in through `df.to_string` or `df.to_html` were silently ignored.
| https://api.github.com/repos/pandas-dev/pandas/pulls/13567 | 2016-07-05T14:32:16Z | 2016-07-08T15:16:46Z | null | 2016-07-09T00:43:43Z |
TST: Add tests for single group | diff --git a/pandas/tests/test_groupby.py b/pandas/tests/test_groupby.py
index bc25525f936ac..10362cbb24888 100644
--- a/pandas/tests/test_groupby.py
+++ b/pandas/tests/test_groupby.py
@@ -2085,8 +2085,8 @@ def test_groupby_head_tail(self):
assert_frame_equal(df.loc[[0, 2]], g_not_as.head(1))
assert_f... | - [x] closes #13530
- [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
| https://api.github.com/repos/pandas-dev/pandas/pulls/13561 | 2016-07-04T23:19:43Z | 2016-07-05T08:39:35Z | 2016-07-05T08:39:35Z | 2016-07-05T08:45:43Z |
Update gotchas.rst | diff --git a/doc/source/gotchas.rst b/doc/source/gotchas.rst
index c79b902d559d5..99d7486cde2d0 100644
--- a/doc/source/gotchas.rst
+++ b/doc/source/gotchas.rst
@@ -173,7 +173,7 @@ dtype in order to store the NAs. These are summarized by this table:
``integer``, cast to ``float64``
``boolean``, cast to ``object... | Removed redundant words
| https://api.github.com/repos/pandas-dev/pandas/pulls/13560 | 2016-07-04T16:31:16Z | 2016-07-05T10:40:45Z | null | 2016-07-05T10:40:45Z |
TST: confirm bug in partial string multi-index slicing is fixed (GH12685) | diff --git a/pandas/tests/indexes/test_multi.py b/pandas/tests/indexes/test_multi.py
index bec52f5f47b09..fb5576bed90b4 100644
--- a/pandas/tests/indexes/test_multi.py
+++ b/pandas/tests/indexes/test_multi.py
@@ -6,7 +6,7 @@
import re
import warnings
-from pandas import (date_range, MultiIndex, Index, CategoricalIn... | Closes #12685
| https://api.github.com/repos/pandas-dev/pandas/pulls/13559 | 2016-07-04T10:04:22Z | 2016-07-05T08:37:18Z | 2016-07-05T08:37:17Z | 2016-07-05T08:37:18Z |
BUG: pivot_table always returns a DataFrame | diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt
index 725dc7fc52ed0..1c3abcb31d26d 100644
--- a/doc/source/whatsnew/v0.20.0.txt
+++ b/doc/source/whatsnew/v0.20.0.txt
@@ -771,3 +771,4 @@ Bug Fixes
- Bug in ``pd.melt()`` where passing a tuple value for ``value_vars`` caused a ``TypeError``... | - [x] closes #4386
- [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
Before this commit, if
- `values` is not list like
- `columns` is `None`
- `aggfunc` is not instance of `list`
`pivot_table` returns a `Series`.
This commit adds checking for `column... | https://api.github.com/repos/pandas-dev/pandas/pulls/13554 | 2016-07-03T15:16:08Z | 2017-04-18T22:37:28Z | null | 2017-04-18T22:37:28Z |
TST: Move `test_crosstab_margins` to `TestPivotTable` | diff --git a/pandas/tools/tests/test_pivot.py b/pandas/tools/tests/test_pivot.py
index 7ec4018d301af..cda2343fbb842 100644
--- a/pandas/tools/tests/test_pivot.py
+++ b/pandas/tools/tests/test_pivot.py
@@ -801,6 +801,26 @@ def test_pivot_table_margins_name_with_aggfunc_list(self):
expected = pd.DataFrame(table.... | This test case assert `pivot_table` method.
So it should be defined on `TestPivotTable`.
| https://api.github.com/repos/pandas-dev/pandas/pulls/13553 | 2016-07-03T13:39:28Z | 2016-07-04T16:01:16Z | 2016-07-04T16:01:16Z | 2016-07-04T16:15:49Z |
Fix missing not in format._put_lines | diff --git a/pandas/formats/format.py b/pandas/formats/format.py
index f89ceaff2ad64..4349835210150 100644
--- a/pandas/formats/format.py
+++ b/pandas/formats/format.py
@@ -2619,7 +2619,7 @@ def set_eng_float_format(accuracy=3, use_eng_prefix=False):
def _put_lines(buf, lines):
- if any(isinstance(x, compat.tex... | https://api.github.com/repos/pandas-dev/pandas/pulls/13552 | 2016-07-03T07:22:19Z | 2016-08-17T08:10:03Z | null | 2016-08-17T08:10:04Z | |
BUG: Fix .to_excel() for MultiIndex containing a NaN value #13511 | diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt
index 317383e866464..1977548883e9e 100644
--- a/doc/source/whatsnew/v0.19.0.txt
+++ b/doc/source/whatsnew/v0.19.0.txt
@@ -767,3 +767,5 @@ Bug Fixes
- Bug where ``pd.read_gbq()`` could throw ``ImportError: No module named discovery`` as a re... | - [X] closes #13511
- [X] tests added / passed
- [X] passes `git diff upstream/master | flake8 --diff`
- [X] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/13551 | 2016-07-03T01:46:10Z | 2016-07-25T15:07:00Z | 2016-07-25T15:07:00Z | 2016-07-25T15:07:12Z |
Removed unnecessary params in cum_func | diff --git a/pandas/compat/numpy/function.py b/pandas/compat/numpy/function.py
index 274761f5d0b9c..15bf6d31b7109 100644
--- a/pandas/compat/numpy/function.py
+++ b/pandas/compat/numpy/function.py
@@ -21,7 +21,7 @@
from numpy import ndarray
from pandas.util.validators import (validate_args, validate_kwargs,
... | Picks up from #13167 by properly removing the parameters and ensuring that `numpy` compatibility has been maintained. The current test suite does a good job of checking that already, so no tests were added.
Closes #13541.
| https://api.github.com/repos/pandas-dev/pandas/pulls/13550 | 2016-07-02T22:24:08Z | 2016-07-03T23:23:09Z | null | 2016-07-03T23:24:33Z |
DOC: Update old Google Code and SourceForge links | diff --git a/LICENSES/ULTRAJSON_LICENSE b/LICENSES/ULTRAJSON_LICENSE
index defca46e7f820..3b2886eb9cfae 100644
--- a/LICENSES/ULTRAJSON_LICENSE
+++ b/LICENSES/ULTRAJSON_LICENSE
@@ -25,10 +25,10 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Portions of code from MODP_ASCII - Ascii transformations ... | https://api.github.com/repos/pandas-dev/pandas/pulls/13534 | 2016-06-30T03:38:02Z | 2016-07-05T08:38:26Z | 2016-07-05T08:38:26Z | 2016-07-05T08:38:32Z | |
Update documentation for rename | diff --git a/doc/source/basics.rst b/doc/source/basics.rst
index 917d2f2bb8b04..8145e9536a82a 100644
--- a/doc/source/basics.rst
+++ b/doc/source/basics.rst
@@ -1159,14 +1159,17 @@ mapping (a dict or Series) or an arbitrary function.
s.rename(str.upper)
If you pass a function, it must return a value when called ... | - [x] closes #13473
- [ ] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [ ] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/13533 | 2016-06-30T01:26:49Z | 2016-06-30T22:59:11Z | 2016-06-30T22:59:11Z | 2016-06-30T22:59:17Z |
DOC: update sphinx requirements for doc building | diff --git a/doc/source/contributing.rst b/doc/source/contributing.rst
index 6e0c747cd06fc..51fa2a9de953b 100644
--- a/doc/source/contributing.rst
+++ b/doc/source/contributing.rst
@@ -351,31 +351,33 @@ How to build the *pandas* documentation
Requirements
~~~~~~~~~~~~
-To build the *pandas* docs there are some extr... | Simplified the version requirement for sphinx (>= 1.3.2). In principle >= 1.2.2 but < 1.3.0 also works, but left it out for simplicity.
@cswarth Do you have other things that you find unclear about the requirements for the doc build environment?
| https://api.github.com/repos/pandas-dev/pandas/pulls/13532 | 2016-06-29T19:16:49Z | 2016-07-04T10:37:52Z | 2016-07-04T10:37:52Z | 2016-07-04T10:37:53Z |
DOC: update brief documentation on visualization projects | diff --git a/doc/source/ecosystem.rst b/doc/source/ecosystem.rst
index 0d7315d20eac3..51e00d2e01fd0 100644
--- a/doc/source/ecosystem.rst
+++ b/doc/source/ecosystem.rst
@@ -77,8 +77,16 @@ more advanced types of plots then those offered by pandas.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The `Vincent <http... | - [ X] passes `git diff upstream/master | flake8 --diff`
Minor Documentaion change to note that Vincent project has intentionally been abandoned and is not longer maintained. Add a pointer to IPython Vega successor.
| https://api.github.com/repos/pandas-dev/pandas/pulls/13528 | 2016-06-29T01:54:32Z | 2016-06-29T10:15:56Z | 2016-06-29T10:15:56Z | 2016-06-29T10:16:18Z |
Cython cache diff compare | diff --git a/ci/prep_cython_cache.sh b/ci/prep_cython_cache.sh
index 3295bd15d016c..6f16dce2fb431 100755
--- a/ci/prep_cython_cache.sh
+++ b/ci/prep_cython_cache.sh
@@ -1,43 +1,73 @@
#!/bin/bash
ls "$HOME/.cache/"
+
+PYX_CACHE_DIR="$HOME/.cache/pyxfiles"
+pyx_file_list=`find ${TRAVIS_BUILD_DIR} -name "*.pyx"`
+pyx_... | As talked about in #13425 with @gfyoung and @jreback this PR does cython caching by comparing the pyx files and not relying on the git history.
| https://api.github.com/repos/pandas-dev/pandas/pulls/13526 | 2016-06-28T19:21:03Z | 2016-07-03T23:24:49Z | null | 2016-08-15T09:47:51Z |
Fixes a missing ".reshape" call | diff --git a/pandas/core/common.py b/pandas/core/common.py
index 28bae362a3411..23175475d29e9 100644
--- a/pandas/core/common.py
+++ b/pandas/core/common.py
@@ -1194,7 +1194,7 @@ def _try_timedelta(v):
try:
return to_timedelta(v)._values.reshape(shape)
except:
- ... | closes https://github.com/pydata/pandas/issues/13287
Currently, some 2D arrays can go into [_possibly_infer_to_datetimelike](https://github.com/andyljones/pandas/blob/59b9e835d49036cabad19cf2c53140ac9f2eb465/pandas/core/common.py#L1133-L1222) and come out 1D. The issue is that the input is ravelled [at one point](http... | https://api.github.com/repos/pandas-dev/pandas/pulls/13525 | 2016-06-28T16:08:09Z | 2016-07-06T21:31:17Z | null | 2023-05-11T01:13:44Z |
ENH: Allow dict as the argument to Index.map (GH13517) | diff --git a/doc/source/whatsnew/v0.18.2.txt b/doc/source/whatsnew/v0.18.2.txt
index 40fec4d071f16..44b6059c8951b 100644
--- a/doc/source/whatsnew/v0.18.2.txt
+++ b/doc/source/whatsnew/v0.18.2.txt
@@ -207,6 +207,7 @@ Other enhancements
- The ``pd.read_csv()`` with ``engine='python'`` has gained support for the ``na_fi... | - [X] closes #13517
- [X] tests added / passed
- [X] passes `git diff upstream/master | flake8 --diff`
- [X] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/13518 | 2016-06-26T17:22:49Z | 2016-11-16T22:23:39Z | null | 2016-11-16T22:23:39Z |
BUG: Can't store callables using __setitem__ | diff --git a/doc/source/whatsnew/v0.18.2.txt b/doc/source/whatsnew/v0.18.2.txt
index 40fec4d071f16..eae03b2a86661 100644
--- a/doc/source/whatsnew/v0.18.2.txt
+++ b/doc/source/whatsnew/v0.18.2.txt
@@ -421,6 +421,7 @@ Other API changes
- ``TimedeltaIndex.astype(int)`` and ``DatetimeIndex.astype(int)`` will now return `... | - [X] closes #13299
- [X] tests added / passed
- [X] passes `git diff upstream/master | flake8 --diff`
- [X] whatsnew entry
| https://api.github.com/repos/pandas-dev/pandas/pulls/13516 | 2016-06-26T15:40:42Z | 2016-07-01T14:18:37Z | 2016-07-01T14:18:37Z | 2016-07-01T14:18:43Z |
Force rebuilding of python files in PR | diff --git a/ci/prep_cython_cache.sh b/ci/prep_cython_cache.sh
index 162f7a1034be6..3295bd15d016c 100755
--- a/ci/prep_cython_cache.sh
+++ b/ci/prep_cython_cache.sh
@@ -21,6 +21,8 @@ if [ -f "$CACHE_File" ] && [ "$USE_CACHE" ]; then
echo "PR: checking for any cython file changes from last 5 commits"
g... | Force the rebuilding of cython files in PR as can't rely on the git history
| https://api.github.com/repos/pandas-dev/pandas/pulls/13515 | 2016-06-26T12:14:51Z | 2016-06-27T13:04:03Z | null | 2016-06-27T13:22:29Z |
BUG/PERF: Sort mixed-int in Py3, fix Index.difference | diff --git a/asv_bench/benchmarks/index_object.py b/asv_bench/benchmarks/index_object.py
index 8c65f09937df4..a0a1b560d36f3 100644
--- a/asv_bench/benchmarks/index_object.py
+++ b/asv_bench/benchmarks/index_object.py
@@ -63,6 +63,27 @@ def time_index_datetime_union(self):
self.rng.union(self.rng2)
+class i... | - [x] fixes some issues from #13432
- [x] closes #12044
- [x] closes #12814
- [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
---
1. Added an internal `safe_sort` to safely sort mixed-integer
arrays in Python3.
2. Changed Index.difference and Index.symmetric_dif... | https://api.github.com/repos/pandas-dev/pandas/pulls/13514 | 2016-06-26T04:33:36Z | 2016-07-19T01:52:00Z | null | 2016-07-19T14:50:49Z |
ENH: add time-window capability to .rolling | diff --git a/ci/lint.sh b/ci/lint.sh
index 9f582f72fcdd7..144febcfcece5 100755
--- a/ci/lint.sh
+++ b/ci/lint.sh
@@ -17,7 +17,19 @@ if [ "$LINT" ]; then
fi
done
- echo "Linting DONE"
+ echo "Linting *.py DONE"
+
+ echo "Linting *.pyx"
+ for path in 'window.pyx'
+ do
+ echo "linting... | xref #13327
closes #936
This [notebook shows the usecase](http://nbviewer.jupyter.org/gist/jreback/186d09a99902a17a095d99ac6a5e4cd3)
- implement lint checking for cython (currently only for windows.pyx), xref #12995
This implements time-ware windows, IOW, to a `.rolling()` you can now pass a ragged / sparse timeseri... | https://api.github.com/repos/pandas-dev/pandas/pulls/13513 | 2016-06-26T02:15:05Z | 2016-07-20T17:23:59Z | null | 2020-09-18T11:02:50Z |
To numeric enhance | diff --git a/asv_bench/benchmarks/inference.py b/asv_bench/benchmarks/inference.py
index 3fceed087facb..ca25e55ac8b95 100644
--- a/asv_bench/benchmarks/inference.py
+++ b/asv_bench/benchmarks/inference.py
@@ -135,4 +135,25 @@ def setup(self):
self.df_timedelta64 = DataFrame(dict(A=(self.df_datetime64['A'] - se... | This is a test PR copy of #13425 to test travis - do not merge
| https://api.github.com/repos/pandas-dev/pandas/pulls/13512 | 2016-06-25T16:27:22Z | 2016-06-27T06:42:30Z | null | 2016-06-27T06:42:38Z |
BUG: date_range closed keyword with timezone aware start/end (GH12684) | diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt
index ba14ac51012c7..7f74d8a769e4b 100644
--- a/doc/source/whatsnew/v0.18.1.txt
+++ b/doc/source/whatsnew/v0.18.1.txt
@@ -658,7 +658,7 @@ Bug Fixes
- Bug in ``CategoricalIndex.get_loc`` returns different result from regular ``Index`` (:issu... | closes #12684
| https://api.github.com/repos/pandas-dev/pandas/pulls/13510 | 2016-06-24T22:08:11Z | 2016-06-29T12:16:22Z | 2016-06-29T12:16:22Z | 2016-06-29T12:16:23Z |
mmap error is not always returned in English | diff --git a/pandas/io/tests/test_common.py b/pandas/io/tests/test_common.py
index cf5ec7d911051..5740944558a5d 100644
--- a/pandas/io/tests/test_common.py
+++ b/pandas/io/tests/test_common.py
@@ -105,7 +105,7 @@ def test_constructor_bad_file(self):
msg = "The parameter is incorrect"
err = OSE... | Fixes a build error from https://github.com/pydata/pandas/pull/12946 caused by mmap error being returned in Italian when `LOCALE_OVERRIDE="it_IT.UTF-8"`. The test fails with:
`AssertionError: "Invalid argument" does not match "[Errno 22] Argomento non valido"`
``` python
msg = "Invalid argument"
tm.as... | https://api.github.com/repos/pandas-dev/pandas/pulls/13507 | 2016-06-23T23:17:34Z | 2016-06-23T23:59:45Z | null | 2016-06-27T06:43:37Z |
BUG: Fix bug with symmetric difference of two equal MultiIndexes GH12490 | diff --git a/doc/source/whatsnew/v0.18.2.txt b/doc/source/whatsnew/v0.18.2.txt
index 40fec4d071f16..b581e71ec5c50 100644
--- a/doc/source/whatsnew/v0.18.2.txt
+++ b/doc/source/whatsnew/v0.18.2.txt
@@ -482,7 +482,7 @@ Bug Fixes
- Bug in ``pd.read_hdf()`` where attempting to load an HDF file with a single dataset, that ... | - [x] closes #13490
- [x] tests added / passed
- [x] passes `git diff upstream/master | flake8 --diff`
- [x] whatsnew entry
Fixes a bug where the symmetric difference of two equal MultiIndexes would raise a TypeError. MultiIndex used to use the `Index.symmetric_difference`. With this PR it it's own implementation that... | https://api.github.com/repos/pandas-dev/pandas/pulls/13504 | 2016-06-23T18:08:16Z | 2016-11-16T22:23:17Z | null | 2016-11-16T22:23:17Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.