diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2021-10-15 09:55:50 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2021-10-15 09:55:57 +0200 |
commit | f374edbeee469a9e9c34a1a877c6a353c7078473 (patch) | |
tree | 4eef053749ab5cf821c3e72607251a811d5d44f6 | |
parent | 027d1f15519c160d21e935e2df0f5058b98b089e (diff) |
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.
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
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 |