This merge request converts the project from using pycodestyle and autopep8 to using just black for code style formatting.
The black foramtter has been run over the code. No functional changes are present, this is a formatting only change.
The Makefile is simplified.
The make style and make style.fix have been combined into the single rule make style.
the make style.fex rule has been removed
The .PHONY: directives have been moved to be above the actual rule which helps maintenance of the Makefile.
The developer docs are updated to describe the code style checking step.
pyp3 support is something being investigated. Currently the travis build fails for some weird reason that can not be replicated locally with pypy3. The travis config has been changed to allow the pypy build to fail.
This merge request converts the project from using
pycodestyle
andautopep8
to using justblack
for code style formatting.black
foramtter has been run over the code. No functional changes are present, this is a formatting only change.make style
andmake style.fix
have been combined into the single rulemake style
.make style.fex
rule has been removed.PHONY:
directives have been moved to be above the actual rule which helps maintenance of the Makefile.