From 51b8abe0ba5ea2cf0ba882faa7e3e36c273db4c5 Mon Sep 17 00:00:00 2001 From: Chad Versace Date: Fri, 9 Dec 2022 09:41:30 -0800 Subject: [PATCH] docs: Lower Python requirement to 3.6 Issue 7716 bumped the Python requirement from 3.6 to 3.7 for two reasons. They are now non-issues. - Usage of f-strings. But f-strings are a 3.6 feature. - Usage of `from __future__ import annotations`. But the previous commit removes that usage. See: https://gitlab.freedesktop.org/mesa/mesa/-/issues/7716 See: 5cf862fbb9 ("docs: update Python requirement to 3.7") Acked-by: Eric Engestrom Part-of: --- docs/install.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/install.rst b/docs/install.rst index 0c3b0d17c0b..13964ee3395 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -35,7 +35,7 @@ you're willing to maintain support for other compiler get in touch. Third party/extra tools. ^^^^^^^^^^^^^^^^^^^^^^^^ -- `Python `__ - Python 3.7 or newer is required. +- `Python `__ - Python 3.6 or newer is required. - `Python Mako module `__ - Python Mako module is required. Version 0.8.0 or later should work. - Lex / Yacc - for building the Mesa IR and GLSL compiler.