Skip to content

Commit eb692f6

Browse files
authored
Fix the version command in issue template
1 parent d534c2f commit eb692f6

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,18 @@ body:
6161
- type: textarea
6262
attributes:
6363
label: "Outlines/Python version information:"
64-
description: Please run the following code and paste the output here.
65-
placeholder: |
66-
import outlines; print("Outlines", outlines.__version__)
67-
import sys; print("Python", sys.version)
68-
render: python
64+
description: |
65+
Please run the following code and paste the output here.
66+
python -c "from outlines import _version; print(_version.__version__)"
67+
python -c "import sys; print('Python', sys.version)"
68+
pip freeze
69+
value: |
70+
Version information
71+
<details>
72+
```
73+
(command output here)
74+
```
75+
</details>
6976
validations:
7077
required: true
7178

0 commit comments

Comments
 (0)