From da7d873beb81b09ec0145d172f538abe51b51c23 Mon Sep 17 00:00:00 2001 From: shim_ <> Date: Thu, 19 Jul 2018 22:06:53 +0200 Subject: [PATCH] downgrade py version for compatibility --- .drone.yml | 2 +- make-modules.sh | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 0e8b3c3..80bfb91 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,6 +1,6 @@ pipeline: modules: - image: python:3.6 + image: python:3.5 commands: - ./make-modules.sh package: diff --git a/make-modules.sh b/make-modules.sh index ea0593b..07eb8cd 100755 --- a/make-modules.sh +++ b/make-modules.sh @@ -1,6 +1,5 @@ rm -rf modules mkdir modules pip3 install --install-option="--prefix=$PWD" -r requirements.txt -mv lib/python3.6/site-packages/* modules/ +mv lib/python3.5/site-packages/* modules/ cp imports/* -r modules/ -