Edit: would using python3 in a container make sense where the distribution only ships legacy python?
There is the possibility of Python 3.x being default in RHEL 8 ( https://fedoraproject.org/wiki/Changes/Python_3_as_Default ) but right now RHEL 8 isn't released and there's no date for it being released. And even once it is released, it will be more years before big enterprises really start switching
TLDR ignore python 2.7 and alienate RHEL customers
OS scripting runtimes are there for the OS to use, in its system software and services. Such runtimes are not there for anyone else to use. They’re implementation details of the OS.
This is the reason that certain platform-bytecode libraries get packaged into OS packages, while most don’t. Those packages are also there strictly for the OS itself to use, with versioning allowing other OS packages to rely on them. If you’re not writing OS software (e.g. something that runs under init(8), speaks D-Bus, is part of minimal installs, etc.) then you shouldn’t be relying on those packages.
Consider the fact that a lot of “application software” OS packages—packages shipped by the distro!—actually vendor their own runtime and libraries. They do this because they have separate needs from the super-stable-but-minimal runtime provided by the OS.
If not even the distros themselves think it’s worthwhile to rely on the OS runtime for everything, you shouldn’t either.
Unless your software’s relationship with a daemon or library is “I expect that it was already here when I got here, because that exact ABI version of it is part of the definition of the platform we target”—just vendor the dang deps.
Yes, they become your responsibility to audit. The distro was never going to do that job for any software not required to run itself anyway.
What? You can install Python 3.6 from EPEL[1], takes 5 seconds.
(Google, for one, still uses 2. As does Dropbox. And both companies had Guido Van Rossum working for them at some point).
This is why banks still use COBOL and Fortran.
Python core team will eventually cease support 2.x support at some point[1], so the ones who uses 2.x will be on their own. Will the cost of self-patching python 2.x lower than rewrite the software application you developed on 2.x? Well, that's on them to decide. After 2.x being officially deprecated, what's the point of having a Async HTTP/2 client working (mostly back-porting features that's already on 3k) on 2.x?
Short answer is: because Python 3 already benefits from a better, more complete client: aioh2 (https://github.com/decentfox/aioh2) that works with Python's asyncio.
th2c is mostly intended for Tornado backends, trying to keep a similar interface and compatibility with Request / Response objects.
It was initially developed in order to be able to communicate with APNS from a python 2.7 environment.
Is this still the latest?
https://mail.python.org/pipermail/python-dev/2018-March/1523...
I'll ask the obvious question: why not Python 3?
Also, this is mostly intended for Tornado backends, offering compatibility with Tornado's request / response objects.