File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ clean-venv:
16
16
test-with-venv :
17
17
( \
18
18
. ${VENV_ACTIVATE_PATH}; \
19
- pip install -r requirements.txt; \
19
+ pip3 install -r requirements.txt; \
20
20
. ${INIT_ENVIRONMENT_VARIABLE_SCRIPT}; \
21
21
serverless invoke local -f cron; \
22
22
)
@@ -25,7 +25,7 @@ test-with-venv:
25
25
lint :
26
26
( \
27
27
. ${VENV_ACTIVATE_PATH}; \
28
- pip install -r requirements.txt; \
28
+ pip3 install -r requirements.txt; \
29
29
pylint ${APP_FOLDER} \
30
30
)
31
31
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ frameworkVersion: "3"
6
6
7
7
provider :
8
8
name : aws
9
- runtime : python3.9
9
+ runtime : python3.11
10
10
environment :
11
11
TELEGRAM_TOKEN : ${env:TELEGRAM_TOKEN}
12
12
TELEGRAM_CHAT_ID : ${env:TELEGRAM_CHAT_ID}
You can’t perform that action at this time.
0 commit comments