| OLD | NEW |
| 1 Metadata-Version: 2.0 | |
| 2 Name: virtualenv | |
| 3 Version: 13.0.3 | |
| 4 Summary: Virtual Python Environment builder | |
| 5 Home-page: https://virtualenv.pypa.io/ | |
| 6 Author: Jannis Leidel, Carl Meyer and Brian Rosner | |
| 7 Author-email: python-virtualenv@groups.google.com | |
| 8 License: MIT | |
| 9 Keywords: setuptools deployment installation distutils | |
| 10 Platform: UNKNOWN | |
| 11 Classifier: Development Status :: 5 - Production/Stable | |
| 12 Classifier: Intended Audience :: Developers | |
| 13 Classifier: License :: OSI Approved :: MIT License | |
| 14 Classifier: Programming Language :: Python :: 2 | |
| 15 Classifier: Programming Language :: Python :: 2.6 | |
| 16 Classifier: Programming Language :: Python :: 2.7 | |
| 17 Classifier: Programming Language :: Python :: 3 | |
| 18 Classifier: Programming Language :: Python :: 3.1 | |
| 19 Classifier: Programming Language :: Python :: 3.2 | |
| 20 | |
| 21 Virtualenv | |
| 22 ========== | |
| 23 | |
| 24 `Mailing list <http://groups.google.com/group/python-virtualenv>`_ | | |
| 25 `Issues <https://github.com/pypa/virtualenv/issues>`_ | | |
| 26 `Github <https://github.com/pypa/virtualenv>`_ | | |
| 27 `PyPI <https://pypi.python.org/pypi/virtualenv/>`_ | | |
| 28 User IRC: #pypa | |
| 29 Dev IRC: #pypa-dev | |
| 30 | |
| 31 Introduction | |
| 32 ------------ | |
| 33 | |
| 34 ``virtualenv`` is a tool to create isolated Python environments. | |
| 35 | |
| 36 The basic problem being addressed is one of dependencies and versions, | |
| 37 and indirectly permissions. Imagine you have an application that | |
| 38 needs version 1 of LibFoo, but another application requires version | |
| 39 2. How can you use both these applications? If you install | |
| 40 everything into ``/usr/lib/python2.7/site-packages`` (or whatever your | |
| 41 platform's standard location is), it's easy to end up in a situation | |
| 42 where you unintentionally upgrade an application that shouldn't be | |
| 43 upgraded. | |
| 44 | |
| 45 Or more generally, what if you want to install an application *and | |
| 46 leave it be*? If an application works, any change in its libraries or | |
| 47 the versions of those libraries can break the application. | |
| 48 | |
| 49 Also, what if you can't install packages into the global | |
| 50 ``site-packages`` directory? For instance, on a shared host. | |
| 51 | |
| 52 In all these cases, ``virtualenv`` can help you. It creates an | |
| 53 environment that has its own installation directories, that doesn't | |
| 54 share libraries with other virtualenv environments (and optionally | |
| 55 doesn't access the globally installed libraries either). | |
| 56 | |
| 57 .. comment: | |
| 58 | |
| 59 Release History | 1 Release History |
| 60 =============== | 2 =============== |
| 61 | 3 |
| 4 15.0.2 (2016-05-28) |
| 5 ------------------- |
| 6 |
| 7 * Copy Tcl/Tk libs on Windows to allow them to run, |
| 8 fixes :issue:`93` (:pull:`888`) |
| 9 |
| 10 * Upgrade setuptools to 21.2.1. |
| 11 |
| 12 * Upgrade pip to 8.1.2. |
| 13 |
| 14 |
| 15 15.0.1 (2016-03-17) |
| 16 ------------------- |
| 17 |
| 18 * Print error message when DEST_DIR exists and is a file |
| 19 |
| 20 * Upgrade setuptools to 20.3 |
| 21 |
| 22 * Upgrade pip to 8.1.1. |
| 23 |
| 24 |
| 25 15.0.0 (2016-03-05) |
| 26 ------------------- |
| 27 |
| 28 * Remove the `virtualenv-N.N` script from the package; this can no longer be |
| 29 correctly created from a wheel installation. |
| 30 Resolves :issue:`851`, :issue:`692` |
| 31 |
| 32 * Remove accidental runtime dependency on pip by extracting certificate in the |
| 33 subprocess. |
| 34 |
| 35 * Upgrade setuptools 20.2.2. |
| 36 |
| 37 * Upgrade pip to 8.1.0. |
| 38 |
| 39 |
| 40 14.0.6 (2016-02-07) |
| 41 ------------------- |
| 42 |
| 43 * Upgrade setuptools to 20.0 |
| 44 |
| 45 * Upgrade wheel to 0.29.0 |
| 46 |
| 47 * Fix an error where virtualenv didn't pass in a working ssl certificate for |
| 48 pip, causing "weird" errors related to ssl. |
| 49 |
| 50 |
| 51 14.0.5 (2016-02-01) |
| 52 ------------------- |
| 53 |
| 54 * Homogenize drive letter casing for both prefixes and filenames. :issue:`858` |
| 55 |
| 56 |
| 57 14.0.4 (2016-01-31) |
| 58 ------------------- |
| 59 |
| 60 * Upgrade setuptools to 19.6.2 |
| 61 |
| 62 * Revert ac4ea65; only correct drive letter case. |
| 63 Fixes :issue:`856`, :issue:`815` |
| 64 |
| 65 |
| 66 14.0.3 (2016-01-28) |
| 67 ------------------- |
| 68 |
| 69 * Upgrade setuptools to 19.6.1 |
| 70 |
| 71 |
| 72 14.0.2 (2016-01-28) |
| 73 ------------------- |
| 74 |
| 75 * Upgrade setuptools to 19.6 |
| 76 |
| 77 * Supress any errors from `unset` on different shells (:pull:`843`) |
| 78 |
| 79 * Normalize letter case for prefix path checking. Fixes :issue:`837` |
| 80 |
| 81 |
| 82 14.0.1 (2016-01-21) |
| 83 ------------------- |
| 84 |
| 85 * Upgrade from pip 8.0.0 to 8.0.2. |
| 86 |
| 87 * Fix the default of ``--(no-)download`` to default to downloading. |
| 88 |
| 89 |
| 90 14.0.0 (2016-01-19) |
| 91 ------------------- |
| 92 |
| 93 * **BACKWARDS INCOMPATIBLE** Drop support for Python 3.2. |
| 94 |
| 95 * Upgrade setuptools to 19.4 |
| 96 |
| 97 * Upgrade wheel to 0.26.0 |
| 98 |
| 99 * Upgrade pip to 8.0.0 |
| 100 |
| 101 * Upgrade argparse to 1.4.0 |
| 102 |
| 103 * Added support for ``python-config`` script (:pull:`798`) |
| 104 |
| 105 * Updated activate.fish (:pull:`589`) (:pull:`799`) |
| 106 |
| 107 * Account for a ``site.pyo`` correctly in some python implementations (:pull:`75
9`) |
| 108 |
| 109 * Properly restore an empty PS1 (:issue:`407`) |
| 110 |
| 111 * Properly remove ``pydoc`` when deactivating |
| 112 |
| 113 * Remove workaround for very old Mageia / Mandriva linuxes (:pull:`472`) |
| 114 |
| 115 * Added a space after virtualenv name in the prompt: ``(env) $PS1`` |
| 116 |
| 117 * Make sure not to run a --user install when creating the virtualenv (:pull:`803
`) |
| 118 |
| 119 * Remove virtualenv.py's path from sys.path when executing with a new |
| 120 python. Fixes issue :issue:`779`, :issue:`763` (:pull:`805`) |
| 121 |
| 122 * Remove use of () in .bat files so ``Program Files (x86)`` works :issue:`35` |
| 123 |
| 124 * Download new releases of the preinstalled software from PyPI when there are |
| 125 new releases available. This behavior can be disabled using |
| 126 ``--no-download``. |
| 127 |
| 128 * Make ``--no-setuptools``, ``--no-pip``, and ``--no-wheel`` independent of |
| 129 each other. |
| 130 |
| 131 |
| 132 13.1.2 (2015-08-23) |
| 133 ------------------- |
| 134 |
| 135 * Upgrade pip to 7.1.2. |
| 136 |
| 137 |
| 138 13.1.1 (2015-08-20) |
| 139 ------------------- |
| 140 |
| 141 * Upgrade pip to 7.1.1. |
| 142 |
| 143 * Upgrade setuptools to 18.2. |
| 144 |
| 145 * Make the activate script safe to use when bash is running with ``-u``. |
| 146 |
| 147 |
| 148 13.1.0 (2015-06-30) |
| 149 ------------------- |
| 150 |
| 151 * Upgrade pip to 7.1.0 |
| 152 |
| 153 * Upgrade setuptools to 18.0.1 |
| 154 |
| 155 |
| 62 13.0.3 (2015-06-01) | 156 13.0.3 (2015-06-01) |
| 63 ~~~~~~~~~~~~~~~~~~~ | 157 ------------------- |
| 64 | 158 |
| 65 * Upgrade pip to 7.0.3 | 159 * Upgrade pip to 7.0.3 |
| 66 | 160 |
| 67 | 161 |
| 68 13.0.2 (2015-06-01) | 162 13.0.2 (2015-06-01) |
| 69 ~~~~~~~~~~~~~~~~~~~ | 163 ------------------- |
| 70 | 164 |
| 71 * Upgrade pip to 7.0.2 | 165 * Upgrade pip to 7.0.2 |
| 72 | 166 |
| 73 * Upgrade setuptools to 17.0 | 167 * Upgrade setuptools to 17.0 |
| 74 | 168 |
| 75 | 169 |
| 76 13.0.1 (2015-05-22) | 170 13.0.1 (2015-05-22) |
| 77 ~~~~~~~~~~~~~~~~~~~ | 171 ------------------- |
| 78 | 172 |
| 79 * Upgrade pip to 7.0.1 | 173 * Upgrade pip to 7.0.1 |
| 80 | 174 |
| 81 | 175 |
| 82 13.0.0 (2015-05-21) | 176 13.0.0 (2015-05-21) |
| 83 ~~~~~~~~~~~~~~~~~~~ | 177 ------------------- |
| 84 | 178 |
| 85 * Automatically install wheel when creating a new virutalenv. This can be | 179 * Automatically install wheel when creating a new virutalenv. This can be |
| 86 disabled by using the ``--no-wheel`` option. | 180 disabled by using the ``--no-wheel`` option. |
| 87 | 181 |
| 88 * Don't trust the current directory as a location to discover files to install | 182 * Don't trust the current directory as a location to discover files to install |
| 89 packages from. | 183 packages from. |
| 90 | 184 |
| 91 * Upgrade setuptools to 16.0. | 185 * Upgrade setuptools to 16.0. |
| 92 | 186 |
| 93 * Upgrade pip to 7.0.0. | 187 * Upgrade pip to 7.0.0. |
| 94 | 188 |
| 95 | 189 |
| 96 12.1.1 (2015-04-07) | 190 12.1.1 (2015-04-07) |
| 97 ~~~~~~~~~~~~~~~~~~~ | 191 ------------------- |
| 98 | 192 |
| 99 * Upgrade pip to 6.1.1 | 193 * Upgrade pip to 6.1.1 |
| 100 | 194 |
| 101 | 195 |
| 102 12.1.0 (2015-04-07) | 196 12.1.0 (2015-04-07) |
| 103 ~~~~~~~~~~~~~~~~~~~ | 197 ------------------- |
| 104 | 198 |
| 105 * Upgrade setuptools to 15.0 | 199 * Upgrade setuptools to 15.0 |
| 106 | 200 |
| 107 * Upgrade pip to 6.1.0 | 201 * Upgrade pip to 6.1.0 |
| 108 | 202 |
| 109 | 203 |
| 110 12.0.7 (2015-02-04) | 204 12.0.7 (2015-02-04) |
| 111 ------------------- | 205 ------------------- |
| 112 | 206 |
| 113 * Upgrade pip to 6.0.8 | 207 * Upgrade pip to 6.0.8 |
| (...skipping 779 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 893 0.8.1 | 987 0.8.1 |
| 894 ----- | 988 ----- |
| 895 | 989 |
| 896 Fixed packaging of the library. | 990 Fixed packaging of the library. |
| 897 | 991 |
| 898 | 992 |
| 899 0.8 | 993 0.8 |
| 900 --- | 994 --- |
| 901 | 995 |
| 902 Initial release. Everything is changed and new! | 996 Initial release. Everything is changed and new! |
| 903 | |
| 904 | |
| OLD | NEW |