From c06f29c24e108dadefaf3058276c0f88327e91bd Mon Sep 17 00:00:00 2001 From: Jeremy Schendel Date: Sat, 1 Feb 2020 13:22:00 -0700 Subject: [PATCH 01/17] ADMIN: Create separate issue templates for different usecases --- .../bug_report.md} | 23 ++++++++------ .../documentation_enhancement.md | 17 +++++++++++ .github/ISSUE_TEMPLATE/documentation_error.md | 30 +++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 28 +++++++++++++++++ .github/ISSUE_TEMPLATE/submit_question.md | 19 ++++++++++++ 5 files changed, 108 insertions(+), 9 deletions(-) rename .github/{ISSUE_TEMPLATE.md => ISSUE_TEMPLATE/bug_report.md} (58%) create mode 100644 .github/ISSUE_TEMPLATE/documentation_enhancement.md create mode 100644 .github/ISSUE_TEMPLATE/documentation_error.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/submit_question.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE/bug_report.md similarity index 58% rename from .github/ISSUE_TEMPLATE.md rename to .github/ISSUE_TEMPLATE/bug_report.md index e33835c462511..fafb251bbaa5c 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,29 +1,34 @@ -#### Code Sample, a copy-pastable example if possible +--- +name: Bug Report +about: Create a bug report to help us improve pandas +title: "BUG:" +labels: "" + +--- + +#### Code Sample, a copy-pastable example ```python # Your code here ``` + +**Note**: Please read [this guide](https://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports) detailing how to provide the necessary information for us to reproduce your bug. + #### Problem description -[this should explain **why** the current behaviour is a problem and why the expected output is a better solution.] +[this should explain **why** the current behaviour is a problem and why the expected output is a better solution] **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! **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. -For documentation-related issues, you can check the latest versions of the docs on `master` here: - -https://pandas-docs.github.io/pandas-docs-travis/ - -If the issue has not been resolved there, go ahead and file it in the issue tracker. - #### Expected Output #### Output of ``pd.show_versions()``
-[paste the output of ``pd.show_versions()`` here below this line] +[paste the output of ``pd.show_versions()`` here leaving a blank line after the details tag]
diff --git a/.github/ISSUE_TEMPLATE/documentation_enhancement.md b/.github/ISSUE_TEMPLATE/documentation_enhancement.md new file mode 100644 index 0000000000000..819544e628b97 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/documentation_enhancement.md @@ -0,0 +1,17 @@ +--- +name: Documentation Enhancement +about: Report needed documentation +title: "DOC:" +labels: "" + +--- + +#### Report needed documentation + +[this should provide a description of what documentation you believe is needed and why] + +**Note**: You can check the latest versions of the docs on `master` [here](https://dev.pandas.io/docs). + +#### Describe the documentation you'd like + +[this should provide a clear and concise description of what you want to happen] diff --git a/.github/ISSUE_TEMPLATE/documentation_error.md b/.github/ISSUE_TEMPLATE/documentation_error.md new file mode 100644 index 0000000000000..46cf7b370e5a0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/documentation_error.md @@ -0,0 +1,30 @@ +--- +name: Documentation Error +about: Report incorrect documentation +title: "DOC:" +labels: "" + +--- + +#### Location of incorrect documentation + +[this should provide links and line numbers to the incorrect documentation] + +**Note**: You can check the latest versions of the docs on `master` [here](https://dev.pandas.io/docs). + +#### Describe the problems or issues found in the documentation + +[this should explain **why** the current documentation is a problem] + +#### Suggested fix for documentation + +[this should explain the suggested fix and **why** it's better than the existing documentation] + +#### Steps taken to verify documentation is incorrect + +[this should detail steps you've taken to verify the documentation is incorrect, with code examples, if applicable] + +```python +# Your code here, if applicable + +``` diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000000000..c3a73bfdd6ffb --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,28 @@ +--- +name: Feature Request +about: Suggest an idea for pandas +title: "ENH:" +labels: "" + +--- + +#### Is your feature request related to a problem? + +[this should provide a description of what the problem is, e.g. "I wish I could use pandas to do [...]"] + +#### Describe the solution you'd like + +[this should provide a description of the feature request, e.g. "`DataFrame.foo` should get a new parameter `bar` that [...]"] + +#### Describe alternatives you've considered + +[this should provide a description of any alternative solutions or features you've considered] + +#### Additional context + +[add any other context, code examples, or references to existing implementations about the feature request here] + +```python +# Your code here, if applicable + +``` diff --git a/.github/ISSUE_TEMPLATE/submit_question.md b/.github/ISSUE_TEMPLATE/submit_question.md new file mode 100644 index 0000000000000..4bd4aae419c06 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/submit_question.md @@ -0,0 +1,19 @@ +--- +name: Submit Question +about: Ask a general question about pandas +title: "QST:" +labels: "" + +--- + +#### Question about pandas + +**Note**: It's highly recommended that you use [StackOverflow](https://www.stackoverflow.com) for any usage related questions, e.g. "How do I do [...] with pandas?" You are much more likely to receive a quick response to your question on StackOverflow than the GitHub issue tracker. You may also want to search the [pandas tag](https://stackoverflow.com/questions/tagged/pandas) on StackOverflow to see if a similar question has already been asked and answered. + +**Note**: If you'd still like to submit a question, please read [this guide]( +https://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports) detailing how to provide the necessary information for us to reproduce your question. + +```python +# Your code here, if applicable + +``` From 1a3b03deb69f28ba665d363969ade09394bd4b78 Mon Sep 17 00:00:00 2001 From: MomIsBestFriend <> Date: Tue, 31 Mar 2020 21:33:17 +0300 Subject: [PATCH 02/17] Merge two documentation templates --- .github/ISSUE_TEMPLATE/documentation_error.md | 30 ------------------- ...t.md => wrong_or_missing_documentation.md} | 15 ++++++---- 2 files changed, 9 insertions(+), 36 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/documentation_error.md rename .github/ISSUE_TEMPLATE/{documentation_enhancement.md => wrong_or_missing_documentation.md} (50%) diff --git a/.github/ISSUE_TEMPLATE/documentation_error.md b/.github/ISSUE_TEMPLATE/documentation_error.md deleted file mode 100644 index 46cf7b370e5a0..0000000000000 --- a/.github/ISSUE_TEMPLATE/documentation_error.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -name: Documentation Error -about: Report incorrect documentation -title: "DOC:" -labels: "" - ---- - -#### Location of incorrect documentation - -[this should provide links and line numbers to the incorrect documentation] - -**Note**: You can check the latest versions of the docs on `master` [here](https://dev.pandas.io/docs). - -#### Describe the problems or issues found in the documentation - -[this should explain **why** the current documentation is a problem] - -#### Suggested fix for documentation - -[this should explain the suggested fix and **why** it's better than the existing documentation] - -#### Steps taken to verify documentation is incorrect - -[this should detail steps you've taken to verify the documentation is incorrect, with code examples, if applicable] - -```python -# Your code here, if applicable - -``` diff --git a/.github/ISSUE_TEMPLATE/documentation_enhancement.md b/.github/ISSUE_TEMPLATE/wrong_or_missing_documentation.md similarity index 50% rename from .github/ISSUE_TEMPLATE/documentation_enhancement.md rename to .github/ISSUE_TEMPLATE/wrong_or_missing_documentation.md index 819544e628b97..3c8760c76f410 100644 --- a/.github/ISSUE_TEMPLATE/documentation_enhancement.md +++ b/.github/ISSUE_TEMPLATE/wrong_or_missing_documentation.md @@ -1,17 +1,20 @@ --- -name: Documentation Enhancement -about: Report needed documentation +name: Documentation Improvment +about: Report wrong or missing documentation title: "DOC:" labels: "" --- -#### Report needed documentation +#### Location of the documentation -[this should provide a description of what documentation you believe is needed and why] +[this should provide a description of what documentation you believe needs to be fixed/improved] **Note**: You can check the latest versions of the docs on `master` [here](https://dev.pandas.io/docs). -#### Describe the documentation you'd like - [this should provide a clear and concise description of what you want to happen] + +#### Suggested fix for documentation + +[this should explain the suggested fix and **why** it's better than the existing documentation] + From 3956ae1e9318f2933cc6b67b6329fb6b3b68c8db Mon Sep 17 00:00:00 2001 From: MomIsBestFriend <> Date: Wed, 1 Apr 2020 11:51:52 +0300 Subject: [PATCH 03/17] Moved guide for minimial example before the Code sample section XREF: https://github.com/pandas-dev/pandas/pull/33187#discussion_r401164088 --- .github/ISSUE_TEMPLATE/bug_report.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index fafb251bbaa5c..fa4f08256b7d7 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -6,6 +6,8 @@ labels: "" --- +**Note**: Please read [this guide](https://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports) detailing how to provide the necessary information for us to reproduce your bug. + #### Code Sample, a copy-pastable example ```python @@ -13,8 +15,6 @@ labels: "" ``` -**Note**: Please read [this guide](https://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports) detailing how to provide the necessary information for us to reproduce your bug. - #### Problem description [this should explain **why** the current behaviour is a problem and why the expected output is a better solution] From 68a8cbc338552932abaa5367520448f9d3ae02c6 Mon Sep 17 00:00:00 2001 From: MomIsBestFriend <> Date: Wed, 1 Apr 2020 11:55:24 +0300 Subject: [PATCH 04/17] Using checkboxes in the bug report XREF: https://github.com/pandas-dev/pandas/pull/33187#discussion_r401165273 --- .github/ISSUE_TEMPLATE/bug_report.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index fa4f08256b7d7..4966c6c16167e 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,4 +1,5 @@ --- + name: Bug Report about: Create a bug report to help us improve pandas title: "BUG:" @@ -6,6 +7,14 @@ labels: "" --- +- [ ] I have checked that issue has not already been reported. + +- [ ] I have confirmed this bug exists on the latest version of pandas. + +- [ ] I have confirmed this bug exists on the master branch of pandas. + +--- + **Note**: Please read [this guide](https://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports) detailing how to provide the necessary information for us to reproduce your bug. #### Code Sample, a copy-pastable example @@ -19,10 +28,6 @@ labels: "" [this should explain **why** the current behaviour is a problem and why the expected output is a better solution] -**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! - -**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. - #### Expected Output #### Output of ``pd.show_versions()`` From 61fdf4041d7dbdf87791c508551a57511e4c7f59 Mon Sep 17 00:00:00 2001 From: MomIsBestFriend <> Date: Wed, 1 Apr 2020 11:56:59 +0300 Subject: [PATCH 05/17] Newline nits --- .github/ISSUE_TEMPLATE/feature_request.md | 1 + .github/ISSUE_TEMPLATE/submit_question.md | 1 + .github/ISSUE_TEMPLATE/wrong_or_missing_documentation.md | 1 + 3 files changed, 3 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index c3a73bfdd6ffb..745f7d5071153 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,4 +1,5 @@ --- + name: Feature Request about: Suggest an idea for pandas title: "ENH:" diff --git a/.github/ISSUE_TEMPLATE/submit_question.md b/.github/ISSUE_TEMPLATE/submit_question.md index 4bd4aae419c06..b7b8b897b4933 100644 --- a/.github/ISSUE_TEMPLATE/submit_question.md +++ b/.github/ISSUE_TEMPLATE/submit_question.md @@ -1,4 +1,5 @@ --- + name: Submit Question about: Ask a general question about pandas title: "QST:" diff --git a/.github/ISSUE_TEMPLATE/wrong_or_missing_documentation.md b/.github/ISSUE_TEMPLATE/wrong_or_missing_documentation.md index 3c8760c76f410..5ffddfe7dff91 100644 --- a/.github/ISSUE_TEMPLATE/wrong_or_missing_documentation.md +++ b/.github/ISSUE_TEMPLATE/wrong_or_missing_documentation.md @@ -1,4 +1,5 @@ --- + name: Documentation Improvment about: Report wrong or missing documentation title: "DOC:" From fe665386791633c818ded5df696761db69d619e4 Mon Sep 17 00:00:00 2001 From: MomIsBestFriend <> Date: Wed, 1 Apr 2020 12:06:58 +0300 Subject: [PATCH 06/17] Encouraging users to supply URL of problematic documentation --- .github/ISSUE_TEMPLATE/wrong_or_missing_documentation.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/wrong_or_missing_documentation.md b/.github/ISSUE_TEMPLATE/wrong_or_missing_documentation.md index 5ffddfe7dff91..30ad258a791b9 100644 --- a/.github/ISSUE_TEMPLATE/wrong_or_missing_documentation.md +++ b/.github/ISSUE_TEMPLATE/wrong_or_missing_documentation.md @@ -9,11 +9,13 @@ labels: "" #### Location of the documentation -[this should provide a description of what documentation you believe needs to be fixed/improved] +[this should provide the location of the documentation, e.g. "pandas.read_csv" or the URL of the documentation, e.g. "https://dev.pandas.io/docs/reference/api/pandas.read_csv.html"] **Note**: You can check the latest versions of the docs on `master` [here](https://dev.pandas.io/docs). -[this should provide a clear and concise description of what you want to happen] +#### Documentation problem + +[this should provide a description of what documentation you believe needs to be fixed/improved] #### Suggested fix for documentation From b9ead18891d4f37263565e8a38817bc5293029a1 Mon Sep 17 00:00:00 2001 From: MomIsBestFriend <> Date: Wed, 1 Apr 2020 12:09:27 +0300 Subject: [PATCH 07/17] Renamed "wrong_or_missing_documentation" to "documentation_improvement" --- ...g_or_missing_documentation.md => documentation_improvement.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/ISSUE_TEMPLATE/{wrong_or_missing_documentation.md => documentation_improvement.md} (100%) diff --git a/.github/ISSUE_TEMPLATE/wrong_or_missing_documentation.md b/.github/ISSUE_TEMPLATE/documentation_improvement.md similarity index 100% rename from .github/ISSUE_TEMPLATE/wrong_or_missing_documentation.md rename to .github/ISSUE_TEMPLATE/documentation_improvement.md From 7f5ae954b79abbdfa0c916a43af1e9536c7b4bc1 Mon Sep 17 00:00:00 2001 From: MomIsBestFriend <> Date: Wed, 1 Apr 2020 12:17:06 +0300 Subject: [PATCH 08/17] Encouraging users to write a docstring for desired feature XREF: https://github.com/pandas-dev/pandas/pull/33187#discussion_r401226797 --- .github/ISSUE_TEMPLATE/feature_request.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 745f7d5071153..1735ca553aa61 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -13,7 +13,7 @@ labels: "" #### Describe the solution you'd like -[this should provide a description of the feature request, e.g. "`DataFrame.foo` should get a new parameter `bar` that [...]"] +[this should provide a description of the feature request, e.g. "`DataFrame.foo` should get a new parameter `bar` that [...]", try to write a docstring for the desired feature] #### Describe alternatives you've considered From 7fb0a819253d69009c6aea3a9b1dc749fe6fb620 Mon Sep 17 00:00:00 2001 From: MomIsBestFriend <> Date: Wed, 1 Apr 2020 12:20:18 +0300 Subject: [PATCH 09/17] Added "API breaking implications" header XREF: https://github.com/pandas-dev/pandas/pull/33187#discussion_r401227352 --- .github/ISSUE_TEMPLATE/feature_request.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 1735ca553aa61..df7ee6e9c5d66 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -15,6 +15,10 @@ labels: "" [this should provide a description of the feature request, e.g. "`DataFrame.foo` should get a new parameter `bar` that [...]", try to write a docstring for the desired feature] +#### API breaking implications + +[this should provide a description of how this feature will affect the API] + #### Describe alternatives you've considered [this should provide a description of any alternative solutions or features you've considered] From 3ac643e1a563916b69acc052553b21e53be95f52 Mon Sep 17 00:00:00 2001 From: MomIsBestFriend <50263213+MomIsBestFriend@users.noreply.github.com> Date: Wed, 1 Apr 2020 15:40:16 +0300 Subject: [PATCH 10/17] Update .github/ISSUE_TEMPLATE/bug_report.md Co-Authored-By: Tom Augspurger --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 4966c6c16167e..589b41abc68f7 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -11,7 +11,7 @@ labels: "" - [ ] I have confirmed this bug exists on the latest version of pandas. -- [ ] I have confirmed this bug exists on the master branch of pandas. +- [ ] (optinal) I have confirmed this bug exists on the master branch of pandas. --- From cd4565a89e1327bd5896a14c70844c85cce7cbe3 Mon Sep 17 00:00:00 2001 From: MomIsBestFriend <50263213+MomIsBestFriend@users.noreply.github.com> Date: Wed, 1 Apr 2020 15:40:27 +0300 Subject: [PATCH 11/17] Update .github/ISSUE_TEMPLATE/documentation_improvement.md Co-Authored-By: Joris Van den Bossche --- .github/ISSUE_TEMPLATE/documentation_improvement.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/documentation_improvement.md b/.github/ISSUE_TEMPLATE/documentation_improvement.md index 30ad258a791b9..c99a1fe565786 100644 --- a/.github/ISSUE_TEMPLATE/documentation_improvement.md +++ b/.github/ISSUE_TEMPLATE/documentation_improvement.md @@ -1,6 +1,6 @@ --- -name: Documentation Improvment +name: Documentation Improvement about: Report wrong or missing documentation title: "DOC:" labels: "" @@ -20,4 +20,3 @@ labels: "" #### Suggested fix for documentation [this should explain the suggested fix and **why** it's better than the existing documentation] - From ebbf55e0d0d690214dc514d9c8a17a530d0d56a9 Mon Sep 17 00:00:00 2001 From: MomIsBestFriend <> Date: Wed, 1 Apr 2020 19:16:15 +0300 Subject: [PATCH 12/17] Replaced notes with checkboxes XREF: https://github.com/pandas-dev/pandas/pull/33187#discussion_r401732329 --- .github/ISSUE_TEMPLATE/submit_question.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/submit_question.md b/.github/ISSUE_TEMPLATE/submit_question.md index b7b8b897b4933..71e3aae5973ac 100644 --- a/.github/ISSUE_TEMPLATE/submit_question.md +++ b/.github/ISSUE_TEMPLATE/submit_question.md @@ -7,9 +7,13 @@ labels: "" --- -#### Question about pandas +- [ ] I have searched the [pandas tag] on StackOverflow for similar questions. + +- [ ] I have asked my usage related question on [StackOverflow]. -**Note**: It's highly recommended that you use [StackOverflow](https://www.stackoverflow.com) for any usage related questions, e.g. "How do I do [...] with pandas?" You are much more likely to receive a quick response to your question on StackOverflow than the GitHub issue tracker. You may also want to search the [pandas tag](https://stackoverflow.com/questions/tagged/pandas) on StackOverflow to see if a similar question has already been asked and answered. +--- + +#### Question about pandas **Note**: If you'd still like to submit a question, please read [this guide]( https://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports) detailing how to provide the necessary information for us to reproduce your question. From 842f8da0c9a4a913ae55758216e44fb298c0a564 Mon Sep 17 00:00:00 2001 From: MomIsBestFriend <> Date: Wed, 1 Apr 2020 19:18:58 +0300 Subject: [PATCH 13/17] Fixed typos/grammer mistakes XREF: https://github.com/pandas-dev/pandas/pull/33187#discussion_r401733136 https://github.com/pandas-dev/pandas/pull/33187#discussion_r401733508 --- .github/ISSUE_TEMPLATE/bug_report.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 589b41abc68f7..4daa726dab1b9 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -7,11 +7,11 @@ labels: "" --- -- [ ] I have checked that issue has not already been reported. +- [ ] I have checked that this issue has not already been reported. - [ ] I have confirmed this bug exists on the latest version of pandas. -- [ ] (optinal) I have confirmed this bug exists on the master branch of pandas. +- [ ] (optional) I have confirmed this bug exists on the master branch of pandas. --- From 8c891f3c24d461cbcd18e90a09d92a0f31febfec Mon Sep 17 00:00:00 2001 From: MomIsBestFriend <> Date: Wed, 1 Apr 2020 19:52:26 +0300 Subject: [PATCH 14/17] Add labels to each issue template --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- .github/ISSUE_TEMPLATE/documentation_improvement.md | 2 +- .github/ISSUE_TEMPLATE/feature_request.md | 2 +- .github/ISSUE_TEMPLATE/submit_question.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 4daa726dab1b9..825b6d13848d1 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -3,7 +3,7 @@ name: Bug Report about: Create a bug report to help us improve pandas title: "BUG:" -labels: "" +labels: "Bug" --- diff --git a/.github/ISSUE_TEMPLATE/documentation_improvement.md b/.github/ISSUE_TEMPLATE/documentation_improvement.md index c99a1fe565786..4a3bad36e21a0 100644 --- a/.github/ISSUE_TEMPLATE/documentation_improvement.md +++ b/.github/ISSUE_TEMPLATE/documentation_improvement.md @@ -3,7 +3,7 @@ name: Documentation Improvement about: Report wrong or missing documentation title: "DOC:" -labels: "" +labels: "Docs" --- diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index df7ee6e9c5d66..eddf769721c49 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -3,7 +3,7 @@ name: Feature Request about: Suggest an idea for pandas title: "ENH:" -labels: "" +labels: "Enhancement" --- diff --git a/.github/ISSUE_TEMPLATE/submit_question.md b/.github/ISSUE_TEMPLATE/submit_question.md index 71e3aae5973ac..0f5853f71a33a 100644 --- a/.github/ISSUE_TEMPLATE/submit_question.md +++ b/.github/ISSUE_TEMPLATE/submit_question.md @@ -3,7 +3,7 @@ name: Submit Question about: Ask a general question about pandas title: "QST:" -labels: "" +labels: "Usage Question" --- From 9bf7738287614852fcd61c2f22c4a9c04fe9cb14 Mon Sep 17 00:00:00 2001 From: MomIsBestFriend <> Date: Thu, 2 Apr 2020 00:04:56 +0300 Subject: [PATCH 15/17] Added "Needs Triage" label to all templates --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- .github/ISSUE_TEMPLATE/documentation_improvement.md | 2 +- .github/ISSUE_TEMPLATE/feature_request.md | 2 +- .github/ISSUE_TEMPLATE/submit_question.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 825b6d13848d1..765c1b8bff62e 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -3,7 +3,7 @@ name: Bug Report about: Create a bug report to help us improve pandas title: "BUG:" -labels: "Bug" +labels: "Bug, Needs Triage" --- diff --git a/.github/ISSUE_TEMPLATE/documentation_improvement.md b/.github/ISSUE_TEMPLATE/documentation_improvement.md index 4a3bad36e21a0..c6356ac1057c8 100644 --- a/.github/ISSUE_TEMPLATE/documentation_improvement.md +++ b/.github/ISSUE_TEMPLATE/documentation_improvement.md @@ -3,7 +3,7 @@ name: Documentation Improvement about: Report wrong or missing documentation title: "DOC:" -labels: "Docs" +labels: "Docs, Needs Triage" --- diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index eddf769721c49..0c30b941bc520 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -3,7 +3,7 @@ name: Feature Request about: Suggest an idea for pandas title: "ENH:" -labels: "Enhancement" +labels: "Enhancement, Needs Triage" --- diff --git a/.github/ISSUE_TEMPLATE/submit_question.md b/.github/ISSUE_TEMPLATE/submit_question.md index 0f5853f71a33a..035d6edc9126c 100644 --- a/.github/ISSUE_TEMPLATE/submit_question.md +++ b/.github/ISSUE_TEMPLATE/submit_question.md @@ -3,7 +3,7 @@ name: Submit Question about: Ask a general question about pandas title: "QST:" -labels: "Usage Question" +labels: "Usage Question, Needs Triage" --- From 5f9040cc712e0db77348652d3411086fc4b2b824 Mon Sep 17 00:00:00 2001 From: MomIsBestFriend <50263213+MomIsBestFriend@users.noreply.github.com> Date: Thu, 2 Apr 2020 03:08:37 +0300 Subject: [PATCH 16/17] Update .github/ISSUE_TEMPLATE/submit_question.md Co-Authored-By: Jeremy Schendel --- .github/ISSUE_TEMPLATE/submit_question.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/submit_question.md b/.github/ISSUE_TEMPLATE/submit_question.md index 035d6edc9126c..8c92a67d33fa5 100644 --- a/.github/ISSUE_TEMPLATE/submit_question.md +++ b/.github/ISSUE_TEMPLATE/submit_question.md @@ -7,7 +7,7 @@ labels: "Usage Question, Needs Triage" --- -- [ ] I have searched the [pandas tag] on StackOverflow for similar questions. +- [ ] I have searched the [[pandas] tag](https://stackoverflow.com/questions/tagged/pandas) on StackOverflow for similar questions. - [ ] I have asked my usage related question on [StackOverflow]. From 3fb35c42336f764ed63b4596da085dfff29101d1 Mon Sep 17 00:00:00 2001 From: MomIsBestFriend <50263213+MomIsBestFriend@users.noreply.github.com> Date: Thu, 2 Apr 2020 03:08:47 +0300 Subject: [PATCH 17/17] Update .github/ISSUE_TEMPLATE/submit_question.md Co-Authored-By: Jeremy Schendel --- .github/ISSUE_TEMPLATE/submit_question.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/submit_question.md b/.github/ISSUE_TEMPLATE/submit_question.md index 8c92a67d33fa5..9b48918ff2f6d 100644 --- a/.github/ISSUE_TEMPLATE/submit_question.md +++ b/.github/ISSUE_TEMPLATE/submit_question.md @@ -9,7 +9,7 @@ labels: "Usage Question, Needs Triage" - [ ] I have searched the [[pandas] tag](https://stackoverflow.com/questions/tagged/pandas) on StackOverflow for similar questions. -- [ ] I have asked my usage related question on [StackOverflow]. +- [ ] I have asked my usage related question on [StackOverflow](https://stackoverflow.com). ---