From 9a1a8ce7856cf85cc5e11d03b1796ae36938e08c Mon Sep 17 00:00:00 2001 From: Ethan Holz Date: Mon, 9 Dec 2024 15:45:28 -0700 Subject: [PATCH] chore: bump min Python version to 3.11 and test through 3.13 --- .github/workflows/ci.yaml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6124d50..3d3d420 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -21,7 +21,7 @@ jobs: runs-on: "ubuntu-latest" strategy: matrix: - python-version: ["3.10", "3.11", "3.12"] + python-version: ["3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index c494eb4..942216b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ version = "0.3.0" description = "A GitHub Runner for deploying on cloud backends" authors = [{ name = "Ethan Holz", email = "ethan.holz@omsf.io" }] readme = "README.md" -requires-python = ">= 3.10" +requires-python = ">= 3.11" dependencies = ["boto3", "requests"] [project.optional-dependencies]