From f374edbeee469a9e9c34a1a877c6a353c7078473 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Fri, 15 Oct 2021 09:55:50 +0200 Subject: [PATCH] SCons: Increase min Python version to 3.6 Current SCons 4.2.0 still supports Python 3.5 but deprecated it, and support will be removed in the next release. It's also become needlessly restrictive to prevent ourselves from using Python 3.6 f-Strings, so it's time to up the requirement. --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index b539dc59b7..4f577c1cbe 100644 --- a/SConstruct +++ b/SConstruct @@ -1,7 +1,7 @@ #!/usr/bin/env python EnsureSConsVersion(3, 0, 0) -EnsurePythonVersion(3, 5) +EnsurePythonVersion(3, 6) # System import atexit