[issue20570] Bundle pip 1.5.3 in Python 3.4rc2

2014-02-22 Thread Larry Hastings

Larry Hastings added the comment:

My understanding is this is now done.  If it isn't please reopen.

--
resolution:  - fixed
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue20570
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue20570] Bundle pip 1.5.3 in Python 3.4rc2

2014-02-20 Thread Donald Stufft

Donald Stufft added the comment:

I created issue20713

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue20570
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue20570] Bundle pip 1.5.3 in Python 3.4rc2

2014-02-19 Thread Donald Stufft

Donald Stufft added the comment:

Just a FYI I'm going to be cutting this release sometime in the next 6-12 hours 
and I'll commit it to the CPython repository and make the cherry-pick request.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue20570
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue20570] Bundle pip 1.5.3 in Python 3.4rc2

2014-02-17 Thread Larry Hastings

Larry Hastings added the comment:

When you land this fix, please create the separate 3.4 cherry-pick issue.  
Those issues are helping me a lot with keeping track of everything.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue20570
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue20570] Bundle pip 1.5.3 in Python 3.4rc2

2014-02-16 Thread Jeroen Ruigrok van der Werven

Jeroen Ruigrok van der Werven added the comment:

Just to confirm that I, indeed, did not run into problems any more with RC1 
trying to upgrade setuptools.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue20570
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue20570] Bundle pip 1.5.3 in Python 3.4rc2

2014-02-16 Thread Nick Coghlan

Nick Coghlan added the comment:

Donald, since you haven't been through an RC period before - just a reminder 
that Larry is going to need time to cherry pick the update into the release 
clone before rc2 on the 23rd.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue20570
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue20570] Bundle pip 1.5.3 in Python 3.4rc2

2014-02-16 Thread Donald Stufft

Donald Stufft added the comment:

Yea, I'll get it done. Was planning on doing it this weekend but I had a 
medical issue. I'll see about getting all the things get done asap.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue20570
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue20570] Bundle pip 1.5.3 in Python 3.4rc2

2014-02-16 Thread Donald Stufft

Donald Stufft added the comment:

I put out the email that I'll be rolling 1.5.3 tues/weds of next week (so 18th 
or 19th). Hopefully that's a reasonable time schedule.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue20570
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue20570] Bundle pip 1.5.3 in Python 3.4rc2

2014-02-15 Thread Nick Coghlan

Changes by Nick Coghlan ncogh...@gmail.com:


--
priority: deferred blocker - release blocker

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue20570
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue20570] Bundle pip 1.5.3 in Python 3.4rc2

2014-02-09 Thread Jeroen Ruigrok van der Werven

Jeroen Ruigrok van der Werven added the comment:

Nick et al,

currently trying b3 and using the bundled pip (1.5.2) to update the bundled 
setuptools from 2.1 to 2.2 on Windows 7 and I get the following. Any idea if 
this is still an issue with the newer versions (and thus might be relevant to 
this case)?

F:\Python34Scripts\pip3.4.exe install -U setuptools
Downloading/unpacking setuptools from 
https://pypi.python.org/packages/3.4/s/setuptools/setuptools-2.2-py2.py3-none-any.whl#md5=3b7d84f496aed8c07b91efba4aa197a4

Cleaning up...
Exception:
Traceback (most recent call last):
  File F:\Python34\lib\site-packages\pip\basecommand.py, line 122, in main
status = self.run(options, args)
  File F:\Python34\lib\site-packages\pip\commands\install.py, line 274, in run
requirement_set.prepare_files(finder, force_root_egg_info=self.bundle, 
bundle=self.bundle)
  File F:\Python34\lib\site-packages\pip\req.py, line 1206, in prepare_files
for subreq in dist.requires(req_to_install.extras):
  File F:\Python34\lib\site-packages\pip\_vendor\pkg_resources.py, line 2232, 
in requires
dm = self._dep_map
  File F:\Python34\lib\site-packages\pip\_vendor\pkg_resources.py, line 2423, 
in _dep_map
self.__dep_map = self._compute_dependencies()
  File F:\Python34\lib\site-packages\pip\_vendor\pkg_resources.py, line 2445, 
in _compute_dependencies
for req in self._parsed_pkg_info.get_all('Requires-Dist') or []:
  File F:\Python34\lib\site-packages\pip\_vendor\pkg_resources.py, line 2415, 
in _parsed_pkg_info
self._pkg_info = Parser().parsestr(self.get_metadata(self.PKG_INFO))
  File F:\Python34\lib\email\parser.py, line 70, in parsestr
return self.parse(StringIO(text), headersonly=headersonly)
  File F:\Python34\lib\email\parser.py, line 60, in parse
return feedparser.close()
  File F:\Python34\lib\email\feedparser.py, line 170, in close
self._call_parse()
  File F:\Python34\lib\email\feedparser.py, line 163, in _call_parse
self._parse()
  File F:\Python34\lib\email\feedparser.py, line 449, in _parsegen
self._cur.set_payload(EMPTYSTRING.join(lines))
  File F:\Python34\lib\email\message.py, line 311, in set_payload
 payload) from None
TypeError: charset argument must be specified when non-ASCII characters are 
used in the payload

Storing debug log for failure in C:\Users\asmodai\pip\pip.log

--
nosy: +asmodai

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue20570
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue20570] Bundle pip 1.5.3 in Python 3.4rc2

2014-02-09 Thread Nick Coghlan

Nick Coghlan added the comment:

I believe that may be an actual bug in the 3.4b3 email module (especially
if pip 1.5.2 behaves itself in 3.3). If you can reproduce the error with
the default branch (or rc1 when it's available), please file a new issue
(with me, Larry and R. David Murray on the nosy list). If it doesn't happen
with rc1,then I would assume it was caused by one of the 3.4 email issues
that David fixed recently.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue20570
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue20570] Bundle pip 1.5.3 in Python 3.4rc2

2014-02-09 Thread Jeroen Ruigrok van der Werven

Jeroen Ruigrok van der Werven added the comment:

Yes, looks like it is just the email module:

F:\Python33Scripts\pip3.3.exe install -U setuptools
Downloading/unpacking setuptools from 
https://pypi.python.org/packages/3.4/s/setuptools/setuptools-2.2-py2.py3-none-any.whl#md5=3b7d84f496aed8c07b91efba4aa197a4

Installing collected packages: setuptools
  Found existing installation: setuptools 2.1
Uninstalling setuptools:
  Successfully uninstalled setuptools
Successfully installed setuptools
Cleaning up...

I'll check rc1 when it's released by Larry and file as needed. Thanks for 
verifying.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue20570
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue20570] Bundle pip 1.5.3 in Python 3.4rc2

2014-02-09 Thread R. David Murray

R. David Murray added the comment:

Yes, that issue was fixed on Friday.  It is *possible* the fix still has a 
problem though, since the code in question is still different from that in 
3.3.3.

--
nosy: +r.david.murray

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue20570
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue20570] Bundle pip 1.5.3 in Python 3.4rc2

2014-02-08 Thread Nick Coghlan

Nick Coghlan added the comment:

Oops - 0.15.3 was the version of Beaker we just released, so my brain keeps 
confusing the two numbers :)

--
title: Bundle pip 0.15.3 in Python 3.4rc2 - Bundle pip 1.5.3 in Python 3.4rc2

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue20570
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com