From f0d5dd6081a6bc868c09699c80c56296ffc68401 Mon Sep 17 00:00:00 2001 From: Alexander Taylor Date: Thu, 18 Oct 2018 20:50:50 +0100 Subject: [PATCH] On line install_reqs to peace buildozer's parsing This is currently making buildozer fail because it tries to parse the line with a regex, refs: https://github.com/kivy/buildozer/issues/722 --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index e9729d6866..2e792d3e12 100644 --- a/setup.py +++ b/setup.py @@ -16,8 +16,9 @@ data_files = [] -install_reqs = ['appdirs', 'colorama>=0.3.3', 'jinja2', 'six', - 'enum34;python_version<"3.4"'] +# must be a single statement since buildozer is currently parsing it, refs: +# https://github.com/kivy/buildozer/issues/722 +install_reqs = ['appdirs', 'colorama>=0.3.3', 'jinja2', 'six', 'enum34;python_version<"3.4"'] if os.name != 'nt': install_reqs.append('sh>=1.10')