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.
This commit is contained in:
Rémi Verschelde 2021-10-15 09:55:50 +02:00
parent 027d1f1551
commit f374edbeee
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
#!/usr/bin/env python
EnsureSConsVersion(3, 0, 0)
EnsurePythonVersion(3, 5)
EnsurePythonVersion(3, 6)
# System
import atexit