Skip to content

Commit 567cc5b

Browse files
authored
Fix bug in bug-fix template (#10782)
The template code was missing a closing quote! And hopefully my new note will encourage people to actually test their reproducer rather than just leaving in the header when they haven't used it.
1 parent 4722bf1 commit 567cc5b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/ISSUE_TEMPLATE/bugreport.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,12 @@ body:
3737
# /// script
3838
# requires-python = ">=3.11"
3939
# dependencies = [
40-
# "xarray[complete]@git+https://github.com/pydata/xarray.git@main,
40+
# "xarray[complete]@git+https://github.com/pydata/xarray.git@main",
4141
# ]
4242
# ///
4343
#
44-
# This script automatically imports the development branch of xarray to check for issues
44+
# This script automatically imports the development branch of xarray to check for issues.
45+
# Please delete this header if you have _not_ tested this script with `uv run`!
4546
4647
import xarray as xr
4748
xr.show_versions()

0 commit comments

Comments
 (0)