|
| 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: Please provide the minimum code required to reproduce the bug. Please make sure to minimize the number of dependencies required, and provide any necessary plotted data. Avoid using threads, as Matplotlib is (explicitly) not thread-safe. |
| 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 | + validations: |
| 61 | + required: true |
| 62 | + - type: input |
| 63 | + id: python-version |
| 64 | + attributes: |
| 65 | + label: Python version |
| 66 | + placeholder: python --version |
| 67 | + - type: input |
| 68 | + id: jupyter-version |
| 69 | + attributes: |
| 70 | + label: Jupyter version |
| 71 | + placeholder: jupyter notebook --version, jupyter lab --version |
| 72 | + - type: textarea |
| 73 | + id: other-libraries |
| 74 | + attributes: |
| 75 | + label: Other libraries |
| 76 | + description: please provide the versions of any other libraries that are relevant to this bug report. |
| 77 | + - type: dropdown |
| 78 | + id: install |
| 79 | + attributes: |
| 80 | + label: Installation |
| 81 | + description: how did you install matplotlib? |
| 82 | + options: |
| 83 | + - pip |
| 84 | + - conda |
| 85 | + - source |
| 86 | + - type: input |
| 87 | + id: conda-channel |
| 88 | + attributes: |
| 89 | + label: Conda channel |
| 90 | + description: If you installed from conda, please specify which channel you used if not the default? |
| 91 | + placeholder: conda-forge |
0 commit comments