summaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2022-11-29 08:05:10 -0800
committerWilliam Deegan <bill@baddogconsulting.com>2022-11-29 08:05:10 -0800
commit1bc9baa5c769c2b7185001f979ee3a9eca99259c (patch)
tree18d626ccb8a8a024f1e80a0260a6b2eb554fc1c6 /testing
parent6704d0fa67a2d8d6181fb0512010bf9bd0bb7623 (diff)
downloadscons-git-1bc9baa5c769c2b7185001f979ee3a9eca99259c.tar.gz
[ci skip] Fix remaining sider complaints
Diffstat (limited to 'testing')
-rw-r--r--testing/framework/TestSCons.py10
1 files changed, 2 insertions, 8 deletions
diff --git a/testing/framework/TestSCons.py b/testing/framework/TestSCons.py
index eb907b8f8..dae6b0e2e 100644
--- a/testing/framework/TestSCons.py
+++ b/testing/framework/TestSCons.py
@@ -44,7 +44,7 @@ import zipfile
from collections import namedtuple
from TestCommon import *
-from TestCommon import __all__
+from TestCommon import __all__, _python_
from SCons.Util import get_hash_format, get_current_hash_algorithm_used
from TestCmd import Popen
@@ -62,13 +62,7 @@ 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
-# In the checked-in source, the value of SConsVersion in the following
-# line must remain "__ VERSION __" (without the spaces) so the built
-# version in build/testing/framework/TestSCons.py contains the actual version
-# string of the packages that have been built.
-SConsVersion = '__VERSION__'
-if SConsVersion == f"__VERSION__":
- SConsVersion = default_version
+SConsVersion = default_version
__all__.extend([
'TestSCons',