[Python-Dev] I'm working on the release of Python 3.8.0 right now

2019-10-14 Thread Łukasz Langa
Please hold your breath. Unless you have some last minute blocker, then let me 
know immediately.

- Ł


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/4US26R2TJWKABZC46JDRN24DMCTAVZTU/
Code of Conduct: http://python.org/psf/codeofconduct/


[Python-Dev] Re: [python-committers] [RELEASED] Python 3.5.8rc2 is released

2019-10-14 Thread Victor Stinner
It seems like this security fix has not been merged into the 3.5 branch yet:

"[3.5] bpo-38243, xmlrpc.server: Escape the server_title (GH-16373) (GH-16441)"
https://github.com/python/cpython/pull/16516

Please review it ;-)

Victor

Le sam. 12 oct. 2019 à 14:08, Larry Hastings  a écrit :
>
>
> On behalf of the Python development community, I'm relieved to announce
> the availability of Python 3.5.8rc2.  It's been a month after Python
> 3.5.8rc1, and since then we've added a small amount of new code to fix
> an API-level regression in http client, updated expat to 2.2.8, and
> upgraded the required version of Sphinx from 1.2 to 1.8.  This is enough
> change that I feel a second rc is indicated.  Assuming all is quiet,
> 3.5.8 final should come out in about two weeks.
>
> This new version is a source-only release.
>
> You can find Python 3.5.8rc2 here:
>
>  https://www.python.org/downloads/release/python-358rc2/
>
>
> Hullo from PyCon IE,
>
>
> /arry
> ___
> python-committers mailing list -- python-committ...@python.org
> To unsubscribe send an email to python-committers-le...@python.org
> https://mail.python.org/mailman3/lists/python-committers.python.org/
> Message archived at 
> https://mail.python.org/archives/list/python-committ...@python.org/message/ONUEM4VRQU2OUCABKP4XH7LSMQLFO3XT/
> Code of Conduct: https://www.python.org/psf/codeofconduct/



-- 
Night gathers, and now my watch begins. It shall not end until my death.
___
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/MEWMB6IRJBIS2YCJU535GRARFM6CQB7J/
Code of Conduct: http://python.org/psf/codeofconduct/


[Python-Dev] [RELEASE] Python 3.8.0 is now available

2019-10-14 Thread Łukasz Langa
On behalf of the Python development community and the Python 3.8 release team, 
I’m pleased to announce the availability of Python 3.8.0.

Python 3.8.0 is the newest feature release of the Python language, and it 
contains many new features and optimizations. You can find Python 3.8.0 here:

https://www.python.org/downloads/release/python-380/ 

Most third-party distributors of Python should be making 3.8.0 packages 
available soon.

See the “What’s New in Python 3.8 
” document for more information 
about features included in the 3.8 series. Detailed information about all 
changes made in 3.8.0 can be found in its change log.

Maintenance releases for the 3.8 series will follow at regular bi-monthly 
intervals starting in December of 2019.

We hope you enjoy Python 3.8!

Thanks to all of the many volunteers who help make Python Development and these 
releases possible! Please consider supporting our efforts by volunteering 
yourself or through organization contributions to the Python Software 
Foundation.

https://www.python.org/psf/ 

- Ł


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/I5FA3MOY3QNOUKIDIWVLDRDQ5KSACYOG/
Code of Conduct: http://python.org/psf/codeofconduct/


[Python-Dev] Re: [RELEASE] Python 3.8.0 is now available

2019-10-14 Thread Glenn Linderman

On 10/14/2019 9:26 PM, Glenn Linderman wrote:

On 10/14/2019 1:23 PM, Łukasz Langa wrote:

On behalf of the Python development community and the Python 3.8 release team, 
I’m pleased to announce the availability of Python 3.8.0.

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


Hmm. "worked" above only means "completed without reporting errors".

Excuse the noise, I accidentally ran Python3.6\Scripts\pip.exe.  But now 
running the one from Python3.8 the error message from pip references pip 
version 19.2.3 as the "old version", so it is still true that Python 3.8 
doesn't seem to include the latest pip. But with the numbers being 
closer, I suppose that means that pip had a release after the Python 3.8 
code freeze.


And sadly, I'm too fast at trying to install brotli for 3.8: it 
apparently doesn't have a wheel yet, so tried to compile from source, 
and couldn't find a C compiler on my machine.
___
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/CXEP63YLKKWLCNYASOEHJTRB72LU3Q3U/
Code of Conduct: http://python.org/psf/codeofconduct/


[Python-Dev] Re: [RELEASE] Python 3.8.0 is now available

2019-10-14 Thread Terry Reedy

On 10/15/2019 12:37 AM, Glenn Linderman wrote:

And sadly, I'm too fast at trying to install brotli for 3.8: it 
apparently doesn't have a wheel yet, so tried to compile from source, 
and couldn't find a C compiler on my machine.


System?
https://www.lfd.uci.edu/~gohlke/pythonlibs/ has wheels for Windows for a 
few hundred packages, including brotli. Christoph Gohlke starts trying 
to compile for 3.x at least by the beta stage.


--
Terry Jan Reedy
___
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/BHIOZS5MYRT6WYOV5NOUWAUGWEW3T3QZ/
Code of Conduct: http://python.org/psf/codeofconduct/