Drop support for Python 2.7

See: [Maintenance releases - PEP 373 -- Python 2.7 Release Schedule | Python.org](https://www.python.org/dev/peps/pep-0373/#maintenance-releases)
This commit is contained in:
MISAWA Yoshihiro 2020-03-16 23:40:00 +09:00 committed by GitHub
commit e9154f9694
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 3 additions and 20 deletions
dockerfiles

View file

@ -4,7 +4,7 @@ set -e -x
ARCH=`uname -p`
echo "arch=$ARCH"
for V in cp38-cp38 cp37-cp37m cp36-cp36m cp35-cp35m cp27-cp27m cp27-cp27mu; do
for V in cp38-cp38 cp37-cp37m cp36-cp36m cp35-cp35m; do
PYBIN=/opt/python/$V/bin
rm -rf build src/cchardet/__pycache__ src/cchardet/*.cpp src/cchardet/*.pyc src/cchardet/*.so src/cchardet.egg-info src/tests/__pycache__ src/tests/*.pyc
$PYBIN/pip install -r requirements-dev.txt