From 1fbf1acc7dfcf925b4d43b3583c20d3b14910b79 Mon Sep 17 00:00:00 2001 From: Matthew Hambley Date: Thu, 20 Feb 2025 11:11:23 +0000 Subject: [PATCH 1/3] Updated Python versions to test with. Full spread. --- .github/workflows/pullrequest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pullrequest.yml b/.github/workflows/pullrequest.yml index 0d02634..ef1a54e 100644 --- a/.github/workflows/pullrequest.yml +++ b/.github/workflows/pullrequest.yml @@ -17,7 +17,7 @@ jobs: strategy: max-parallel: 3 matrix: - python-version: [3.7, 3.8, "3.9", "3.10"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] steps: - uses: actions/checkout@v2 From 21a767cbb71b59fb8539044c22009b272cad5adf Mon Sep 17 00:00:00 2001 From: Matthew Hambley Date: Thu, 20 Feb 2025 11:15:12 +0000 Subject: [PATCH 2/3] Don't test the development version. --- .github/workflows/pullrequest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pullrequest.yml b/.github/workflows/pullrequest.yml index ef1a54e..15ac103 100644 --- a/.github/workflows/pullrequest.yml +++ b/.github/workflows/pullrequest.yml @@ -17,7 +17,7 @@ jobs: strategy: max-parallel: 3 matrix: - python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v2 From 25d3ea5a3cec22660ffa8164bdd68ff252abb034 Mon Sep 17 00:00:00 2001 From: Matthew Hambley Date: Thu, 20 Feb 2025 11:17:33 +0000 Subject: [PATCH 3/3] Project requirements to match testing. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 734bbdb..b3f8e4c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = 'setuptools.build_meta' [project] name='stylist' description="Flexible source code style checking tool" -requires-python = '>=3.7, <4' +requires-python = '>=3.9' license = {text = 'BSD 3-Clause License'} dependencies = ['fparser >= 0.1.2'] dynamic = ['version', 'readme']