Contributing¶
Thank you for considering a contribution to waku
! π
This guide will help you get started and ensure a smooth process.
Getting Started¶
Prerequisites¶
Before you begin, ensure you have the following installed:
- Python 3.11 or higher
- uv - A modern Python package manager
- Task - A task runner for automating development workflows. We recommend setting up auto-completion for Task.
- Git
Development Setup¶
-
Fork and clone the repository:
-
Install UV (if not already installed):
-
Install Task (if not already installed):
-
Setup development environment:
Tip: Run
task -l
after setup to verify everything is working and see available commands.
Development Workflow¶
Making Changes¶
-
Create a new branch for your changes:
-
Make your changes following our code style guidelines
-
Write tests for your changes
Testing¶
Ensure your changes are thoroughly tested by running the following commands:
# Run all checks (recommended)
task
# Run linters and type checkers
task check
# Run specific checks
task test # Run tests only
task test:cov # Run tests with coverage
task lint # Run linters only
task format # Format code
task typecheck # Run type checkers only
Code Style¶
We use several tools to maintain code quality:
- Ruff for linting and formatting
- MyPy and basedpyright for type checking
- pre-commit for running checks before commits and pushes
Key style guidelines:
- Maximum line length: 120 characters
- Use explicit type annotations throughout the codebase
- Follow PEP 8 conventions
- Write descriptive docstrings using the Google style
Submitting Changes¶
Issues¶
Before creating an issue:
- Search existing issues to avoid duplicates.
- Use the appropriate issue template.
- Provide as much context as possible (e.g., steps to reproduce, environment details).
We welcome:
- Bug reports
- Feature requests
- Documentation improvements
- General questions or ideas
Pull Requests¶
- Discuss significant changes by creating an issue first.
- Ensure all tests pass and code is formatted.
- Update documentation if your changes affect it.
- Follow the pull request template.
- Link related issues in your PR description (e.g., "Fixes #123").
Pull request checklist:
- Tests added or updated
- Documentation updated (if applicable)
- Type hints added or refined
- Commit messages include a detailed description for the changelog
- All checks pass
Development Commands¶
Use these common task
commands during development:
task install # Install dependencies and set up pre-commit hooks
task format # Format code using Ruff
task lint # Run all linters
task typecheck # Run type checkers (MyPy and basedpyright)
task test # Run tests
task test:cov # Run tests with coverage
task clean # Clean build artifacts
task -l # List all available commands
Questions?¶
Need help? Feel free to:
- Open an issue
- Start a discussion
- Contact the maintainers directly
Thank you for contributing to waku
! π