diff options
author | Matti Picus <matti.picus@gmail.com> | 2022-12-29 23:52:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-29 23:52:39 +0200 |
commit | 18185f1fa77cf7f1ad920547a51590320a8cedc2 (patch) | |
tree | 079f149011434d9350318a69a94dd35d6ef1c323 | |
parent | bf20c55a2e464b183db54c280c3b327762c390af (diff) | |
parent | 3c30231d15c3243ad0166636126fa3757171b3a8 (diff) | |
download | numpy-18185f1fa77cf7f1ad920547a51590320a8cedc2.tar.gz |
Merge pull request #22901 from j3soon/hotfix/issue-template
MAINT: Fix runtime information commands for issue template [skip ci]
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug-report.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 9985cb79f..a15a3a144 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -47,7 +47,7 @@ body: attributes: label: "Runtime information:" description: > - Output from `import sys, numpy; print(numpy.__version__) print(sys.version))` + Output from `import sys, numpy; print(numpy.__version__); print(sys.version)` If you are running NumPy 1.24+, also show `print(numpy.show_runtime())` validations: required: true |