Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use with statement to open files | Matt Iversen | 2016-02-14 | 1 | -32/+24 |
| | |||||
* | Bump for development | Donald Stufft | 2016-02-07 | 1 | -1/+1 |
| | |||||
* | Bump version for release | Donald Stufft | 2016-02-07 | 1 | -1/+1 |
| | |||||
* | Merge pull request #866 from dstufft/extract-ca | Donald Stufft | 2016-02-07 | 1 | -21/+41 |
|\ | | | | | Extract the CA Certificate bundle and pass it into pip | ||||
| * | Extract the CA Certificate bundle and pass it into pip | Donald Stufft | 2016-02-07 | 1 | -21/+41 |
| | | | | | | | | | | | | The OpenSSL APIs cannot handle a CAFile that does not exist on disk, so instead we have to make a temporary file and put it on disk. | ||||
* | | Bump version for development | Matthew Iversen | 2016-02-01 | 1 | -1/+1 |
| | | |||||
* | | Bump version for development14.0.5 | Matthew Iversen | 2016-02-01 | 1 | -1/+1 |
| | | |||||
* | | Homogenize drive letter casing for both prefixes and filenames. | Matt Iversen | 2016-02-01 | 1 | -0/+3 |
| | | |||||
* | | Bump version for development | Matthew Iversen | 2016-02-01 | 1 | -1/+1 |
| | | |||||
* | | Bump version for release14.0.4 | Matthew Iversen | 2016-02-01 | 1 | -1/+1 |
| | | |||||
* | | Revert ac4ea65; only correct drive letter case. | Matt Iversen | 2016-01-30 | 1 | -2/+4 |
| | | | | | | | | Fixes #856, #815 | ||||
* | | Bump version for development | Matthew Iversen | 2016-01-29 | 1 | -1/+1 |
| | | |||||
* | | Bump version for release14.0.3 | Matthew Iversen | 2016-01-29 | 1 | -1/+1 |
| | | |||||
* | | Bump for development | Matthew Iversen | 2016-01-28 | 1 | -1/+1 |
| | | |||||
* | | Bump version for release14.0.2 | Matthew Iversen | 2016-01-28 | 1 | -1/+1 |
|/ | |||||
* | Fix #837 | Matthew Iversen | 2016-01-22 | 1 | -1/+2 |
| | | | | Normalize case for prefix paths before checking them | ||||
* | Merge pull request #843 from Gnouc/develop | Matt Iversen | 2016-01-22 | 1 | -14/+14 |
|\ | | | | | Silent `unset -f` error in zsh | ||||
| * | Silent `unset -f` error in zsh | LE Manh Cuong | 2016-01-20 | 1 | -14/+14 |
| | | |||||
* | | Bump for development | Donald Stufft | 2016-01-21 | 1 | -1/+1 |
| | | |||||
* | | Bump for release | Donald Stufft | 2016-01-21 | 1 | -1/+1 |
| | | |||||
* | | Default to true | Donald Stufft | 2016-01-21 | 1 | -0/+1 |
|/ | |||||
* | Bump version for development | Donald Stufft | 2016-01-19 | 1 | -1/+1 |
| | |||||
* | bump version for release | Donald Stufft | 2016-01-19 | 1 | -1/+1 |
| | |||||
* | Merge pull request #830 from kankri/develop | Donald Stufft | 2016-01-19 | 1 | -1/+14 |
|\ | | | | | PIP_FIND_LINKS doesn't cope with spaces, work around with file:// URLs. | ||||
| * | PIP_FIND_LINKS doesn't cope with spaces, work around with file:// URLs. | Risto Kankkunen | 2015-12-09 | 1 | -1/+14 |
| | | |||||
* | | Make the --no-(pip|setuptools|wheel) options independent | Donald Stufft | 2016-01-19 | 1 | -6/+12 |
| | | |||||
* | | Try to download the latest versions of preinstalled packages | Donald Stufft | 2016-01-19 | 1 | -24/+37 |
| | | | | | | | | | | | | | | | | | | | | | | * Will only accept Wheels (because that is all we can install without setuptools). * Will still fall back to using the bundled copies of the preinstalled packages if it cannot access the internet. This should prevent errors happening from too old of versions of software being bundled with virtualenv, while still allowing people to prevent talking to the internet with --no-download. | ||||
* | | Update deactivate.bat, apply to virtualenv.py | Matt Iversen | 2016-01-20 | 1 | -4/+4 |
| | | |||||
* | | Apply in virtualenv.pywinbrackets | Matthew Iversen | 2016-01-19 | 1 | -5/+6 |
| | | |||||
* | | Add bat changes to virtualenv.py | Matthew Iversen | 2016-01-19 | 1 | -7/+9 |
| | | |||||
* | | Homogenize test syntax, add explanation of it | Matthew Iversen | 2016-01-18 | 1 | -13/+14 |
|/ | |||||
* | Flatten logic of fix_lib64 | Matt Iversen | 2015-10-22 | 1 | -24/+26 |
| | |||||
* | Simplify sys.path removal logic, use short form os.path.join | Matt Iversen | 2015-10-20 | 1 | -9/+5 |
| | |||||
* | Remove file's directory from sys.path ASAP | Matthew Iversen | 2015-10-18 | 1 | -44/+47 |
| | | | | | | | | | | | This is needed particularly when a new interpreter is used, via -p/--python. Re-execing the same `virtualenv.py` will generally lead to its path being added to the start of sys.path (as usual). And usually its path will be the site-packages of the previous interpreter. This will lead to issues if older backported packages are present in the old environment (which will then get preference being imported). Should fix #779, #774, #763 | ||||
* | Remove extraneous commented package lines | Matt Iversen | 2015-10-09 | 1 | -155/+8 |
| | | | | Since 3.3 development is finished, we no longer need these. | ||||
* | Workaround to fix issue 802 | Samuel Villamonte | 2015-10-01 | 1 | -1/+2 |
| | | | | | | Allows pip to ignore user installs when there's a pip.conf with: [install] user = yes | ||||
* | Correct dc11925 | Matthew Iversen | 2015-09-21 | 1 | -1/+1 |
| | |||||
* | Correct look of fish prompt | Matthew Iversen | 2015-09-21 | 1 | -15/+15 |
| | |||||
* | Add pydoc function for fish | Matthew Iversen | 2015-09-21 | 1 | -16/+16 |
| | | | | Correct pydoc function for sh | ||||
* | Apply activate script changes | Matthew Iversen | 2015-09-21 | 1 | -28/+26 |
| | |||||
* | Merge pull request #472 from pmakowski/patch-1 | Matt Iversen | 2015-09-21 | 1 | -11/+1 |
|\ | | | | | Remove mandriva/mageia multiarch workaround, no longer needed | ||||
| * | Update virtualenv.py | Philippe Makowski | 2013-09-30 | 1 | -11/+1 |
| | | | | | | These lines about multiarch_exec are not valid for Mageia see for example this bug report : https://bugs.mageia.org/show_bug.cgi?id=11283 | ||||
* | | Move home_dir abspath to install_python_config | Matthew Iversen | 2015-09-21 | 1 | -1/+1 |
| | | | | | | | | Hopefully clear up usage of path_locations in pip | ||||
* | | Use portable syntax for `pydoc` function | Matthew Iversen | 2015-09-21 | 1 | -13/+13 |
| | | | | | | | | | | Make sure a pydoc alias isn't present to allow such function to be defined | ||||
* | | Remove legacy aspen workaround | Matthew Iversen | 2015-09-20 | 1 | -14/+13 |
| | | |||||
* | | Apply virtualenv_embedded changes in virtualenv.py | Matthew Iversen | 2015-09-20 | 1 | -29/+29 |
| | | |||||
* | | Restore !$ restoration from #799 | Matthew Iversen | 2015-09-20 | 1 | -27/+29 |
| | | |||||
* | | Fix activate.fish | Matthew Iversen | 2015-09-20 | 1 | -15/+13 |
| | | | | | | | | | | | | - Re-use old variable names - Requote to fix param expansion problems - Use traditional prompt look | ||||
* | | Apply #799 in virtualenv.py, note in changelog | Matthew Iversen | 2015-09-20 | 1 | -13/+15 |
| | | |||||
* | | Changelog / apply change in virtualenv.py for #724 | Matthew Iversen | 2015-09-19 | 1 | -13/+13 |
| | |