From 6750e3352517d99b7d030b5f817f8feddde840b5 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Thu, 27 Apr 2017 09:28:08 -0700 Subject: [PATCH] Right fix for Python Open Z-Wave in Docker (#7337) --- virtualization/Docker/scripts/python_openzwave | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/virtualization/Docker/scripts/python_openzwave b/virtualization/Docker/scripts/python_openzwave index f4eb233e53c..be19559029e 100755 --- a/virtualization/Docker/scripts/python_openzwave +++ b/virtualization/Docker/scripts/python_openzwave @@ -16,14 +16,12 @@ cd build if [ -d python-openzwave ]; then cd python-openzwave - git pull --recurse-submodules=yes - git submodule update --init --recursive + git checkout v0.3.3 else - git clone --branch python3 --recursive --depth 1 https://github.com/OpenZWave/python-openzwave.git + git clone --branch v0.3.3 --recursive --depth 1 https://github.com/OpenZWave/python-openzwave.git cd python-openzwave fi -git checkout python3 pip3 install --upgrade cython==0.24.1 PYTHON_EXEC=`which python3` make build PYTHON_EXEC=`which python3` make install