whatsnew: pyvenv --copies option.
authorR David Murray <rdmurray@bitdance.com>
Sun, 23 Feb 2014 16:36:25 +0000 (11:36 -0500)
committerR David Murray <rdmurray@bitdance.com>
Sun, 23 Feb 2014 16:36:25 +0000 (11:36 -0500)
Also added the missing documentation for new new option.

Doc/using/venv-create.inc
Doc/whatsnew/3.4.rst

index 997e24bd2b5115eeeb45e4fcfdec4635927f5dcf..879ab7af674f9660a79bf739e200cb45e5aa8bdf 100644 (file)
@@ -38,6 +38,8 @@ The command, if run with ``-h``, will show the available options::
                              virtual environment.
       --symlinks             Try to use symlinks rather than copies, when symlinks
                              are not the default for the platform.
+      --copies               Try to use copies rather than symlinks, even when
+                             symlinks are the default for the platform.
       --clear                Delete the environment directory if it already exists.
                              If not specified and the directory exists, an error is
                              raised.
@@ -47,7 +49,8 @@ The command, if run with ``-h``, will show the available options::
                              environment (pip is bootstrapped by default)
 
 .. versionchanged:: 3.4
-   Installs pip by default, added the ``--without-pip`` option
+   Installs pip by default, added the ``--without-pip``  and ``--copies``
+   options
 
 If the target directory already exists an error will be raised, unless
 the ``--clear`` or ``--upgrade`` option was provided.
index b20b64c287efc162a23baaf416188b72e4233944..d474a95f422acb6015194d6bef0819fe1b97e9be 100644 (file)
@@ -1508,6 +1508,10 @@ Other Improvements
   Stinner using his :pep:`445`-based ``pyfailmalloc`` tool (:issue:`18408`,
   :issue:`18520`).
 
+* The :ref:`pyvenv <scripts-pyvenv>` command now accepts a ``--copies`` option
+  to use copies rather than symlinks even on systems where symlinks are the
+  default.  (Contributed by Vinay Sajip in :issue:`18807`.)
+
 
 Significant Optimizations
 -------------------------