From 862baebcd22d900429bfb98bcaed6465dab25a96 Mon Sep 17 00:00:00 2001 From: Brad Schoening <5796692+bschoening@users.noreply.github.com> Date: Wed, 30 Oct 2024 16:21:44 -0400 Subject: [PATCH 1/2] Remove Python 3.8, add 3.13 --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index de793fc..2654df1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -18,11 +18,11 @@ classifiers = Operating System :: OS Independent Programming Language :: Python Programming Language :: Python :: 3 - Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 Programming Language :: Python :: 3.12 + Programming Language :: Python :: 3.13 [options] packages = ff3 From d80ea5977cf3338f995c374662aa7c036e425c5c Mon Sep 17 00:00:00 2001 From: Brad Schoening Date: Wed, 30 Oct 2024 18:18:19 -0400 Subject: [PATCH 2/2] Updated versions --- .github/workflows/build-py.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-py.yml b/.github/workflows/build-py.yml index e10a3e8..0082b38 100644 --- a/.github/workflows/build-py.yml +++ b/.github/workflows/build-py.yml @@ -8,7 +8,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@v3