浏览代码

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.
Rémi Verschelde 4 年之前
父节点
当前提交
f374edbeee
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      SConstruct

+ 1 - 1
SConstruct

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