Yamashita, Yuu
e67dd07f1b
Merge pull request #255 from pyenv/workaround-get-pip-url-py26-py32
...
Use custom get-pip URL based on the target version (pyenv/pyenv#1127 )
2018-03-29 12:20:50 +09:00
Yamashita, Yuu
077edc3b4d
Update warning message on presence of PIP_VERSION
2018-03-29 03:17:49 +00:00
Yamashita, Yuu
0b24ff557e
I should have used custom GET_PIP_URL for 3.3
2018-03-29 01:07:48 +00:00
Yamashita, Yuu
6a3172ff47
Unlike python-build, DEFINITION_PATH isn't available within pyenv-virtualenv
2018-03-29 01:01:16 +00:00
Yamashita, Yuu
894d4af8a3
Show some warning on the use of PIP_VERSION
2018-03-29 00:59:01 +00:00
Yamashita, Yuu
980159f221
Use custom get-pip URL based on the target version ( pyenv/pyenv#1127 )
2018-03-29 00:39:30 +00:00
Yamashita, Yuu
051cd5880c
Merge pull request #254 from pyenv/pip-version-workaround2
...
Refactoring around `GET_PIP_URL`
2018-03-22 11:04:41 +09:00
Yamashita, Yuu
cfb8691fc5
Refactoring
...
Manage `GET_PIP_URL` value at single place for readability.
2018-03-22 01:36:48 +00:00
Yamashita, Yuu
74ff2ce7af
Merge pull request #253 from pyenv/pip-version-workaround
...
Unset `PIP_VERSION` before invoking `get-pip.py` as a workaround for `invalid truth value` error
2018-03-20 13:24:23 +09:00
Yamashita, Yuu
b1d0d72343
Unset PIP_VERSION before invoking get-pip.py as a workaround for invalid truth value error ( pyenv/pyenv-installer#70 )
2018-03-20 04:04:58 +00:00
Yamashita, Yuu
219a527a78
Merge pull request #251 from teake/conda/sourcing
...
Source conda 4.4.4 shell files
2018-03-09 10:16:55 +09:00
Teake Nutma
393bcc36b8
Source conda 4.4.4 shell files
...
Conda 4.4.4 (https://github.com/conda/conda/releases/tag/4.4.0 )
made some changes on how to set up conda in the shell.
This commit addresses these.
This fixes some of the discussion in #178 .
2018-03-08 10:08:53 +01:00
Yamashita, Yuu
5419dc7320
Merge pull request #244 from adamscharf/patch-1
...
Move pyenv note to its own line
2017-12-07 10:00:51 +09:00
Adam Scharf
94b2c9d5d6
Move pyenv note to its own line
2017-12-06 10:35:35 -05:00
Piotr Grzesik
a0b17033fc
Add other way of deleting existing virtualenv
2017-10-16 22:08:34 +02:00
Yamashita, Yuu
e690650fd6
Merge pull request #237 from honza/fish-virtualenv-init
...
Add a note about virtualenv-init for fish users
2017-09-27 11:05:28 +09:00
Honza Pokorny
74bc08b7dc
Add a note about virtualenv-init for fish users
2017-09-26 08:31:48 -03:00
Yamashita, Yuu
a22521e946
Fix wrong path to pyvenv.cfg ( fixes #209 )
2017-09-13 01:52:13 +00:00
Yamashita, Yuu
b4eb09d1dd
Merge pull request #232 from logikone/fix-force-option
...
evaluate force flag before testing if venv exists
2017-09-11 10:19:52 +09:00
Chris Larsen
52cb0b1086
evaluate force flag before testing if venv exists
...
fixes #161 , fixes #187
2017-09-08 15:27:49 -06:00
Yamashita, Yuu
1e66783091
Merge pull request #231 from scop/spelling
...
Spelling fix
2017-09-05 16:54:33 +09:00
Ville Skyttä
b8dd4fcb53
Spelling fix
2017-09-05 10:12:45 +03:00
Yamashita, Yuu
4c8da67f02
v1.1.1
v1.1.1
2017-08-24 00:30:36 +00:00
Yamashita, Yuu
c2ba4952ff
Merge pull request #230 from pyenv/gen-pydoc-executable
...
Generate `pydoc` executable after creating new virtualenv
2017-08-23 20:17:57 +09:00
Yamashita, Yuu
927914b25f
Make sure pydoc executable exists after creating virtualenv
2017-08-23 11:14:42 +00:00
Yamashita, Yuu
e339fde2f3
Create virtualenv's bin directory explicitly to avoid CI failures
2017-08-22 23:04:39 +00:00
Yamashita, Yuu
e83a1f12c2
Generate pydoc executable after creating new virtualenv ( fixes #197 , pyenv/pyenv#963 )
2017-08-22 23:00:41 +00:00
Yamashita, Yuu
2727087757
Merge pull request #224 from cpaulik/support-conda-prefix
...
Set CONDA_PREFIX to make is useable in conda activate/deactivate scripts
2017-07-21 10:01:08 +09:00
Christoph Paulik
f64c8ed0dd
Set CONDA_PREFIX to make is useable in conda activate/deactivate scripts.
2017-07-20 15:53:55 +02:00
Yamashita, Yuu
e4d2c367cc
v1.1.0
v1.1.0
2017-07-03 00:39:50 +00:00
Yamashita, Yuu
c67762742a
Merge pull request #220 from jcrben/patch-1
...
Be more explicit about `.python-version` file
2017-06-21 16:43:44 +09:00
Ben Creasy
1593b0e6b0
Be more explicit about .python-version file
...
When I came back to this after a few months - despite setting it up properly previously - I was a bit confused since I'm so used to setting an actual Python version in `.python-version` files. Explain exactly how the file should look.
2017-06-20 23:44:53 -07:00
Drummond Ogilvie
862be21a32
fish: use "set -gx" instead of "setenv" ( #218 )
...
Use `set -gx` instead of `setenv` for fish shell.
Fix test "activate if the first virtualenv is a virtualenv": it was asserting
the output was of bash form, but not specifying that in the test — it now does.
Fixes https://github.com/pyenv/pyenv-virtualenv/issues/216 .
2017-06-08 21:52:57 +02:00
Yamashita, Yuu
252d6763f9
Update build status link target
2017-03-06 04:43:41 +00:00
Yamashita, Yuu
832244fe13
Update project URL to https://github.com/pyenv/pyenv-virtualenv
2017-03-06 04:16:48 +00:00
Yamashita, Yuu
61a5c7f807
Merge pull request #201 from yamotonalds/fix-typo
...
Fix typo
2017-02-18 09:21:12 -08:00
yamotonalds
304dff741f
Fix typo
2017-02-18 22:06:05 +09:00
Yamashita, Yuu
53dd8bcf46
Merge pull request #198 from massongit/develop
...
Fix the installation command of README.md
2017-01-31 12:51:01 +09:00
massongit
f9b1814b82
Fix the installation command of README.md
2017-01-31 12:38:21 +09:00
Yamashita, Yuu
a3bc42cb93
v1.0.0 ( yyuu/pyenv#520 )
v1.0.0
2016-08-15 08:45:05 +00:00
Yamashita, Yuu
0fd8a161e6
v20160716
v20160716
2016-07-16 07:00:03 +00:00
Yamashita, Yuu
704f08f866
Merge pull request #185 from yyuu/python-m-venv
...
Use `-m venv` instead of `pyvenv` executable (fixes #184 )
2016-07-16 15:53:01 +09:00
Yamashita, Yuu
8c7dd01954
Replaced pyvenv by -m venv
2016-07-16 06:50:50 +00:00
Yamashita, Yuu
99a90ab774
Fix still broken tests
2016-07-16 06:43:47 +00:00
Yamashita, Yuu
187156d600
Use python -m venv instead on pyvenv in tests
2016-07-16 06:31:30 +00:00
Yamashita, Yuu
7dc9f78589
sed -e s/pyvenv/venv/g README.md [ci skip]
2016-07-16 05:49:41 +00:00
Yamashita, Yuu
24b494a858
Use -m venv instead of pyvenv executable ( fixes #184 )
2016-07-16 05:46:43 +00:00
Yamashita, Yuu
1488c3ed65
Merge pull request #176 from yyuu/fish-dot-to-source
...
Use `source` in favor of `.` (fixes #175 )
2016-05-30 09:17:17 +09:00
Yamashita, Yuu
5c2d7dc291
Use source in favor of . ( fixes #175 )
...
* https://github.com/yyuu/pyenv/pull/615
* https://github.com/fish-shell/fish-shell/issues/310
2016-05-30 00:13:49 +00:00
Yamashita, Yuu
f58bdb5cd5
Merge pull request #174 from yyuu/conda-activate-d
...
Source conda package activate/deactivat scripts if exist
2016-05-25 10:02:12 +09:00