Skip to content

Commit 713b5a5

Browse files
upgrade python from 3_11 to 3_12
1 parent 1ca9d0f commit 713b5a5

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup Python
2121
uses: actions/setup-python@v2
2222
with:
23-
python-version: "3.11"
23+
python-version: "3.12"
2424

2525
- name: Install pipenv
2626
run: |

.github/workflows/terraform.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Set up Python
3030
uses: actions/setup-python@v2
3131
with:
32-
python-version: "3.11"
32+
python-version: "3.12"
3333

3434
- name: Install Lambda (Python) dependencies
3535
run: |

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.11
1+
3.12

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ black = "*"
1515
tomli = "*"
1616

1717
[requires]
18-
python_version = "3.11"
18+
python_version = "3.12"
1919

2020
[scripts]
2121
test = "pytest test/ -v"

Pipfile.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Resources:
2525
Properties:
2626
CodeUri: src/
2727
Handler: app.lambda_handler
28-
Runtime: python3.11
28+
Runtime: python3.12
2929
Timeout: 5
3030
Architectures:
3131
- x86_64

terraform/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ variable "region" {
1717

1818
variable "python_runtime" {
1919
type = string
20-
default = "python3.11"
20+
default = "python3.12"
2121
description = "runtime on which lambda python code will run"
2222
}
2323

0 commit comments

Comments
 (0)