Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PKG: Add bug report template #97

Merged
merged 1 commit into from
Feb 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .github/ISSUE_TEMPLATE/Bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Bug Report
description: Create a report to help us improve sparse-dot-topn
title: "BUG: <Please write a comprehensive title after the 'BUG: ' prefix>"

body:
- type: markdown
attributes:
value: Thank you for taking the time to file a bug report.
- type: textarea
attributes:
label: Describe your issue.
validations:
required: true
- type: textarea
attributes:
label: Reproducing Code Example
description: 'Paste the Reproducing code example and it will be rendered as a code block.'
render: python
validations:
required: true
- type: textarea
attributes:
label: Error message
description: 'If any, paste the *full* error message as above (starting from line Traceback) and it will be rendered as a code block'
render: shell
validations:
required: true
- type: textarea
attributes:
label: SciPy/NumPy/Python version and system information
description: 'Please run the following and paste the result here - `import sys, scipy, numpy, sparse_dot_topn; print(scipy.__version__, numpy.__version__, sparse_dot_topn.__version__, sys.version_info); scipy.show_config()`'
render: shell
validations:
required: true
Loading