You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* cleanup bug report template
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
---------
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/bugreport.yml
+23-14Lines changed: 23 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -26,23 +26,14 @@ body:
26
26
attributes:
27
27
label: Minimal Complete Verifiable Example
28
28
description: |
29
-
Minimal, self-contained copy-pastable example that demonstrates the issue. This will be automatically formatted into code, so no need for markdown backticks.
30
-
render: Python
31
-
32
-
- type: checkboxes
33
-
id: mvce-checkboxes
34
-
attributes:
35
-
label: MVCE confirmation
36
-
description: |
37
-
Please confirm that the bug report is in an excellent state, so we can understand & fix it quickly & efficiently. For more details, check out:
Minimal, self-contained copy-pastable example that demonstrates the issue.
41
30
42
31
Consider listing additional or specific dependencies in [inline script metadata](https://packaging.python.org/en/latest/specifications/inline-script-metadata/#example)
43
32
so that calling `uv run issue.py` shows the issue when copied into `issue.py`. (not strictly required)
33
+
34
+
This will be automatically formatted into code, so no need for markdown backticks.
35
+
render: Python
44
36
value: |
45
-
```python
46
37
# /// script
47
38
# requires-python = ">=3.11"
48
39
# dependencies = [
@@ -55,7 +46,25 @@ body:
55
46
import xarray as xr
56
47
xr.show_versions()
57
48
# your reproducer code ...
58
-
```
49
+
50
+
- type: textarea
51
+
id: reproduce
52
+
attributes:
53
+
label: Steps to reproduce
54
+
description:
55
+
validations:
56
+
required: false
57
+
58
+
- type: checkboxes
59
+
id: mvce-checkboxes
60
+
attributes:
61
+
label: MVCE confirmation
62
+
description: |
63
+
Please confirm that the bug report is in an excellent state, so we can understand & fix it quickly & efficiently. For more details, check out:
0 commit comments