|
| 1 | +name: 🐛 File a bug report |
| 2 | +description: X's behavior is deviating from its documented behavior. |
| 3 | +labels: ["bug"] |
| 4 | +body: |
| 5 | + - type: markdown |
| 6 | + attributes: |
| 7 | + value: | |
| 8 | + Please provide the following information. |
| 9 | + - type: input |
| 10 | + id: Zarr-version |
| 11 | + attributes: |
| 12 | + label: Zarr version |
| 13 | + description: Value of ``zarr.__version__`` |
| 14 | + placeholder: v2.10.2, v2.11.3, v2.12.0, etc. |
| 15 | + validations: |
| 16 | + required: true |
| 17 | + - type: input |
| 18 | + id: Numcodecs-version |
| 19 | + attributes: |
| 20 | + label: Numcodecs version |
| 21 | + description: Value of ``numcodecs.__version__`` |
| 22 | + placeholder: v0.8.1, v0.9.0, v0.10.0, etc. |
| 23 | + validations: |
| 24 | + required: true |
| 25 | + - type: input |
| 26 | + id: Python-version |
| 27 | + attributes: |
| 28 | + label: Python Version |
| 29 | + description: Version of Python interpreter |
| 30 | + placeholder: 3.8.5, 3.9, 3.10, etc. |
| 31 | + validations: |
| 32 | + required: true |
| 33 | + - type: input |
| 34 | + id: OS |
| 35 | + attributes: |
| 36 | + label: Operating System |
| 37 | + description: Operating System |
| 38 | + placeholder: (Linux/Windows/Mac) |
| 39 | + validations: |
| 40 | + required: true |
| 41 | + - type: input |
| 42 | + id: installation |
| 43 | + attributes: |
| 44 | + label: Installation |
| 45 | + description: How was Zarr installed? |
| 46 | + placeholder: e.g., "using pip into virtual environment", or "using conda" |
| 47 | + validations: |
| 48 | + required: true |
| 49 | + - type: textarea |
| 50 | + id: description |
| 51 | + attributes: |
| 52 | + label: Description |
| 53 | + description: Explain why the current behavior is a problem, what the expected output/behaviour is, and why the expected output/behaviour is a better solution. |
| 54 | + validations: |
| 55 | + required: true |
| 56 | + - type: textarea |
| 57 | + id: reproduce |
| 58 | + attributes: |
| 59 | + label: Steps to reproduce |
| 60 | + description: Minimal, reproducible code sample, a copy-pastable example if possible. |
| 61 | + validations: |
| 62 | + required: true |
| 63 | + - type: textarea |
| 64 | + id: additional-output |
| 65 | + attributes: |
| 66 | + label: Additional output |
| 67 | + description: If you think it might be relevant, please provide the output from ``pip freeze`` or ``conda env export`` depending on which was used to install Zarr. |
0 commit comments