diff options
author | William Deegan <bill@baddogconsulting.com> | 2024-11-16 23:50:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-16 23:50:41 (GMT) |
commit | 9f387ef05560015dd3d9efbd65285e1bac74c132 (patch) | |
tree | ccc931472350632c67108a23520a320db0193191 /testing | |
parent | 7617dcc1f4fff41fd86faf01a41554038f84e366 (diff) | |
parent | 37530ad7d18bbe192da134808194cdca1941dd74 (diff) | |
download | SCons-9f387ef05560015dd3d9efbd65285e1bac74c132.zip SCons-9f387ef05560015dd3d9efbd65285e1bac74c132.tar.gz SCons-9f387ef05560015dd3d9efbd65285e1bac74c132.tar.bz2 |
Merge pull request #4642 from Repiteo/remove-python-3.6
Remove Python 3.6 support
Diffstat (limited to 'testing')
-rw-r--r-- | testing/framework/TestSCons.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/framework/TestSCons.py b/testing/framework/TestSCons.py index 806b596..51aa7cf 100644 --- a/testing/framework/TestSCons.py +++ b/testing/framework/TestSCons.py @@ -60,7 +60,7 @@ from TestCmd import PIPE default_version = '4.8.2ayyyymmdd' # TODO: these need to be hand-edited when there are changes -python_version_unsupported = (3, 6, 0) +python_version_unsupported = (3, 7, 0) python_version_deprecated = (3, 7, 0) python_version_supported_str = "3.7.0" # str of lowest non-deprecated Python |