Awesome
DEPRECATED
Use the builds from https://github.com/deadsnakes/nightly instead
python3.10
a repackage of cpython master on 2019-07-17 with the minor version bumped to 3.10
tl;dr ppa
this is available as an ubuntu PPA
sudo add-apt-repository ppa:asottile/python3.10
sudo apt-get update
sudo apt-get install python3.10-dev
why do this?
there's a significant amount of code which uses sys.version[:3]
which will
incorrectly report this as version 3.1
-- let's fix this long before it's a
problem!
related projects
check out flake8-2020 for a flake8 plugin which checks for common related mistakes
my suggestion
python3.10 breaks less code than python4.0