[Python-Dev] Re: How do I install Python 3.8.0 on Linux (not possible? no one is doing this?)

2019-10-15 Thread Chris Angelico
On Wed, Oct 16, 2019 at 10:51 AM wrote: > > I cannot get Python 3.8.0 installed on Linux ( RHEL 8 / CentOS 8). > > It's not available in any package repo. When I try to build from source, > there are dependencies missing (3), that I cannot find anywhere. > > More info here: (I did not want to wr

[Python-Dev] How do I install Python 3.8.0 on Linux (not possible? no one is doing this?)

2019-10-15 Thread devlocalca
I cannot get Python 3.8.0 installed on Linux ( RHEL 8 / CentOS 8). It's not available in any package repo. When I try to build from source, there are dependencies missing (3), that I cannot find anywhere. More info here: (I did not want to write this up twice) https://www.reddit.com/r/Python/c

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

2019-10-15 Thread Steve Dower
On 15Oct2019 1143, MRAB wrote: On 2019-10-15 19:03, MRAB wrote: I've installed pywin32 on Python 3.8, but when I try to import win32clipboard it says it can't find it: Python 3.8.0 (tags/v3.8.0:fa919fd, Oct 14 2019, 19:37:50) [MSC v.1916 64 bit (AMD64)] on win32 Type "help", "copyright", "credi

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

2019-10-15 Thread Ned Deily
Python 3.7.5 is now available, the next maintenance release of Python 3.7. You can find the release files, a link to the changelog, and more information here: https://www.python.org/downloads/release/python-375/ Note that the next feature release of Python 3, Python 3.8.0, is also now avai

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

2019-10-15 Thread MRAB
On 2019-10-15 19:03, MRAB wrote: On 2019-10-14 21:23, Ł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*. [snip] I've installed pywin32 on Python 3.8, but when I try to import win32clipb

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

2019-10-15 Thread Glenn Linderman
On 10/15/2019 11:03 AM, MRAB wrote: On 2019-10-14 21:23, Ł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*. [snip] I've installed pywin32 on Python 3.8, but when I try to import win32

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

2019-10-15 Thread MRAB
On 2019-10-14 21:23, Ł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*. [snip] I've installed pywin32 on Python 3.8, but when I try to import win32clipboard it says it can't find it:

[Python-Dev] Re: How official binaries are built?

2019-10-15 Thread Inada Naoki
On Tue, Oct 15, 2019 at 10:57 PM Victor Stinner wrote: > > Hi Inada-san, > > You can query the sysconfig module to check how Python has been built. Thank you for pointing it out. It seems official macOS binary doesn't use --enable-optimizations and --with-lto options... Python 3.8.0 (v3.8.0:fa9

[Python-Dev] Re: How official binaries are built?

2019-10-15 Thread Victor Stinner
Hi Inada-san, You can query the sysconfig module to check how Python has been built. Example: pyvstinner@apu$ python3 Python 3.7.4 (default, Jul 9 2019, 16:32:37) [GCC 9.1.1 20190503 (Red Hat 9.1.1-1)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import sy

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

2019-10-15 Thread Łukasz Langa
> On 15 Oct 2019, at 06:37, Glenn Linderman 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, howev

[Python-Dev] Re: How official binaries are built?

2019-10-15 Thread Ned Deily
On Oct 15, 2019, at 04:54, Inada Naoki wrote: > I want Homebrew uses `--enable-optimizations` and `--with-lto` option > for building Python. But maintainer said: > >> Given this is not a default option, probably not, unless it is done in >> upstream (“official”) binaries. > > https://github.co

[Python-Dev] How official binaries are built?

2019-10-15 Thread Inada Naoki
Hi, all. I want Homebrew uses `--enable-optimizations` and `--with-lto` option for building Python. But maintainer said: > Given this is not a default option, probably not, unless it is done in > upstream (“official”) binaries. https://github.com/Homebrew/homebrew-core/pull/45337 Are these op