Skip to content

Commit

Permalink
Fix the version command in issue template
Browse files Browse the repository at this point in the history
  • Loading branch information
lapp0 committed Jan 25, 2024
1 parent d534c2f commit eb692f6
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,18 @@ body:
- type: textarea
attributes:
label: "Outlines/Python version information:"
description: Please run the following code and paste the output here.
placeholder: |
import outlines; print("Outlines", outlines.__version__)
import sys; print("Python", sys.version)
render: python
description: |
Please run the following code and paste the output here.
python -c "from outlines import _version; print(_version.__version__)"
python -c "import sys; print('Python', sys.version)"
pip freeze
value: |
Version information
<details>
```
(command output here)
```
</details>
validations:
required: true

Expand Down

0 comments on commit eb692f6

Please sign in to comment.