8000 Put install_reqs on line so that buildozer's rubbish parsing will work by inclement · Pull Request #1413 · kivy/python-for-android · GitHub
[go: up one dir, main page]

Skip to content

Put install_reqs on line so that buildozer's rubbish parsing will work #1413

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 19, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
8000
Diff view
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')

Expand Down
0