Skip to content

Commit 564a9df

Browse files
authored
Upgrade to python 3.14 (#91)
1 parent 7f6891b commit 564a9df

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/terraform.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
uses: actions/checkout@v5
6666
- uses: actions/setup-python@v6
6767
with:
68-
python-version: "3.13"
68+
python-version: "3.14"
6969
architecture: "x64"
7070
cache: "pipenv"
7171
cache-dependency-path: Pipfile.lock

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "pypi"
77
venv_in_project = true
88

99
[requires]
10-
python_version = "3.13"
10+
python_version = "3.14"
1111

1212
[packages]
1313
feedparser = "==6.0.12"

Pipfile.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

terraform/lambda.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ resource "aws_lambda_function" "rss_handler" {
22
function_name = "rss-feeds-handler"
33
role = aws_iam_role.lambda_role.arn
44
handler = "handler.handler"
5-
runtime = "python3.13"
5+
runtime = "python3.14"
66
architectures = ["x86_64"]
77
memory_size = 256
88
timeout = 30

0 commit comments

Comments
 (0)