|
| 1 | +## Description |
| 2 | + |
| 3 | +<!-- Please include a summary of the changes and the related issue. --> |
| 4 | + |
| 5 | +Fixes #(issue) |
| 6 | + |
| 7 | +## Type of Change |
| 8 | + |
| 9 | +<!-- Please check the one that applies to this PR --> |
| 10 | + |
| 11 | +- [ ] Bug fix (non-breaking change which fixes an issue) |
| 12 | +- [ ] New feature (non-breaking change which adds functionality) |
| 13 | +- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) |
| 14 | +- [ ] Documentation update |
| 15 | +- [ ] Code refactoring |
| 16 | +- [ ] Performance improvement |
| 17 | +- [ ] Test addition or modification |
| 18 | + |
| 19 | +## Changes Made |
| 20 | + |
| 21 | +<!-- List the main changes in this PR --> |
| 22 | + |
| 23 | +- |
| 24 | +- |
| 25 | +- |
| 26 | + |
| 27 | +## Testing |
| 28 | + |
| 29 | +<!-- Describe the tests that you ran to verify your changes --> |
| 30 | + |
| 31 | +- [ ] All existing tests pass (`make test` or `pytest`) |
| 32 | +- [ ] Added new tests for new functionality |
| 33 | +- [ ] Tested on multiple Python versions (if applicable) |
| 34 | +- [ ] Tested on multiple platforms (if applicable) |
| 35 | + |
| 36 | +### Test Commands Run |
| 37 | + |
| 38 | +```bash |
| 39 | +# List the test commands you ran |
| 40 | +make test |
| 41 | +pytest tests/unit/test_*.py -v |
| 42 | +``` |
| 43 | + |
| 44 | +## Documentation |
| 45 | + |
| 46 | +- [ ] Updated docstrings for modified functions/classes |
| 47 | +- [ ] Updated README.md (if needed) |
| 48 | +- [ ] Updated CHANGES.md |
| 49 | +- [ ] Updated type hints (if applicable) |
| 50 | + |
| 51 | +## Checklist |
| 52 | + |
| 53 | +- [ ] My code follows the project's code style (`make format` and `make lint` pass) |
| 54 | +- [ ] I have performed a self-review of my code |
| 55 | +- [ ] I have commented my code, particularly in hard-to-understand areas |
| 56 | +- [ ] My changes generate no new warnings |
| 57 | +- [ ] I have added tests that prove my fix is effective or that my feature works |
| 58 | +- [ ] New and existing unit tests pass locally with my changes |
| 59 | +- [ ] Any dependent changes have been merged and published |
| 60 | + |
| 61 | +## Performance Impact |
| 62 | + |
| 63 | +<!-- If applicable, describe any performance implications --> |
| 64 | + |
| 65 | +- [ ] No performance impact |
| 66 | +- [ ] Performance improvement (describe below) |
| 67 | +- [ ] Potential performance regression (describe below and justify) |
| 68 | + |
| 69 | +## Breaking Changes |
| 70 | + |
| 71 | +<!-- If this is a breaking change, describe the impact and migration path --> |
| 72 | + |
| 73 | +N/A |
| 74 | + |
| 75 | +## Additional Notes |
| 76 | + |
| 77 | +<!-- Any additional information that reviewers should know --> |
0 commit comments