aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/snippets
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2022-01-09 14:29:54 -0500
committerJussi Pakkanen <jpakkane@gmail.com>2022-01-10 01:36:46 +0200
commit09f03a8424a5ab45bbf251e5edd6341c6503f8e1 (patch)
treebbacd5799f55dbfd0976cc1eb3bec0f2df5c072e /docs/markdown/snippets
parent43c6860a3a129522886cc99ab93df1e23e4cd51f (diff)
downloadmeson-09f03a8424a5ab45bbf251e5edd6341c6503f8e1.zip
meson-09f03a8424a5ab45bbf251e5edd6341c6503f8e1.tar.gz
meson-09f03a8424a5ab45bbf251e5edd6341c6503f8e1.tar.bz2
add pending deprecation notice for python 3.6
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r--docs/markdown/snippets/about_minimum_python_version.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/markdown/snippets/about_minimum_python_version.md b/docs/markdown/snippets/about_minimum_python_version.md
new file mode 100644
index 0000000..7f7fb0d
--- /dev/null
+++ b/docs/markdown/snippets/about_minimum_python_version.md
@@ -0,0 +1,13 @@
+## Python 3.6 support will be dropped in the next release
+
+The final [Python 3.6 release was 3.6.15 in September](https://www.python.org/dev/peps/pep-0494/#lifespan).
+This release series is now End-of-Life (EOL). The only LTS distribution that
+still ships Python 3.5 as the default Python is Ubuntu 18.04, which has Python
+3.8 available as well.
+
+Python 3.7 has various features that we find useful such as future annotations,
+the importlib.resources module, and dataclasses.
+
+As a result, we will begin requiring Python 3.7 or newer in Meson 0.62, which
+is the next release. Starting with Meson 0.61, we now print a `NOTICE:` when
+a `meson` command is run on Python 3.6 to inform users about this.