Pip-tools: add --no-cache option to pip-compile

Created on 13 Jan 2017  路  2Comments  路  Source: jazzband/pip-tools

A rehash of closed issue #17.

In our CI build script, we use pip-compile to ensure python requirements consistency. Our requirements.in has -e git+ssh://github/... dependencies. As a result, pip-compile checks out the repositories and building up .cache/pip-tools:

build-xenial-01:/home/jenkins$ sudo du -h .cache/pip-tools
120M    .cache/pip-tools/wheels
75G .cache/pip-tools/pkgs
75G .cache/pip-tools

which eventually fills up /home/. Please implement an option for not using cache or clearing cache.

Most helpful comment

@mlfz Clearing the cache is already possible:

pip-compile --rebuild

or

pip-compile -r

All 2 comments

@mlfz Clearing the cache is already possible:

pip-compile --rebuild

or

pip-compile -r

Thanks! My apology.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

sirex picture sirex  路  4Comments

nicoa picture nicoa  路  3Comments

vphilippon picture vphilippon  路  4Comments

sp-bot-tools picture sp-bot-tools  路  4Comments

tuukkamustonen picture tuukkamustonen  路  5Comments