- Create a new branch that branches off the
dev
branch with one of the following naming conventions: (1) -, (2) -dev-, etc. - In your branch, make the necessary changes.
- Commit changes and push your branch.
- Create a pull request (PR) on Friday.
- Create your own virual environment
virtualenv .venv
- Install the
uv
packagepip install uv==0.5.13
- Build the wheel using
uv build
This project uses uv
to manage the build and publish. For those developing on the source code, you'll need to be familiar with this package.
To install the package in an editable way in your virtual environment, use the command uv pip install -e .
If you're adding dependencies for development, please use the dependency groups feature by running the command uv add --dev <package name>
.
If you're adding dependencies for the package's functionality, please use the command uv add <package name>
.