diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2020-09-02 16:17:21 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2020-09-02 16:29:39 +0000 |
commit | bfb8d25deb794e9506775caa023bbf278dcf17e1 (patch) | |
tree | cf98e48919d46e47d4eabc9e3250bfa820a0310f /docs | |
parent | 56ebd5c7407482883765e00c0c90111b6947e700 (diff) | |
download | meson-bfb8d25deb794e9506775caa023bbf278dcf17e1.zip meson-bfb8d25deb794e9506775caa023bbf278dcf17e1.tar.gz meson-bfb8d25deb794e9506775caa023bbf278dcf17e1.tar.bz2 |
docs: Add a snippet for python 3.5 deprecation [skip ci]
Diffstat (limited to 'docs')
-rw-r--r-- | docs/markdown/snippets/python35-eol.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/docs/markdown/snippets/python35-eol.md b/docs/markdown/snippets/python35-eol.md new file mode 100644 index 0000000..bd9a074 --- /dev/null +++ b/docs/markdown/snippets/python35-eol.md @@ -0,0 +1,15 @@ +## Python 3.5 support will be dropped in the next release + +The final [Python 3.5 release was 3.5.10 in September](https://www.python.org/dev/peps/pep-0478/#id4). +This release series is now End-of-Life (EOL). The only LTS distribution that +still only ships Python 3.5 is Ubuntu 16.04, which will be +[EOL in April 2021](https://ubuntu.com/about/release-cycle). + +Python 3.6 has numerous features that we find useful such as improved support +for the `typing` module, f-string support, and better integration with the +`pathlib` module. + +As a result, we will begin requiring Python 3.6 or newer in Meson 0.57, which +is the next release. Starting with Meson 0.56, we now print a `NOTICE:` when +a `meson` command is run on Python 3.5 to inform users about this. This notice +has also been backported into the 0.55.2 stable release. |