From 4833e992fb931d236d98dd90e40480e83c50bd92 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Tue, 25 Oct 2016 23:38:32 -0700 Subject: [PATCH] Pin cython==0.24.1 (#4057) --- Dockerfile | 2 +- script/build_python_openzwave | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4b6560f3b44f..b42d7edcc896 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ RUN script/build_python_openzwave && \ COPY requirements_all.txt requirements_all.txt RUN pip3 install --no-cache-dir -r requirements_all.txt && \ - pip3 install --upgrade cython==0.24.1 mysqlclient psycopg2 uvloop + pip3 install mysqlclient psycopg2 uvloop # Copy source COPY . . diff --git a/script/build_python_openzwave b/script/build_python_openzwave index 8f88cace5584..d4e3e07b7695 100755 --- a/script/build_python_openzwave +++ b/script/build_python_openzwave @@ -20,5 +20,6 @@ else fi git checkout python3 +pip3 install --upgrade cython==0.24.1 PYTHON_EXEC=`which python3` make build PYTHON_EXEC=`which python3` make install