Skip to content

Commit da10e50

Browse files
authored
Merge pull request kivy#1413 from kivy/inclement-patch-1
Put install_reqs on line so that buildozer's rubbish parsing will work
2 parents 381636a + f0d5dd6 commit da10e50

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)