diff --git a/Dockerfile.build.tpl b/Dockerfile.build.tpl index b18bf29a..738d0b7d 100644 --- a/Dockerfile.build.tpl +++ b/Dockerfile.build.tpl @@ -4,8 +4,8 @@ RUN mkdir -p /opt/driver/src && \ adduser $BUILD_USER -u $BUILD_UID -D -h /opt/driver/src RUN apk add --no-cache --update python python-dev python3 python3-dev py-pip py2-pip git build-base bash -RUN pip3 install six git+https://github.com/juanjux/python-pydetector.git \ +RUN pip3 install six pydetector==0.5.7 \ git+https://github.com/python/mypy.git@0bb2d1680e8b9522108b38d203cb73021a617e64#egg=mypy-lang -RUN pip2 install six git+https://github.com/juanjux/python-pydetector.git +RUN pip2 install six pydetector==0.5.7 WORKDIR /opt/driver/src diff --git a/Dockerfile.tpl b/Dockerfile.tpl index 7b4733f1..181814f4 100644 --- a/Dockerfile.tpl +++ b/Dockerfile.tpl @@ -2,8 +2,8 @@ FROM alpine:3.6 MAINTAINER source{d} RUN apk add --no-cache --update python python3 py-pip py2-pip git -RUN pip3 install six git+https://github.com/juanjux/python-pydetector.git -RUN pip2 install six git+https://github.com/juanjux/python-pydetector.git +RUN pip3 install six pydetector==0.5.7 +RUN pip2 install six pydetector==0.5.7 ADD build /opt/driver/bin ADD native/python_package /tmp/python_driver diff --git a/native/python_package/requirements.txt b/native/python_package/requirements.txt index 616becd4..843e7b28 100644 --- a/native/python_package/requirements.txt +++ b/native/python_package/requirements.txt @@ -1,4 +1,4 @@ msgpack-python==0.4.8 -pydetector==0.5.5 +pydetector==0.5.7 -e git+git://github.com/python/mypy.git@0bb2d1680e8b9522108b38d203cb73021a617e64#egg=mypy-lang typed-ast==1.0.1 diff --git a/native/python_package/setup.py b/native/python_package/setup.py index de44bb0c..b1a09c82 100644 --- a/native/python_package/setup.py +++ b/native/python_package/setup.py @@ -32,7 +32,7 @@ }, install_requires=[ "msgpack-python==0.4.8", - "pydetector==0.5.5" + "pydetector==0.5.7" ], classifiers=[ "Development Status :: 4 - Beta",