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

ci: Template for bug reporting, upgrade python version for codspeed #736

Merged
merged 2 commits into from
Aug 6, 2024
Merged
Show file tree
Hide file tree
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
82 changes: 58 additions & 24 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,60 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: type:bug
assignees: ''
description: Report to help us reproduce the bug
title: "Bug: "

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior.

**Expected behavior**
A clear and concise description of what you expected to happen.

**System**
- OS and version: [e.g. Windows 10]
- `sparse` version (`sparse.__version__`)
- NumPy version (`np.__version__`)
- Numba version (`numba.__version__`)

**Additional context**
Add any other context about the problem here.
body:
- type: markdown
attributes:
value: >
## Thanks for taking the time to fill out this report
- type: markdown
attributes:
value: >
### Before submitting a bug, please make sure it has not been reported in the
[list of issues](https://github.com/pydata/sparse/issues).
- type: textarea
attributes:
label: Describe the bug
description: >
A clear and concise description of what the bug is.
validations:
required: true
- type: textarea
attributes:
label: Steps or code to reproduce the bug
description: |
Please add a minimal code example to reproduce the bug.
validations:
required: true
- type: textarea
attributes:
label: Expected results
description: >
Please paste or describe the expected results.
placeholder: >
Example: No error is thrown.
validations:
required: true
- type: textarea
attributes:
label: Actual results
description: |
Please paste or describe the results you observe instead of the expected results.
validations:
required: true
- type: textarea
attributes:
label: Please describe your system.
render: shell
placeholder: |
1. OS and version: [e.g. Windows 10]
2. `sparse` version (`sparse.__version__`)
3. NumPy version (`np.__version__`)
4. Numba version (`numba.__version__`)
validations:
required: true
- type: textarea
attributes:
label: Relevant log output
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
render: shell
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: "3.12"

- name: Install dependencies
run: pip install ".[all]"
Expand Down
Loading