paylogic / pip-accel

pip-accel: Accelerator for pip, the Python package manager
https://pypi.python.org/pypi/pip-accel
MIT License
308 stars 35 forks source link

pip-accel does not honor -q (--quiet) #35

Closed jquast closed 9 years ago

jquast commented 9 years ago

pip-accel -q has output

(xxx)$ pip-accel -q install blessed
2014-10-24 16:34:05 IO-PHX-L-468 pip_accel[40554] INFO Unpacking local source distributions ..
2014-10-24 16:34:05 IO-PHX-L-468 pip_accel[40554] INFO Executing command: pip -q install --download-cache=/Users/jquast/.pip/download-cache --find-links=file:///Users/jquast/.pip-accel/sources --build-directory=/var/folders/k3/ssq0mds55pn0lg4v0lr9cmp48g76w2/T/tmpaen61Z --no-index blessed --no-install
  Could not find any downloads that satisfy the requirement blessed
No distributions at all found for blessed
Storing complete log in /Users/jquast/.pip/pip.log
2014-10-24 16:34:05 IO-PHX-L-468 pip_accel[40554] WARNING We don't have all source distributions yet!
2014-10-24 16:34:05 IO-PHX-L-468 pip_accel[40554] INFO Downloading source distributions ..
2014-10-24 16:34:05 IO-PHX-L-468 pip_accel[40554] INFO Executing command: pip -q install --download-cache=/Users/jquast/.pip/download-cache --find-links=file:///Users/jquast/.pip-accel/sources --build-directory=/var/folders/k3/ssq0mds55pn0lg4v0lr9cmp48g76w2/T/tmpaen61Z blessed --no-install
2014-10-24 16:34:07 IO-PHX-L-468 pip_accel[40554] INFO Finished downloading source distributions in 1.39 second.
2014-10-24 16:34:07 IO-PHX-L-468 pip_accel[40554] WARNING pip failed, retrying (2/10) ..
2014-10-24 16:34:07 IO-PHX-L-468 pip_accel[40554] INFO Unpacking local source distributions ..
2014-10-24 16:34:07 IO-PHX-L-468 pip_accel[40554] INFO Executing command: pip -q install --download-cache=/Users/jquast/.pip/download-cache --find-links=file:///Users/jquast/.pip-accel/sources --build-directory=/var/folders/k3/ssq0mds55pn0lg4v0lr9cmp48g76w2/T/tmpaen61Z --no-index blessed --no-install
2014-10-24 16:34:07 IO-PHX-L-468 pip_accel[40554] INFO Unpacked local source distributions in 0.33 seconds.
2014-10-24 16:34:07 IO-PHX-L-468 pip_accel[40554] INFO Installing from binary distributions ..
2014-10-24 16:34:07 IO-PHX-L-468 pip_accel.bdist[40554] INFO Building binary distribution of blessed (1.9.4) ..
2014-10-24 16:34:07 IO-PHX-L-468 pip_accel.bdist[40554] INFO Finished building blessed (1.9.4) in 0.32 seconds.
2014-10-24 16:34:08 IO-PHX-L-468 pip_accel.bdist[40554] INFO Building binary distribution of wcwidth (0.1.1) ..
2014-10-24 16:34:08 IO-PHX-L-468 pip_accel.bdist[40554] INFO Finished building wcwidth (0.1.1) in 0.21 seconds.
2014-10-24 16:34:08 IO-PHX-L-468 pip_accel[40554] INFO Finished installing all requirements in 0.91 seconds.
2014-10-24 16:34:08 IO-PHX-L-468 pip_accel[40554] INFO Done! Took 2.65 seconds to install 2 packages.
(xxx)$ pip-accel uninstall blessed
Proceed (y/n)? y

whereas standard pip does not

(xxx)$ pip -q install blessed
(xxx)$
xolox commented 9 years ago

It does now :-). Thanks for the feedback!