From 6613c1b5abf1cbe6a4dfc4a92c468c968d2afea8 Mon Sep 17 00:00:00 2001 From: Seth Teichman Date: Sun, 25 May 2025 07:49:54 -0400 Subject: [PATCH 1/3] Update python-test.yml to run tests on 3.13 --- .github/workflows/python-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index e33edcf..d1b8f1f 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -5,7 +5,7 @@ name: Flask-Parameter-Validation Unit Tests on: push: - branches: [ "master" ] + branches: [ "master", "dev/steichman/python3.13"] pull_request: branches: [ "master" ] @@ -19,7 +19,7 @@ jobs: strategy: matrix: - python-version: ["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 From c2cc66f56c4b0af24ad52f6487ba7ef3ab18f98b Mon Sep 17 00:00:00 2001 From: Seth Teichman Date: Sun, 25 May 2025 07:51:09 -0400 Subject: [PATCH 2/3] Update setup.py for 3.13 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5ecf388..2eacb22 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ "python-dateutil", "jsonschema", ], - python_requires=">=3.9,<3.13", + python_requires=">=3.9,<3.14", classifiers=[ "Environment :: Web Environment", "Intended Audience :: Developers", From 717d37a4a196b191903ab1cfd6d11d07ba3381e4 Mon Sep 17 00:00:00 2001 From: Seth Teichman Date: Sun, 25 May 2025 07:52:21 -0400 Subject: [PATCH 3/3] Update python-test.yml to remove dev branch from push rules --- .github/workflows/python-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index d1b8f1f..eb23808 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -5,7 +5,7 @@ name: Flask-Parameter-Validation Unit Tests on: push: - branches: [ "master", "dev/steichman/python3.13"] + branches: [ "master"] pull_request: branches: [ "master" ]