Skip to content

Commit 919c92c

Browse files
committed
Merge branch 'releases' into debian
* releases: (850 commits) RLS: v0.20.3 TST/PKG: Move test HDF5 file to legacy (pandas-dev#16856) DOC: Final release notes CI: Pin to sphinx 1.5 for doc build DOC: Whatsnew updates (pandas-dev#16853) BUG: kind parameter on categorical argsort (pandas-dev#16834) BUG: allow empty multiindex (fixes .isin regression, GH16777) (pandas-dev#16782) BUG: fix missing sort keyword for PeriodIndex.join (pandas-dev#16586) DOC: Pin numpy at 1.11 for doc build MAINT: Remove fspath from 0.20.x branch BUG: TimedeltaIndex raising ValueError when slice indexing (pandas-dev#16637) (pandas-dev#16638) BUG: render dataframe as html do not produce duplicate element id's (pandas-dev#16780) (pandas-dev#16801) use network decorator on additional tests (pandas-dev#16824) BUG: rolling.cov with multi-index columns should presever the MI (pandas-dev#16825) BUG: Fix Series doesn't work in pd.astype(). Now treat Series as dict. (pandas-dev#16725) BUG: Fix read of py3 PeriodIndex DataFrame HDF made in py2 (pandas-dev#16781) (pandas-dev#16790) CI: use dist/trusty rather than os/linux (pandas-dev#16806) BUG: fix to_latex bold_rows option (pandas-dev#16708) Bug in pd.merge() when merge/join with multiple categorical columns (pandas-dev#16786) BUG: Load data from a CategoricalIndex for dtype comparison, closes #… (pandas-dev#16738) ...
2 parents 2ffe75b + 87cfaa1 commit 919c92c

File tree

1,158 files changed

+126407
-119379
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,158 files changed

+126407
-119379
lines changed

.github/CONTRIBUTING.md

+14-505
Large diffs are not rendered by default.

.github/ISSUE_TEMPLATE.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
1-
#### A small, complete example of the issue
1+
#### Code Sample, a copy-pastable example if possible
22

33
```python
44
# Your code here
55

66
```
7+
#### Problem description
8+
9+
[this should explain **why** the current behaviour is a problem and why the expected output is a better solution.]
710

811
#### Expected Output
912

1013
#### Output of ``pd.show_versions()``
1114

1215
<details>
13-
# Paste the output here
16+
# Paste the output here pd.show_versions() here
1417

1518
</details>

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
- [ ] closes #xxxx
22
- [ ] tests added / passed
3-
- [ ] passes ``git diff upstream/master | flake8 --diff``
3+
- [ ] passes ``git diff upstream/master --name-only -- '*.py' | flake8 --diff`` (On Windows, ``git diff upstream/master -u -- "*.py" | flake8 --diff`` might work as an alternative.)
44
- [ ] whatsnew entry

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
.noseids
2020
.ipynb_checkpoints
2121
.tags
22+
.cache/
2223

2324
# Compiled source #
2425
###################
@@ -56,6 +57,8 @@ dist
5657
**/wheelhouse/*
5758
# coverage
5859
.coverage
60+
coverage.xml
61+
coverage_html_report
5962

6063
# OS generated files #
6164
######################
@@ -100,3 +103,5 @@ doc/source/index.rst
100103
doc/build/html/index.html
101104
# Windows specific leftover:
102105
doc/tmp.sv
106+
doc/source/styled.xlsx
107+
doc/source/templates/

0 commit comments

Comments
 (0)