Skip to content

Commit 2abbc57

Browse files
committed
merge with upstream/main
2 parents 9e57d6d + 96f2f2a commit 2abbc57

File tree

491 files changed

+12492
-7284
lines changed

Some content is hidden

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

491 files changed

+12492
-7284
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,3 @@
11
# Contributing to pandas
22

3-
Whether you are a novice or experienced software developer, all contributions and suggestions are welcome!
4-
5-
Our main contributing guide can be found [in this repo](https://github.com/pandas-dev/pandas/blob/master/doc/source/development/contributing.rst) or [on the website](https://pandas.pydata.org/docs/dev/development/contributing.html). If you do not want to read it in its entirety, we will summarize the main ways in which you can contribute and point to relevant sections of that document for further information.
6-
7-
## Getting Started
8-
9-
If you are looking to contribute to the *pandas* codebase, the best place to start is the [GitHub "issues" tab](https://github.com/pandas-dev/pandas/issues). This is also a great place for filing bug reports and making suggestions for ways in which we can improve the code and documentation.
10-
11-
If you have additional questions, feel free to ask them on the [mailing list](https://groups.google.com/forum/?fromgroups#!forum/pydata) or on [Gitter](https://gitter.im/pydata/pandas). Further information can also be found in the "[Where to start?](https://github.com/pandas-dev/pandas/blob/master/doc/source/development/contributing.rst#where-to-start)" section.
12-
13-
## Filing Issues
14-
15-
If you notice a bug in the code or documentation, or have suggestions for how we can improve either, feel free to create an issue on the [GitHub "issues" tab](https://github.com/pandas-dev/pandas/issues) using [GitHub's "issue" form](https://github.com/pandas-dev/pandas/issues/new). The form contains some questions that will help us best address your issue. For more information regarding how to file issues against *pandas*, please refer to the "[Bug reports and enhancement requests](https://github.com/pandas-dev/pandas/blob/master/doc/source/development/contributing.rst#bug-reports-and-enhancement-requests)" section.
16-
17-
## Contributing to the Codebase
18-
19-
The code is hosted on [GitHub](https://www.github.com/pandas-dev/pandas), so you will need to use [Git](https://git-scm.com/) to clone the project and make changes to the codebase. Once you have obtained a copy of the code, you should create a development environment that is separate from your existing Python environment so that you can make and test changes without compromising your own work environment. For more information, please refer to the "[Working with the code](https://github.com/pandas-dev/pandas/blob/master/doc/source/development/contributing.rst#working-with-the-code)" section.
20-
21-
Before submitting your changes for review, make sure to check that your changes do not break any tests. You can find more information about our test suites in the "[Test-driven development/code writing](https://github.com/pandas-dev/pandas/blob/master/doc/source/development/contributing.rst#test-driven-development-code-writing)" section. We also have guidelines regarding coding style that will be enforced during testing, which can be found in the "[Code standards](https://github.com/pandas-dev/pandas/blob/master/doc/source/development/contributing.rst#code-standards)" section.
22-
23-
Once your changes are ready to be submitted, make sure to push your changes to GitHub before creating a pull request. Details about how to do that can be found in the "[Contributing your changes to pandas](https://github.com/pandas-dev/pandas/blob/master/doc/source/development/contributing.rst#contributing-your-changes-to-pandas)" section. We will review your changes, and you will most likely be asked to make additional changes before it is finally ready to merge. However, once it's ready, we will merge it, and you will have successfully contributed to the codebase!
3+
A detailed overview on how to contribute can be found in the **[contributing guide](https://pandas.pydata.org/docs/dev/development/contributing.html)**.

.github/ISSUE_TEMPLATE/bug_report.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ body:
1717
[latest version](https://pandas.pydata.org/docs/whatsnew/index.html) of pandas.
1818
required: true
1919
- label: >
20-
I have confirmed this bug exists on the master branch of pandas.
20+
I have confirmed this bug exists on the main branch of pandas.
2121
- type: textarea
2222
id: example
2323
attributes:

.github/ISSUE_TEMPLATE/documentation_improvement.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ body:
1010
options:
1111
- label: >
1212
I have checked that the issue still exists on the latest versions of the docs
13-
on `master` [here](https://pandas.pydata.org/docs/dev/)
13+
on `main` [here](https://pandas.pydata.org/docs/dev/)
1414
required: true
1515
- type: textarea
1616
id: location

.github/ISSUE_TEMPLATE/performance_issue.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ body:
1717
[latest version](https://pandas.pydata.org/docs/whatsnew/index.html) of pandas.
1818
required: true
1919
- label: >
20-
I have confirmed this issue exists on the master branch of pandas.
20+
I have confirmed this issue exists on the main branch of pandas.
2121
- type: textarea
2222
id: example
2323
attributes:

.github/workflows/asv-bot.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,21 +59,21 @@ jobs:
5959
git remote add upstream https://github.com/pandas-dev/pandas.git
6060
git fetch upstream
6161
asv machine --yes
62-
asv continuous -f 1.1 -b $REGEX upstream/master HEAD
62+
asv continuous -f 1.1 -b $REGEX upstream/main HEAD
6363
echo 'BENCH_OUTPUT<<EOF' >> $GITHUB_ENV
64-
asv compare -f 1.1 upstream/master HEAD >> $GITHUB_ENV
64+
asv compare -f 1.1 upstream/main HEAD >> $GITHUB_ENV
6565
echo 'EOF' >> $GITHUB_ENV
6666
echo "REGEX=$REGEX" >> $GITHUB_ENV
6767
68-
- uses: actions/github-script@v4
68+
- uses: actions/github-script@v5
6969
env:
7070
BENCH_OUTPUT: ${{env.BENCH_OUTPUT}}
7171
REGEX: ${{env.REGEX}}
7272
with:
7373
script: |
7474
const ENV_VARS = process.env
7575
const run_url = `https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${context.runId}`
76-
github.issues.createComment({
76+
github.rest.issues.createComment({
7777
issue_number: context.issue.number,
7878
owner: context.repo.owner,
7979
repo: context.repo.repo,

.github/workflows/ci.yml

Lines changed: 0 additions & 235 deletions
This file was deleted.

0 commit comments

Comments
 (0)