From 4b5b5f95effd9ab2acd6a42bbf931391e3a5896b Mon Sep 17 00:00:00 2001 From: dongreenberg Date: Fri, 26 Jul 2024 12:57:15 -0400 Subject: [PATCH 1/2] Add Py312 support --- .github/workflows/release_precheck.yaml | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release_precheck.yaml b/.github/workflows/release_precheck.yaml index 1fca4a759..bce8d0824 100644 --- a/.github/workflows/release_precheck.yaml +++ b/.github/workflows/release_precheck.yaml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: - name: Checkout repository diff --git a/setup.py b/setup.py index 73e0594e2..094dcf4f1 100644 --- a/setup.py +++ b/setup.py @@ -144,6 +144,7 @@ def parse_readme(readme: str) -> str: "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", "Operating System :: OS Independent", "Topic :: Software Development :: Libraries :: Python Modules", From 6a1d9ed0acd08a950a6773912f448c589fc9f74d Mon Sep 17 00:00:00 2001 From: Caroline Date: Thu, 12 Sep 2024 15:16:52 -0400 Subject: [PATCH 2/2] remove 3.7 from classifiers --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 094dcf4f1..34ee38478 100644 --- a/setup.py +++ b/setup.py @@ -139,7 +139,6 @@ def parse_readme(readme: str) -> str: }, include_package_data=True, classifiers=[ - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10",