Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 761 Bytes

CONTRIBUTING.md

File metadata and controls

33 lines (21 loc) · 761 Bytes

Contributing to aioitertools

Preparation

You'll need to have Python 3.6 available for testing. I recommend using pyenv for this:

$ pyenv install 3.6.5
$ pyenv shell 3.6.5

Setup

Create a fresh development enviroment, and install the appropriate tools and dependencies:

$ cd <path/to/aioitertools>
$ make venv
$ source .venv/bin/activate

Submitting

Before submitting a pull request, please ensure that you have done the following:

  • Documented changes or features in README.md
  • Added appropriate license headers to new files
  • Written or modified tests for new functionality
  • Used make format to format code appropriately
  • Validated and tested code with make lint test