diff options
Diffstat (limited to 'python')
-rw-r--r-- | python/pycodestyle/README | 2 | ||||
-rw-r--r-- | python/pycodestyle/pycodestyle.SlackBuild | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/python/pycodestyle/README b/python/pycodestyle/README index 878812eec357..973fdfaf9b94 100644 --- a/python/pycodestyle/README +++ b/python/pycodestyle/README @@ -1,2 +1,4 @@ pycodestyle is a tool to check your Python code against some of the style conventions in PEP 8. + +python3 is an optional dependency (autodetected). diff --git a/python/pycodestyle/pycodestyle.SlackBuild b/python/pycodestyle/pycodestyle.SlackBuild index 35769e61abe6..508181d56eb0 100644 --- a/python/pycodestyle/pycodestyle.SlackBuild +++ b/python/pycodestyle/pycodestyle.SlackBuild @@ -71,6 +71,11 @@ find -L . \ python setup.py install --root=$PKG +# Python 3 support. +if $(python3 -c 'import sys' 2>/dev/null); then + python3 setup.py install --root=$PKG +fi + find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true |