Skip to content

Commit e6508da

Browse files
committed
Merge tag 'v0.20.0' into releases
Version 0.20.0 * tag 'v0.20.0': (742 commits) RLS: v0.20.0 DOC: Whatsnew cleanup (pandas-dev#16245) TST: Test CategoricalIndex in test_is_categorical (pandas-dev#16243) TST: xfail some bottleneck on windows (pandas-dev#16240) DOC, TST: Document and Test Functions in dtypes/common.py (pandas-dev#16237) TST: Remove __init__ statements in testing (pandas-dev#16238) DOC: don't include all methods/attributes of IntervalIndex (pandas-dev#16221) PKG: Fix ModuleNotFoundError: No module named 'pandas.formats' (pandas-dev#16239) RLS: v0.20.0rc2 CLN: make submodules of pandas.util private (pandas-dev#16223) MAINT: Remove tm.TestCase from testing (pandas-dev#16225) MAINT: Complete Conversion to Pytest Idiom (pandas-dev#16201) DOC: add whatsnew for 0.21.0 DEPR: correct deprecation message for datetools (pandas-dev#16202) API Change repr name for table schema (pandas-dev#16204) DOC: Remove various warnings from doc build (pandas-dev#16206) DOC: add whatsnew for v0.20.1 BUG: Fixed renaming of falsey names in build_table_schema (pandas-dev#16205) COMPAT: ensure proper extension dtype's don't pickle the cache (pandas-dev#16207) REF: register custom DisplayFormatter for table schema (pandas-dev#16198) ...
2 parents 5f6a820 + a31c96d commit e6508da

File tree

1,145 files changed

+123048
-118762
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,145 files changed

+123048
-118762
lines changed

.github/CONTRIBUTING.md

Lines changed: 14 additions & 505 deletions
Large diffs are not rendered by default.

.github/ISSUE_TEMPLATE.md

Lines changed: 5 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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``
44
- [ ] whatsnew entry

.gitignore

Lines changed: 5 additions & 0 deletions
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)