Files
responder/DEVELOP.md
Andreas Motl cc0fe78382 Packaging: Use versioningit for maintaining the package version
The Debian package builder has been saved to `bin/mkdeb.py` for now. It
needs to be refurbished into a `poethepoet` task subsequently.
2024-10-25 14:21:22 +02:00

451 B

Development Sandbox

Setup

Acquire sources and install project in editable mode.

git clone https://github.com/kennethreitz/responder
cd responder
python3 -m venv .venv
source .venv/bin/activate
pip install --editable '.[graphql,develop,release,test]'

Operations

Invoke linter and software tests.

poe check

Format code.

poe format

Release

git tag v2.1.0
git push --tags
poe release