Skip to content

Commit

Permalink
Merge pull request optuna#2805 from himkt/feat/runtime-info
Browse files Browse the repository at this point in the history
Add python code to issue templates for making reporting runtime information easy
  • Loading branch information
hvy authored Jul 19, 2021
2 parents bc92dec + 9ea8fa0 commit fcb632a
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,15 @@ assignees: ''

## Environment

<!--
You can get this information by typing the following:
```
python -c 'import optuna; print(optuna.__version__)'
python -c 'import platform; print(platform.python_version())'
python -c 'import platform; print(platform.platform())'
```
-->

- Optuna version:
- Python version:
- OS:
Expand Down
9 changes: 9 additions & 0 deletions .github/ISSUE_TEMPLATE/questions-help-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,15 @@ assignees: ''

### Environment

<!--
You can get this information by typing the following:
```
python -c 'import optuna; print(optuna.__version__)'
python -c 'import platform; print(platform.python_version())'
python -c 'import platform; print(platform.platform())'
```
-->

- Optuna version:
- Python version:
- OS:
Expand Down

0 comments on commit fcb632a

Please sign in to comment.