|
1 | 1 | --- |
2 | 2 | name: Bug report |
3 | 3 | about: Create a report to help us improve |
4 | | -title: '' |
5 | | -labels: '' |
| 4 | +title: '[Bug]: ' |
| 5 | +labels: bug |
6 | 6 | assignees: '' |
7 | 7 |
|
8 | 8 | --- |
9 | 9 |
|
10 | | -**Describe the bug** |
11 | | -A clear and concise description of what the bug is. |
| 10 | +# Bug Report |
| 11 | +<!-- A clear and concise description of the issue. --> |
12 | 12 |
|
13 | | -**To Reproduce** |
14 | | -Steps to reproduce the behavior: |
15 | | -1. Go to '...' |
16 | | -2. Click on '....' |
17 | | -3. Scroll down to '....' |
18 | | -4. See error |
| 13 | +--- |
| 14 | + |
| 15 | +## To Reproduce |
| 16 | +<!-- Provide the YAML configuration and the exact CLI command that reproduces the issue. --> |
| 17 | + |
| 18 | +### YAML configuration |
| 19 | +<!-- Paste the YAML file or the smallest excerpt that reproduces the issue. |
| 20 | +Remove unrelated fields to make it minimal. --> |
| 21 | +```yaml |
| 22 | +# Paste the YAML snippet here |
| 23 | +``` |
| 24 | + |
| 25 | +### CLI command used |
| 26 | +<!-- Write the exact command used, for example: --> |
| 27 | +```bash |
| 28 | +# Paste the CLI command here |
| 29 | +``` |
| 30 | + |
| 31 | +### Actual output |
| 32 | +<!-- Paste the output, logs, or error messages here --> |
| 33 | +```bash |
| 34 | +# Paste the output, logs, or error messages here |
| 35 | +``` |
| 36 | + |
| 37 | +### Expected output |
| 38 | +<!-- Describe what you expected to see instead --> |
| 39 | + |
| 40 | +--- |
19 | 41 |
|
20 | | -**Expected behavior** |
21 | | -A clear and concise description of what you expected to happen. |
| 42 | +## Environment and Versions |
22 | 43 |
|
23 | | -**Screenshots** |
24 | | -If applicable, add screenshots to help explain your problem. |
| 44 | +- Operating System: |
| 45 | +- Package Version: |
| 46 | +- Python Version: |
| 47 | +- Package list: |
| 48 | + - If using conda, run: `conda list > packages.txt` and paste the contents here. |
25 | 49 |
|
26 | | -**Desktop (please complete the following information):** |
27 | | - - OS: [e.g. iOS] |
28 | | - - Browser [e.g. chrome, safari] |
29 | | - - Version [e.g. 22] |
| 50 | + ``` bash |
| 51 | + # Paste packages.txt here |
| 52 | + ``` |
| 53 | + |
| 54 | + - If using venv/pip, run: `pip list > packages.txt` and paste the contents here. |
| 55 | + |
| 56 | + ``` bash |
| 57 | + # Paste packages.txt here |
| 58 | + ``` |
| 59 | + |
| 60 | +--- |
| 61 | + |
| 62 | +## Screenshots or Logs |
| 63 | + |
| 64 | +<!-- Attach any relevant screenshots, logs, or stack traces. --> |
| 65 | + |
| 66 | +--- |
30 | 67 |
|
31 | | -**Smartphone (please complete the following information):** |
32 | | - - Device: [e.g. iPhone6] |
33 | | - - OS: [e.g. iOS8.1] |
34 | | - - Browser [e.g. stock browser, safari] |
35 | | - - Version [e.g. 22] |
| 68 | +## Additional Context |
36 | 69 |
|
37 | | -**Additional context** |
38 | | -Add any other context about the problem here. |
| 70 | +<!-- Include anything else that might help reproduce or understand the bug, such as changes from a previously working version. --> |
0 commit comments