From b80917916752a1cfd3036fe0abee8f0ec8c1e276 Mon Sep 17 00:00:00 2001 From: Alex Nelsin Date: Wed, 19 Nov 2025 10:34:36 -0500 Subject: [PATCH 1/2] Update Python range to >= 3.10, per 3.9 EOL No effects were observed on Make-managed files. References: * https://peps.python.org/pep-0596/ Signed-off-by: Alex Nelsin --- .github/workflows/cicd.yml | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 02f28a1..93a8d1c 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: python-version: - - '3.9' + - '3.10' - '3.13' steps: diff --git a/setup.cfg b/setup.cfg index 8fa1c45..fdee7c8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -19,7 +19,7 @@ include_package_data = true install_requires = rdflib >= 6.2.0 packages = case_example_mapping -python_requires = >=3.9 +python_requires = >=3.10 [options.entry_points] console_scripts = From cfd745b68107c50f7274eaf01fedcb52c28132e5 Mon Sep 17 00:00:00 2001 From: Alex Nelsin Date: Wed, 19 Nov 2025 10:38:08 -0500 Subject: [PATCH 2/2] Bump Python version No effects were observed on Make-managed files. References: * https://peps.python.org/pep-0745/ Signed-off-by: Alex Nelsin --- .github/workflows/cicd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 93a8d1c..d1b90b6 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -17,7 +17,7 @@ jobs: matrix: python-version: - '3.10' - - '3.13' + - '3.14' steps: # Checkout the repository for processing