diff options
author | William Deegan <bill@baddogconsulting.com> | 2024-05-10 21:54:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-10 21:54:01 (GMT) |
commit | 671353f42a973901641bed4136dc1967dc70f320 (patch) | |
tree | 31d3ed5480cbef37c800a378be4bc4fba1f2d48f /testing | |
parent | 45a9e2514a31d5c6f85d9dcc4b2ea6ce8c37d43a (diff) | |
parent | 16523d08772da58ce829455226300e83998ba2ec (diff) | |
download | SCons-671353f42a973901641bed4136dc1967dc70f320.zip SCons-671353f42a973901641bed4136dc1967dc70f320.tar.gz SCons-671353f42a973901641bed4136dc1967dc70f320.tar.bz2 |
Merge pull request #4519 from mwichmann/py36-depr
Deprecate Python 3.6 support.
Diffstat (limited to 'testing')
-rw-r--r-- | testing/framework/TestSCons.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/framework/TestSCons.py b/testing/framework/TestSCons.py index e3b88df..2b40a36 100644 --- a/testing/framework/TestSCons.py +++ b/testing/framework/TestSCons.py @@ -59,8 +59,8 @@ default_version = '4.7.1ayyyymmdd' # TODO: these need to be hand-edited when there are changes python_version_unsupported = (3, 6, 0) -python_version_deprecated = (3, 6, 0) -python_version_supported_str = "3.6.0" # str of lowest non-deprecated version +python_version_deprecated = (3, 7, 0) # lowest non-deprecated Python +python_version_supported_str = "3.7.0" # str of lowest non-deprecated Python SConsVersion = default_version @@ -173,7 +173,7 @@ def deprecated_python_version(version=sys.version_info): if deprecated_python_version(): msg = r""" -scons: warning: Support for pre-%s Python version (%s) is deprecated. +scons: warning: Support for Python older than %s is deprecated (%s detected). If this will cause hardship, contact scons-dev@scons.org """ deprecated_python_expr = ( |