summaryrefslogtreecommitdiff
path: root/virtualenv.py
Commit message (Collapse)AuthorAgeFilesLines
* Use with statement to open filesMatt Iversen2016-02-141-32/+24
|
* Bump for developmentDonald Stufft2016-02-071-1/+1
|
* Bump version for releaseDonald Stufft2016-02-071-1/+1
|
* Merge pull request #866 from dstufft/extract-caDonald Stufft2016-02-071-21/+41
|\ | | | | Extract the CA Certificate bundle and pass it into pip
| * Extract the CA Certificate bundle and pass it into pipDonald Stufft2016-02-071-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 developmentMatthew Iversen2016-02-011-1/+1
| |
* | Bump version for development14.0.5Matthew Iversen2016-02-011-1/+1
| |
* | Homogenize drive letter casing for both prefixes and filenames.Matt Iversen2016-02-011-0/+3
| |
* | Bump version for developmentMatthew Iversen2016-02-011-1/+1
| |
* | Bump version for release14.0.4Matthew Iversen2016-02-011-1/+1
| |
* | Revert ac4ea65; only correct drive letter case.Matt Iversen2016-01-301-2/+4
| | | | | | | | Fixes #856, #815
* | Bump version for developmentMatthew Iversen2016-01-291-1/+1
| |
* | Bump version for release14.0.3Matthew Iversen2016-01-291-1/+1
| |
* | Bump for developmentMatthew Iversen2016-01-281-1/+1
| |
* | Bump version for release14.0.2Matthew Iversen2016-01-281-1/+1
|/
* Fix #837Matthew Iversen2016-01-221-1/+2
| | | | Normalize case for prefix paths before checking them
* Merge pull request #843 from Gnouc/developMatt Iversen2016-01-221-14/+14
|\ | | | | Silent `unset -f` error in zsh
| * Silent `unset -f` error in zshLE Manh Cuong2016-01-201-14/+14
| |
* | Bump for developmentDonald Stufft2016-01-211-1/+1
| |
* | Bump for releaseDonald Stufft2016-01-211-1/+1
| |
* | Default to trueDonald Stufft2016-01-211-0/+1
|/
* Bump version for developmentDonald Stufft2016-01-191-1/+1
|
* bump version for releaseDonald Stufft2016-01-191-1/+1
|
* Merge pull request #830 from kankri/developDonald Stufft2016-01-191-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 Kankkunen2015-12-091-1/+14
| |
* | Make the --no-(pip|setuptools|wheel) options independentDonald Stufft2016-01-191-6/+12
| |
* | Try to download the latest versions of preinstalled packagesDonald Stufft2016-01-191-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.pyMatt Iversen2016-01-201-4/+4
| |
* | Apply in virtualenv.pywinbracketsMatthew Iversen2016-01-191-5/+6
| |
* | Add bat changes to virtualenv.pyMatthew Iversen2016-01-191-7/+9
| |
* | Homogenize test syntax, add explanation of itMatthew Iversen2016-01-181-13/+14
|/
* Flatten logic of fix_lib64Matt Iversen2015-10-221-24/+26
|
* Simplify sys.path removal logic, use short form os.path.joinMatt Iversen2015-10-201-9/+5
|
* Remove file's directory from sys.path ASAPMatthew Iversen2015-10-181-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 linesMatt Iversen2015-10-091-155/+8
| | | | Since 3.3 development is finished, we no longer need these.
* Workaround to fix issue 802Samuel Villamonte2015-10-011-1/+2
| | | | | | Allows pip to ignore user installs when there's a pip.conf with: [install] user = yes
* Correct dc11925Matthew Iversen2015-09-211-1/+1
|
* Correct look of fish promptMatthew Iversen2015-09-211-15/+15
|
* Add pydoc function for fishMatthew Iversen2015-09-211-16/+16
| | | | Correct pydoc function for sh
* Apply activate script changesMatthew Iversen2015-09-211-28/+26
|
* Merge pull request #472 from pmakowski/patch-1Matt Iversen2015-09-211-11/+1
|\ | | | | Remove mandriva/mageia multiarch workaround, no longer needed
| * Update virtualenv.pyPhilippe Makowski2013-09-301-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_configMatthew Iversen2015-09-211-1/+1
| | | | | | | | Hopefully clear up usage of path_locations in pip
* | Use portable syntax for `pydoc` functionMatthew Iversen2015-09-211-13/+13
| | | | | | | | | | Make sure a pydoc alias isn't present to allow such function to be defined
* | Remove legacy aspen workaroundMatthew Iversen2015-09-201-14/+13
| |
* | Apply virtualenv_embedded changes in virtualenv.pyMatthew Iversen2015-09-201-29/+29
| |
* | Restore !$ restoration from #799Matthew Iversen2015-09-201-27/+29
| |
* | Fix activate.fishMatthew Iversen2015-09-201-15/+13
| | | | | | | | | | | | - Re-use old variable names - Requote to fix param expansion problems - Use traditional prompt look
* | Apply #799 in virtualenv.py, note in changelogMatthew Iversen2015-09-201-13/+15
| |
* | Changelog / apply change in virtualenv.py for #724Matthew Iversen2015-09-191-13/+13
| |