Skip to content

Commit e80836a

Browse files
committed
feat(lambda): bump python version to 3.10
Change Python version on the aws lambda runtime.
1 parent 0c395e7 commit e80836a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ resource "aws_lambda_function" "this" {
264264
function_name = var.name
265265
role = var.custom_iam_role_arn == null ? aws_iam_role.this[0].arn : var.custom_iam_role_arn
266266
handler = "scheduler.main.lambda_handler"
267-
runtime = "python3.9"
267+
runtime = "python3.10"
268268
timeout = "600"
269269
kms_key_arn = var.kms_key_arn == null ? "" : var.kms_key_arn
270270

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
minversion=4.6.0
3-
envlist = py39,pytest,flake8,black,pylint,mypy
3+
envlist = py310,pytest,flake8,black,pylint,mypy
44
skipsdist = True
55

66
# Unit tests

0 commit comments

Comments
 (0)