mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-08 07:22:15 -04:00
Let pip install multiple packages at once
Pip can install multiple dependencies at the same time, so there is no need to use xargs -n1. It's significantly slower with -n1, so let's not do it with no reason.
This commit is contained in:
parent
b6146537d2
commit
debbea5b29
2 changed files with 9 additions and 10 deletions
|
@ -15,6 +15,6 @@ tox -e py27 --notest -v
|
|||
|
||||
TOX_BIN=$TOX_DIR/py27/bin
|
||||
$TOX_BIN/pip install setuptools
|
||||
python synapse/python_dependencies.py | xargs -n1 $TOX_BIN/pip install
|
||||
$TOX_BIN/pip install lxml
|
||||
$TOX_BIN/pip install psycopg2
|
||||
{ python synapse/python_dependencies.py
|
||||
echo lxml psycopg2
|
||||
} | xargs $TOX_BIN/pip install
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue