Skip to content

Commit f36316a

Browse files
committed
chore: update lambda runtime from 3.9 to 3.11
1 parent 6ae9b15 commit f36316a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ clean-venv:
1616
test-with-venv:
1717
( \
1818
. ${VENV_ACTIVATE_PATH}; \
19-
pip install -r requirements.txt; \
19+
pip3 install -r requirements.txt; \
2020
. ${INIT_ENVIRONMENT_VARIABLE_SCRIPT}; \
2121
serverless invoke local -f cron; \
2222
)
@@ -25,7 +25,7 @@ test-with-venv:
2525
lint:
2626
( \
2727
. ${VENV_ACTIVATE_PATH}; \
28-
pip install -r requirements.txt; \
28+
pip3 install -r requirements.txt; \
2929
pylint ${APP_FOLDER} \
3030
)
3131

serverless.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ frameworkVersion: "3"
66

77
provider:
88
name: aws
9-
runtime: python3.9
9+
runtime: python3.11
1010
environment:
1111
TELEGRAM_TOKEN: ${env:TELEGRAM_TOKEN}
1212
TELEGRAM_CHAT_ID: ${env:TELEGRAM_CHAT_ID}

0 commit comments

Comments
 (0)