1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Merge pull request #2820 from j0057/config-docs

Document behavior of boolean config file variables (--no-cache and --no-compile)
This commit is contained in:
Donald Stufft 2015-06-23 19:11:22 -04:00
commit 7d69501fcb

View file

@ -354,6 +354,17 @@ set like this:
ignore-installed = true
no-dependencies = yes
To enable the boolean options ``--no-compile`` and ``--no-cache-dir``, falsy
values have to be used:
.. code-block:: ini
[global]
no-cache-dir = false
[install]
no-compile = no
Appending options like ``--find-links`` can be written on multiple lines:
.. code-block:: ini