From cffeb441f265ef61f4ddf912e6929f03d025c544 Mon Sep 17 00:00:00 2001 From: Jonathan Edey Date: Tue, 9 Jan 2024 17:00:10 -0500 Subject: [PATCH 1/4] Add python 3.11 and 3.12 to CI tests --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4829256eb..68838ff4f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - python: ['3.7', '3.8', '3.9', '3.10', 'pypy3.8'] + python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', pypy3.8'] steps: - uses: actions/checkout@v4 From 3666c56427dceb2259adfd63115e5e692a7f30cb Mon Sep 17 00:00:00 2001 From: Jonathan Edey Date: Tue, 9 Jan 2024 17:06:29 -0500 Subject: [PATCH 2/4] fix: typo --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 68838ff4f..2ff59ec77 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', pypy3.8'] + python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3.8'] steps: - uses: actions/checkout@v4 From 358ae2658a188e420a0128d1e76cce33f995c8b0 Mon Sep 17 00:00:00 2001 From: Jonathan Edey Date: Tue, 16 Jan 2024 12:47:03 -0500 Subject: [PATCH 3/4] added new versions to classifier list --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index a82bc47f3..ef30e6be6 100644 --- a/setup.py +++ b/setup.py @@ -70,6 +70,8 @@ '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', 'License :: OSI Approved :: Apache Software License', ], ) From 72f72d0fe2ba3950c921490f5f1d68f2a9490b9f Mon Sep 17 00:00:00 2001 From: Jonathan Edey Date: Tue, 16 Jan 2024 14:08:39 -0500 Subject: [PATCH 4/4] Trigger CI tests