drop support for python 3.5

This commit is contained in:
PyYoshi 2020-10-27 17:09:47 +09:00
commit 4ce55f479a
No known key found for this signature in database
GPG key ID: 146D52F7C000C2F0
10 changed files with 232 additions and 215 deletions
dockerfiles

View file

@ -4,9 +4,9 @@ set -e -x
ARCH=`uname -p`
echo "arch=$ARCH"
for V in cp39-cp39 cp38-cp38 cp37-cp37m cp36-cp36m cp35-cp35m; do
for V in cp39-cp39 cp38-cp38 cp37-cp37m cp36-cp36m; 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
$PYBIN/python setup.py bdist_wheel -p manylinux1_${ARCH}
$PYBIN/python setup.py bdist_wheel -p manylinux2014_${ARCH}
done