python/ipython_genutils: Remove Python 3 support.

Signed-off-by: Benjamin Trigona-Harany <bosth@alumni.sfu.ca>
This commit is contained in:
Benjamin Trigona-Harany 2017-04-15 17:36:00 -07:00 committed by Willy Sudiarto Raharjo
parent cf7f0e07d0
commit 2acce14916
2 changed files with 0 additions and 7 deletions

View file

@ -1,4 +1,2 @@
ipython_genutils contains some common utilities shared by Jupyter and IPython
projects during the code split.
Python 3 support will be included if python3 is installed.

View file

@ -71,11 +71,6 @@ 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