Make pycodestyle and pyflakes an optional dependency under "all"
Review Request #10218 — Created Oct. 11, 2018 and submitted — Latest diff uploaded
The documentation incorrectly stated that these tools were
"automatically installed", as they were not dependencies insetup.py
.
These dependencies were added to the optional 'all' target, and the
documentation updated accordingly.
Since this is just a change for Python dependencies I've done:
-pip install -e ./bot
-pip install -e ./bot[all]
To test if it installs and doesn't install pycodestyle and pyflakes
under the default package and the all target, and according to the
logs this is the case.