Skip to content
Snippets Groups Projects
Commit 3444488a authored by Donald Stufft's avatar Donald Stufft
Browse files

Don't hide pip output

parent 7cba9c22
No related branches found
No related tags found
No related merge requests found
...@@ -51,11 +51,11 @@ def install_sodium(): ...@@ -51,11 +51,11 @@ def install_sodium():
def install_requirements(dev=False): def install_requirements(dev=False):
if dev: if dev:
# Install once to get the tests extra # Install once to get the tests extra
run("pip install file://$PWD#egg=pynacl[tests]", hide="out") run("pip install file://$PWD#egg=pynacl[tests]")
# Install again to get an editable install # Install again to get an editable install
run("pip install -e .", hide="out") run("pip install -e .")
else: else:
run("pip install .", hide="out") run("pip install .")
@task @task
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment