Skip to content

issue form files #20688

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jul 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 0 additions & 54 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

90 changes: 90 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
name: Bug Report
description: Report a bug or issue with Matplotlib
title: "[Bug]: "
body:
- type: markdown
attributes:
value: |
To help us understand and resolve your issue, please fill out the form to the best of your ability.
- type: textarea
id: summary
attributes:
label: Bug summary
description: Please provide 1-2 short sentences that succinctly describes the bug
placeholder:
value:
validations:
required: true
- type: textarea
id: reproduction
attributes:
label: Code for reproduction
description: If possible, please provide a minimum self-contained example.
placeholder: Paste your code here
render: python
validations:
required: true
- type: textarea
id: actual
attributes:
label: Actual outcome
description: Please provide the output produced by the above code, which may be a screenshot, console output, etc.
placeholder: if applicable, paste the console output and images here
validations:
required: true
- type: textarea
id: expected
attributes:
label: Expected outcome
description: Please provide a description (or visual example) of the expected outcome from the code snippet. If this used to work in an earlier version of Matplotlib, please note the version it used to work on
validations:
required: true
- type: input
id: operating-system
attributes:
label: Operating system
description: What operating system are you using?
placeholder: Windows, OS/X, Arch, Debian, Ubuntu, etc.
- type: input
id: matplotlib-version
attributes:
label: Matplotlib Version
placeholder: import matplotlib; print(matplotlib.__version__)
validations:
required: true
- type: input
id: matplotlib-backend
attributes:
label: Matplotlib Backend
placeholder: print(matplotlib.get_backend())
- type: input
id: python-version
attributes:
label: Python version
placeholder: python --version
- type: input
id: jupyter-version
attributes:
label: Jupyter version
placeholder: jupyter notebook --version, jupyter lab --version
- type: textarea
id: other-libraries
attributes:
label: Other libraries
description: please provide the versions of any other libraries that are relevant to this bug report.
- type: dropdown
id: install
attributes:
label: Installation
description: how did you install matplotlib?
options:
- pip
- conda
- Linux package manager (Debian/Fedora/etc.)
- source
- type: input
id: conda-channel
attributes:
label: Conda channel
description: If you installed from conda, please specify which channel you used if not the default?
placeholder: conda-forge
35 changes: 0 additions & 35 deletions .github/ISSUE_TEMPLATE/documentation.md

This file was deleted.

51 changes: 51 additions & 0 deletions .github/ISSUE_TEMPLATE/documentation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: Documentation
description: Create a report to help us improve the documentation
title: "[Doc]: "
labels: [Documentation]
body:
- type: markdown
attributes:
value: |
To help us understand and resolve your issue, please fill out the form to the best of your ability.
- type: input
id: link
attributes:
label: Documentation Link
description: Please provide a link to any documentation or examples that you are referencing.
placeholder: https://matplotlib.org/devdocs/
- type: textarea
id: problem
attributes:
label: Problem
description: What is missing, unclear, or wrong in the documentation?
placeholder: |
* I found [...] to be unclear because [...]
* [...] made me think that [...] when really it should be [...]
* There is no example showing how to do [...]
validations:
required: true
- type: textarea
id: improvement
attributes:
label: Suggested improvement
description: How can we improve the documentation?
placeholder: |
* This line should be be changed to say [...]
* Include a paragraph explaining [...]
* Add a figure showing [...]
- type: input
id: matplotlib-version
attributes:
label: Matplotlib Version
placeholder: import matplotlib; print(matplotlib.__version__)
validations:
required: true
- type: input
id: matplotlib-doc-version
attributes:
label: Matplotlib documentation version
placeholder: check under the logo
validations:
required: true


37 changes: 0 additions & 37 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

36 changes: 36 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Feature Request
description: Suggest something to add to Matplotlib!
title: "[ENH]: "
labels: [New feature]
body:
- type: markdown
attributes:
value: |
Thanks for thinking of a way to improve Matplotlib. Please search the issues for relevant feature requests before creating a new feature request.
- type: textarea
id: problem
attributes:
label: Problem
description: Please provide a clear and concise description of the problem this feature will solve.
placeholder: |
* I'm always frustrated when [...] because [...]
* I would like it if [...] happened when I [...] because [...]
* Here is a sample image of what I am asking for [...]
validations:
required: true
- type: textarea
id: solution
attributes:
label: Proposed solution
description: Please provide a clear and concise description of a way to accomplish what you want.
placeholder: Add an option so that when [...] [...] will happen
- type: textarea
id: prior-art
attributes:
label: Additional context and prior art
description: Add any other context or screenshots about the feature request here. You can also include links to examples of other programs that have something similar to your request.
placeholder: Another project [...] solved this by [...]




14 changes: 0 additions & 14 deletions .github/ISSUE_TEMPLATE/maintenance.md

This file was deleted.

17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/maintenance.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Maintenance
description: Help improve performance, usability and/or consistency.
title: "[MNT]: "
labels: [Maintenance]
body:
- type: textarea
id: summary
attributes:
label: Summary
description: Please provide 1-2 short sentences that succinctly describes what could be improved.
validations:
required: true
- type: textarea
id: fix
attributes:
label: Proposed fix
description: Please describe how you think this could be improved.