Skip to content
This repository was archived by the owner on Mar 8, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile.build.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions Dockerfile.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion native/python_package/requirements.txt
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion native/python_package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
},
install_requires=[
"msgpack-python==0.4.8",
"pydetector==0.5.5"
"pydetector==0.5.7"
],
classifiers=[
"Development Status :: 4 - Beta",
Expand Down