[issue30628] why venv install old pip?

2017-06-14 Thread Curtis Doty
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

[issue30628] why venv install old pip?

2017-06-10 Thread Curtis Doty
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

[issue30628] why venv install old pip?

2017-06-10 Thread Curtis Doty
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

[issue20939] test_geturl of test_urllibnet fails with 'https://www.python.org/' != 'http://www.python.org/'

2014-03-16 Thread Curtis Doty
Changes by Curtis Doty : -- nosy: +GreenKey ___ Python tracker <http://bugs.python.org/issue20939> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20896] test_ssl.test_get_server_certificate() should use PROTOCOL_SSLv23, not PROTOCOL_SSLv3

2014-03-16 Thread Curtis Doty
Changes by Curtis Doty : -- nosy: +GreenKey ___ Python tracker <http://bugs.python.org/issue20896> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19685] open() fails to autodetect utf-8 if LANG=C

2013-11-22 Thread Curtis Doty
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