From 1a2af68f1ea9476ec7d2c265729f9fab40112908 Mon Sep 17 00:00:00 2001 From: Jesse Kela Date: Sat, 4 Oct 2025 17:08:12 +0300 Subject: [PATCH] Upgrade to python 3.14 --- .github/workflows/lambda.yml | 2 +- .github/workflows/test.yml | 2 +- Pipfile | 2 +- Pipfile.lock | 2 +- serverless.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/lambda.yml b/.github/workflows/lambda.yml index c3553a4..de31a3e 100644 --- a/.github/workflows/lambda.yml +++ b/.github/workflows/lambda.yml @@ -48,7 +48,7 @@ jobs: - uses: actions/checkout@v5 - uses: actions/setup-python@v6 with: - python-version: "3.13" + python-version: "3.14" architecture: "x64" cache: "pipenv" - name: Install pipenv diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 949ce3f..424bf73 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,7 +24,7 @@ jobs: - uses: actions/checkout@v5 - uses: actions/setup-python@v6 with: - python-version: "3.13" + python-version: "3.14" architecture: "x64" cache: "pipenv" cache-dependency-path: Pipfile.lock diff --git a/Pipfile b/Pipfile index 444391a..885acb5 100644 --- a/Pipfile +++ b/Pipfile @@ -7,7 +7,7 @@ name = "pypi" venv_in_project = true [requires] -python_version = "3.13" +python_version = "3.14" [packages] beautifulsoup4 = "==4.14.2" diff --git a/Pipfile.lock b/Pipfile.lock index 651c8d3..384bf90 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -5,7 +5,7 @@ }, "pipfile-spec": 6, "requires": { - "python_version": "3.13" + "python_version": "3.14" }, "sources": [ { diff --git a/serverless.yml b/serverless.yml index 9a8457c..83c0b75 100644 --- a/serverless.yml +++ b/serverless.yml @@ -5,7 +5,7 @@ useDotenv: true provider: name: aws stage: ${opt:stage, 'test'} - runtime: python3.13 + runtime: python3.14 runtimeManagement: auto versionFunctions: false architecture: x86_64