drop Python 2.6 support

This commit is contained in:
Tiziano Müller 2019-05-16 08:40:10 +02:00 committed by Tiziano Müller
parent 932221aa9a
commit 09bf4a0ac3
3 changed files with 1 additions and 19 deletions

View file

@ -23,18 +23,3 @@ rm -rf /var/lib/apt/lists/*
# install python packages
pip install --quiet numpy matplotlib requests
pip3 install --quiet numpy matplotlib requests pre-commit
# install python2.6
echo "Building Python-2.6.9... "
cd /tmp
wget -q https://www.python.org/ftp/python/2.6.9/Python-2.6.9.tgz
echo "7277b1285d8a82f374ef6ebaac85b003266f7939b3f2a24a3af52f9523ac94db Python-2.6.9.tgz" | sha256sum --check
tar -xzf Python-2.6.9.tgz
pushd Python-2.6.9
./configure > /tmp/python2.6.9_configure.log
make -j > /tmp/python2.6.9_make.log
make install > /tmp/python2.6.9_install.log
popd
rm -rf Python-2.6.9*
#EOF