Curtis Doty added the comment:
diff --git a/Lib/venv/__init__.py b/Lib/venv/__init__.py
index 716129d139..757e8de4e7 100644
--- a/Lib/venv/__init__.py
+++ b/Lib/venv/__init__.py
@@ -243,6 +243,9 @@ class EnvBuilder:
cmd = [context.env_exe, '-Im', 'ensurep
Curtis Doty added the comment:
$ pip3.6 list
pip (9.0.1)
setuptools (32.2.0)
wheel (0.29.0)
$ pip3.6 install --upgrade pip setuptools wheel
$ pip3.6 list
pip (9.0.1)
setuptools (36.0.1)
wheel (0.29.0)
$ python3 -m venv foo
$ source foo/bin/activate
(foo) $ pip list
pip (9.0.1)
setuptools
New submission from Curtis Doty:
I've already updated system setuptools 36.0.1 with `pip3 install --upgrade pip
setuptools wheel` but when I create a new enviro with `python3 -m venv foo` it
will have an old/outdated setuptools 28.8.0 from embedded ensurepip.
Why? I think it should in
Changes by Curtis Doty :
--
nosy: +GreenKey
___
Python tracker
<http://bugs.python.org/issue20939>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Curtis Doty :
--
nosy: +GreenKey
___
Python tracker
<http://bugs.python.org/issue20896>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Curtis Doty:
I first stumbled across this bug attempting to install use pip's cool editable
mode:
$ pip install -e git+git://github.com/appliedsec/pygeoip.git#egg=pygeoip
Obtaining pygeoip from git+git://github.com/appliedsec/pygeoip.git#egg=pygeoip
Clonin