Skip to content

Commit

Permalink
fix shell > out file uses min recomended
Browse files Browse the repository at this point in the history
  • Loading branch information
Furtif committed Jul 28, 2022
1 parent 2dece14 commit 9d0eaec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion buildozer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -516,8 +516,9 @@ def _install_application_requirement(self, module):
if 'osx' in '{}'.format(self.target):
return

module = str(module).replace('>', '=')
self._ensure_virtualenv()
self.debug('Install requirement {} in virtualenv'.format(module))
self.debug(f'Install requirement {module} in virtualenv')
self.cmd(
["pip", "install", f"--target={self.applibs_dir}", module],
env=self.env_venv,
Expand Down

0 comments on commit 9d0eaec

Please sign in to comment.