Skip to content

Commit 3a11383

Browse files
committed
feat: more drops
1 parent 3316741 commit 3a11383

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

scripts/run_integration_tests.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ set -e
1111
# These values need to be in sync with serverless.yml, where there needs to be a function
1212
# defined for every handler_runtime combination
1313
LAMBDA_HANDLERS=("async-metrics" "sync-metrics")
14-
RUNTIMES=("python37" "python38" "python39" "python310" "python311")
14+
RUNTIMES=("python38" "python39" "python310" "python311")
1515

1616
LOGS_WAIT_SECONDS=20
1717

@@ -28,13 +28,12 @@ mismatch_found=false
2828
# [0]: serverless runtime name
2929
# [1]: python version
3030
# [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))
3231
python38=("python3.8" "3.8" $(xxd -l 4 -c 4 -p < /dev/random))
3332
python39=("python3.9" "3.9" $(xxd -l 4 -c 4 -p < /dev/random))
3433
python310=("python3.10" "3.10" $(xxd -l 4 -c 4 -p < /dev/random))
3534
python311=("python3.11" "3.11" $(xxd -l 4 -c 4 -p < /dev/random))
3635

37-
PARAMETERS_SETS=("python37" "python38" "python39" "python310" "python311")
36+
PARAMETERS_SETS=("python38" "python39" "python310" "python311")
3837

3938
if [ -z "$RUNTIME_PARAM" ]; then
4039
echo "Python version not specified, running for all python versions."

scripts/sign_layers.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ set -e
99

1010
LAYER_DIR=".layers"
1111
LAYER_FILES=(
12-
"datadog_lambda_py-amd64-3.7.zip"
1312
"datadog_lambda_py-amd64-3.8.zip"
1413
"datadog_lambda_py-arm64-3.8.zip"
1514
"datadog_lambda_py-amd64-3.9.zip"

0 commit comments

Comments
 (0)