Skip to content

Commit 3708f3f

Browse files
[IT-4759] Update Python version
Python 3.9 is no longer supported by AWS Lambda, update to Python 3.13.
1 parent d3c866d commit 3708f3f

File tree

5 files changed

+149
-102
lines changed

5 files changed

+149
-102
lines changed

.github/actions/sam-build/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ runs:
88
# Convert Pipfile.lock to requirements.txt for sam
99
- uses: actions/setup-python@v4
1010
with:
11-
python-version: 3.9
11+
python-version: 3.13
1212
- run: pip install -U pipenv
1313
shell: bash
1414

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up Python
1414
uses: actions/setup-python@v5
1515
with:
16-
python-version: 3.9
16+
python-version: 3.13
1717
- uses: pre-commit/action@v3.0.1
1818

1919
pytest:
@@ -23,7 +23,7 @@ jobs:
2323
- name: Set up Python
2424
uses: actions/setup-python@v5
2525
with:
26-
python-version: 3.9
26+
python-version: 3.13
2727
- run: pip install -U pipenv
2828
- run: pipenv install --dev
2929
- run: pipenv run coverage run -m pytest tests/ -vv

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ boto3 = "~=1.24"
1010
coverage = "~=7.3"
1111

1212
[requires]
13-
python_version = "3.9"
13+
python_version = "3.13"

0 commit comments

Comments
 (0)