> On 15 Oct 2019, at 06:37, Glenn Linderman <v+pyt...@g.nevcal.com> wrote: > >> I look forward to using Python 3.8.0. >> >> However, having installed it, I then needed to install brotli, so I ran pip >> install brotli, and that worked, but I was very surprised to get told: >> >> You are using pip version 18.1, however version 19.3 is available. >> You should consider upgrading via the 'python -m pip install --upgrade pip' >> command. >> >> The upgrade worked, but why would the newest, just-released version of >> Python not include the newest version of pip? >> >> Glenn
The reason why ensurepip is complaining on 3.8 (and it is) is that pip 19.3 was released on the same day as 3.8.0. Like any other part of CPython, it takes a while to stabilize ensurepip and I wouldn't update it for 3.8.0 at any point after RC1 was released unless it fixed a critical bug. Admittedly, it is a bit surprising to say the least to have pip outdated from Day 1. However, keep in mind that pip is a relatively fast-moving external project and it was a matter of time for ensurepip to go out of date. In fact, it's pretty much guaranteed to happen sooner or later. I wouldn't worry about it. - Ł
signature.asc
Description: Message signed with OpenPGP
_______________________________________________ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an email to python-dev-le...@python.org https://mail.python.org/mailman3/lists/python-dev.python.org/ Message archived at https://mail.python.org/archives/list/python-dev@python.org/message/LXE6OM4JAAKMNZQA7WTP3GYEXCRUBUWU/ Code of Conduct: http://python.org/psf/codeofconduct/