File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 11
11
# These values need to be in sync with serverless.yml, where there needs to be a function
12
12
# defined for every handler_runtime combination
13
13
LAMBDA_HANDLERS=(" async-metrics" " sync-metrics" )
14
- RUNTIMES=(" python37 " " python38" " python39" " python310" " python311" )
14
+ RUNTIMES=(" python38" " python39" " python310" " python311" )
15
15
16
16
LOGS_WAIT_SECONDS=20
17
17
@@ -28,13 +28,12 @@ mismatch_found=false
28
28
# [0]: serverless runtime name
29
29
# [1]: python version
30
30
# [2]: random 8-character ID to avoid collisions with other runs
31
- python37=(" python3.7" " 3.7" $( xxd -l 4 -c 4 -p < /dev/random) )
32
31
python38=(" python3.8" " 3.8" $( xxd -l 4 -c 4 -p < /dev/random) )
33
32
python39=(" python3.9" " 3.9" $( xxd -l 4 -c 4 -p < /dev/random) )
34
33
python310=(" python3.10" " 3.10" $( xxd -l 4 -c 4 -p < /dev/random) )
35
34
python311=(" python3.11" " 3.11" $( xxd -l 4 -c 4 -p < /dev/random) )
36
35
37
- PARAMETERS_SETS=(" python37 " " python38" " python39" " python310" " python311" )
36
+ PARAMETERS_SETS=(" python38" " python39" " python310" " python311" )
38
37
39
38
if [ -z " $RUNTIME_PARAM " ]; then
40
39
echo " Python version not specified, running for all python versions."
Original file line number Diff line number Diff line change 9
9
10
10
LAYER_DIR=" .layers"
11
11
LAYER_FILES=(
12
- " datadog_lambda_py-amd64-3.7.zip"
13
12
" datadog_lambda_py-amd64-3.8.zip"
14
13
" datadog_lambda_py-arm64-3.8.zip"
15
14
" datadog_lambda_py-amd64-3.9.zip"
You can’t perform that action at this time.
0 commit comments