From d3b28f23deb2f820c73bd118b0ec02452db50f97 Mon Sep 17 00:00:00 2001 From: Aaron Clarke Date: Fri, 6 Aug 2021 10:17:24 -0700 Subject: [PATCH 1/2] added python version note to the luci script --- tools/luci/build.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/luci/build.py b/tools/luci/build.py index 8e4461e68697f..f7316c9e94c54 100755 --- a/tools/luci/build.py +++ b/tools/luci/build.py @@ -7,6 +7,9 @@ # # Usage: # $ build.py --commit [Engine commit hash] --builder [builder name] +# +# NOTE: This script requires python3.7 to execute and fails to run in python3.9. +# import argparse import os From 7e2c1c78d396c84ef86cc9069f7e9072b87eb8f9 Mon Sep 17 00:00:00 2001 From: Aaron Clarke Date: Thu, 12 Aug 2021 13:25:46 -0700 Subject: [PATCH 2/2] removed note about 3.9 --- tools/luci/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/luci/build.py b/tools/luci/build.py index f7316c9e94c54..5aa1bc7ea711d 100755 --- a/tools/luci/build.py +++ b/tools/luci/build.py @@ -8,7 +8,7 @@ # Usage: # $ build.py --commit [Engine commit hash] --builder [builder name] # -# NOTE: This script requires python3.7 to execute and fails to run in python3.9. +# NOTE: This script requires python3.7 or later. # import argparse