Skip to content

Commit e1d3b66

Browse files
authored
Merge pull request #2 from pandas-dev/master
Rebase to master
2 parents c26e5bb + 64c8a8d commit e1d3b66

File tree

1,158 files changed

+110462
-100775
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

+110462
-100775
lines changed

.github/CONTRIBUTING.md

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

.github/ISSUE_TEMPLATE.md

+12-1
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,22 @@
88

99
[this should explain **why** the current behaviour is a problem and why the expected output is a better solution.]
1010

11+
**Note**: We receive a lot of issues on our GitHub tracker, so it is very possible that your issue has been posted before. Please check first before submitting so that we do not have to handle and close duplicates!
12+
13+
**Note**: Many problems can be resolved by simply upgrading `pandas` to the latest version. Before submitting, please check if that solution works for you. If possible, you may want to check if `master` addresses this issue, but that is not necessary.
14+
15+
For documentation-related issues, you can check the latest versions of the docs on `master` here:
16+
17+
https://pandas-docs.github.io/pandas-docs-travis/
18+
19+
If the issue has not been resolved there, go ahead and file it in the issue tracker.
20+
1121
#### Expected Output
1222

1323
#### Output of ``pd.show_versions()``
1424

1525
<details>
16-
# Paste the output here pd.show_versions() here
26+
27+
[paste the output of ``pd.show_versions()`` here below this line]
1728

1829
</details>

.github/PULL_REQUEST_TEMPLATE.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
- [ ] closes #xxxx
2-
- [ ] tests added / passed
3-
- [ ] passes ``git diff upstream/master | flake8 --diff``
4-
- [ ] whatsnew entry
1+
- [ ] closes #xxxx
2+
- [ ] tests added / passed
3+
- [ ] passes `git diff upstream/master -u -- "*.py" | flake8 --diff`
4+
- [ ] whatsnew entry

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
*$
88
*.bak
99
*flymake*
10+
*.iml
1011
*.kdev4
1112
*.log
1213
*.swp
@@ -19,6 +20,7 @@
1920
.noseids
2021
.ipynb_checkpoints
2122
.tags
23+
.cache/
2224

2325
# Compiled source #
2426
###################
@@ -56,6 +58,8 @@ dist
5658
**/wheelhouse/*
5759
# coverage
5860
.coverage
61+
coverage.xml
62+
coverage_html_report
5963

6064
# OS generated files #
6165
######################
@@ -100,3 +104,5 @@ doc/source/index.rst
100104
doc/build/html/index.html
101105
# Windows specific leftover:
102106
doc/tmp.sv
107+
doc/source/styled.xlsx
108+
doc/source/templates/

.pep8speaks.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# File : .pep8speaks.yml
2+
3+
scanner:
4+
diff_only: True # If True, errors caused by only the patch are shown
5+
6+
pycodestyle:
7+
max-line-length: 79
8+
ignore: # Errors and warnings to ignore
9+
- E731
10+
- E402

0 commit comments

Comments
 (0)