Skip to content
This repository has been archived by the owner on May 12, 2022. It is now read-only.

Latest commit

 

History

History
30 lines (21 loc) · 645 Bytes

CONTRIBUTING.rst

File metadata and controls

30 lines (21 loc) · 645 Bytes

Contributing

Basic workflow

git clone $project
cd $project

# create and activate a development environment
virtualenv -p python3.5 devenv
source devenv/bin/activate

# install development dependencies
pip install -r requirements-dev.txt

# install pre-commit hooks
pre-commit install

# switch to feature branch
git checkout -b dev-$feat

# make some changes
$EDITOR $filename.py

git add $filename.py
# pre-commit hooks with linters and formatters will be run
git commit