drop support for Python 3.4

https://devguide.python.org/devcycle/#end-of-life-branches
This commit is contained in:
PyYoshi 2019-11-18 14:16:47 +09:00
commit 1753e9122e
No known key found for this signature in database
GPG key ID: 146D52F7C000C2F0
8 changed files with 5 additions and 10 deletions
dockerfiles

View file

@ -4,7 +4,7 @@ set -e -x
ARCH=`uname -p`
echo "arch=$ARCH"
for V in cp38-cp38m cp37-cp37m cp36-cp36m cp35-cp35m cp34-cp34m cp27-cp27m cp27-cp27mu; do
for V in cp38-cp38m cp37-cp37m cp36-cp36m cp35-cp35m cp27-cp27m cp27-cp27mu; 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

View file

@ -1,4 +1,4 @@
FROM python:3.4-wheezy
FROM python:3.8-buster
RUN pip install -U cython chardet nose

View file

@ -1,4 +1,4 @@
FROM python:3.4-slim
FROM python:3.8-slim-buster
ENV BUILD_DEPS gcc g++