10000 On line install_reqs to peace buildozer's parsing · jaynoel/python-for-android@f0d5dd6 · GitHub
[go: up one dir, main page]

Skip to content

Commit f0d5dd6

Browse files
inclementAndreMiras
authored andcommitted
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: kivy/buildozer#722
1 parent 381636a commit f0d5dd6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@
1616
data_files = []
1717

1818

19-
install_reqs = ['appdirs', 'colorama>=0.3.3', 'jinja2', 'six',
20-
'enum34;python_version<"3.4"']
19+
# must be a single statement since buildozer is currently parsing it, refs:
20+
# https://github.com/kivy/buildozer/issues/722
21+
install_reqs = ['appdirs', 'colorama>=0.3.3', 'jinja2', 'six', 'enum34;python_version<"3.4"']
2122
if os.name != 'nt':
2223
install_reqs.append('sh>=1.10')
2324

0 commit comments

Comments
 (0)
0