From e63089b7f202484ed9328e1c076cc5a94fa73987 Mon Sep 17 00:00:00 2001 From: Michael Terry Date: Tue, 22 Oct 2024 09:19:52 -0400 Subject: [PATCH] build: drop support for Python 3.8, add CI checks for 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 012ae4d0..4ea1ed88 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index 2c8ef5d1..c90286a9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "fhirclient" -requires-python = ">= 3.8" +requires-python = ">= 3.9" dependencies = [ "requests >= 2.4", ]