|
| 1 | +name: Bug Report |
| 2 | +description: Report a bug or issue with Matplotlib |
| 3 | +title: "[Bug]: " |
| 4 | +body: |
| 5 | + - type: markdown |
| 6 | + attributes: |
| 7 | + value: | |
| 8 | + To help us understand and resolve your issue, please fill out the form to the best of your ability. |
| 9 | + - type: textarea |
| 10 | + id: summary |
| 11 | + attributes: |
| 12 | + label: Bug summary |
| 13 | + description: Please provide 1-2 short sentences that succinctly describes the bug |
| 14 | + placeholder: |
| 15 | + value: |
| 16 | + validations: |
| 17 | + required: true |
| 18 | + - type: textarea |
| 19 | + id: reproduction |
| 20 | + attributes: |
| 21 | + label: Code for reproduction |
| 22 | + description: If possible, please provide a minimum self-contained example. |
| 23 | + placeholder: Paste your code here |
| 24 | + render: python |
| 25 | + validations: |
| 26 | + required: true |
| 27 | + - type: textarea |
| 28 | + id: actual |
| 29 | + attributes: |
| 30 | + label: Actual outcome |
| 31 | + description: Please provide the output produced by the above code, which may be a screenshot, console output, etc. |
| 32 | + placeholder: if applicable, paste the console output and images here |
| 33 | + validations: |
| 34 | + required: true |
| 35 | + - type: textarea |
| 36 | + id: expected |
| 37 | + attributes: |
| 38 | + label: Expected outcome |
| 39 | + 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 |
| 40 | + validations: |
| 41 | + required: true |
| 42 | + - type: input |
| 43 | + id: operating-system |
| 44 | + attributes: |
| 45 | + label: Operating system |
| 46 | + description: What operating system are you using? |
| 47 | + placeholder: Windows, OS/X, Arch, Debian, Ubuntu, etc. |
| 48 | + - type: input |
| 49 | + id: matplotlib-version |
| 50 | + attributes: |
| 51 | + label: Matplotlib Version |
| 52 | + placeholder: import matplotlib; print(matplotlib.__version__) |
| 53 | + validations: |
| 54 | + required: true |
| 55 | + - type: input |
| 56 | + id: matplotlib-backend |
| 57 | + attributes: |
| 58 | + label: Matplotlib Backend |
| 59 | + placeholder: print(matplotlib.get_backend()) |
| 60 | + - type: input |
| 61 | + id: python-version |
| 62 | + attributes: |
| 63 | + label: Python version |
| 64 | + placeholder: python --version |
| 65 | + - type: input |
| 66 | + id: jupyter-version |
| 67 | + attributes: |
| 68 | + label: Jupyter version |
| 69 | + placeholder: jupyter notebook --version, jupyter lab --version |
| 70 | + - type: textarea |
| 71 | + id: other-libraries |
| 72 | + attributes: |
| 73 | + label: Other libraries |
| 74 | + description: please provide the versions of any other libraries that are relevant to this bug report. |
| 75 | + - type: dropdown |
| 76 | + id: install |
| 77 | + attributes: |
| 78 | + label: Installation |
| 79 | + description: how did you install matplotlib? |
| 80 | + options: |
| 81 | + - pip |
| 82 | + - conda |
| 83 | + - Linux package manager (Debian/Fedora/etc.) |
| 84 | + - source |
| 85 | + - type: input |
| 86 | + id: conda-channel |
| 87 | + attributes: |
| 88 | + label: Conda channel |
| 89 | + description: If you installed from conda, please specify which channel you used if not the default? |
| 90 | + placeholder: conda-forge |
0 commit comments