Skip to content
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

Make Deps.pip a closure again #1240

Merged
merged 8 commits into from
Mar 24, 2020
Merged
6 changes: 1 addition & 5 deletions src/Deps.jl
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,7 @@ deploydocs(
)
```
"""
function pip(deps...)
for dep in deps
run(`pip install --user $(dep)`)
end
end
pip(deps...) = () -> map(dep -> run(`pip install --user $(dep)`), deps)


function localbin()
Expand Down