Skip to content

Commit

Permalink
fix quote
Browse files Browse the repository at this point in the history
  • Loading branch information
gsheni committed May 1, 2024
1 parent 145db41 commit 5111111
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,8 @@ def install_minimum(c):
minimum_versions = _get_minimum_versions(dependencies, python_version)

if minimum_versions:
c.run(f'python -m pip install {' '.join(minimum_versions)}')
install_deps = ' '.join(minimum_versions)
c.run(f'python -m pip install {install_deps}')


@task
Expand Down

0 comments on commit 5111111

Please sign in to comment.