Skip to content

Commit 48f8c0a

Browse files
committed
deprecate --no-install and --no-download
1 parent a8c829e commit 48f8c0a

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGES.txt

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ Changelog
1717
* **BACKWARD INCOMPATIBLE** pip no longer respects dependency links by default.
1818
Users may opt into respecting them again using ``--process-dependency-links``.
1919

20+
* **DEPRECATION** ``pip install --no-install`` and ``pip install
21+
--no-download`` are now formally deprecated. See Issue #906 for discussion on
22+
possible alternatives, or lack thereof, in future releases.
23+
2024
* pip will now install Mac OSX platform wheels from PyPI. (Pull #1278)
2125

2226
* pip now generates the appropriate platform-specific console scripts when

pip/commands/install.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,13 @@ def __init__(self, *args, **kw):
105105
'--no-install',
106106
dest='no_install',
107107
action='store_true',
108-
help="Download and unpack all packages, but don't actually install them.")
108+
help="DEPRECATED. Download and unpack all packages, but don't actually install them.")
109109

110110
cmd_opts.add_option(
111111
'--no-download',
112112
dest='no_download',
113113
action="store_true",
114-
help="Don't download any packages, just install the ones already downloaded "
114+
help="DEPRECATED. Don't download any packages, just install the ones already downloaded "
115115
"(completes an install run with --no-install).")
116116

117117
cmd_opts.add_option(cmdoptions.install_options.make())

0 commit comments

Comments
 (0)