From 29d7d1c3c9a264910fbd001dc2f7feaee90e3f1f Mon Sep 17 00:00:00 2001 From: Jeremy Frasier Date: Wed, 25 Oct 2023 14:23:53 -0400 Subject: [PATCH 1/2] Add support for Python version 3.12 in build workflow Note that these instances _will not_ be updated via the upstream pull request cisagov/skeleton-generic#154. --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 49781ed..6087bcd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -119,6 +119,7 @@ jobs: - "3.9" - "3.10" - "3.11" + - "3.12" include: - os: ubuntu-20.04 python-version: "3.6" @@ -215,6 +216,7 @@ jobs: - "3.9" - "3.10" - "3.11" + - "3.12" include: - os: ubuntu-20.04 python-version: "3.6" @@ -268,6 +270,7 @@ jobs: - "3.9" - "3.10" - "3.11" + - "3.12" include: - os: ubuntu-20.04 python-version: "3.6" From 580429a55b2c16f4d19dd317b20dd8dd55982c2f Mon Sep 17 00:00:00 2001 From: Nicholas McDonnell <50747025+mcdonnnj@users.noreply.github.com> Date: Tue, 19 Dec 2023 16:16:32 -0500 Subject: [PATCH 2/2] Add support for Python 3.12 to the package --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index f417c83..7aec68b 100644 --- a/setup.py +++ b/setup.py @@ -81,6 +81,7 @@ def get_version(version_file): "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Python :: Implementation :: CPython", ], python_requires=">=3.6",