General guidelines for contributing to python-mapnik
See the Mapnik guide.
All python code should follow PEP8 as closely as possible. However, we do not strictly enforce all PEP8 such as 80 characters per line.
In order for any code to be pulled into master it must contain tests for 100% of all lines. The only lines that are not required to be tested are those that cover extreme cases which can not be tested with regularity, such as race conditions.
If this case does occur you can put a comment block such as shown below to exclude the lines from test coverage.
// LCOV_EXCL_START
can_not_reach_code();
// LCOV_EXCL_END
To release a new python-mapnik version:
Currently just hit up @flippmoke, this section will be filled out ASAP!
TODO: Write documentation on how to update documentation.