From d1ec2f364dc1b28adfc0b13fa67e1f3da9f1574e Mon Sep 17 00:00:00 2001 From: TheBurchLog <5104941+TheBurchLog@users.noreply.github.com> Date: Wed, 18 Dec 2024 11:34:29 -0500 Subject: [PATCH] Update for 3.12 support --- .github/workflows/pr-actions.yml | 2 +- CHANGELOG.rst | 1 + setup.py | 3 +++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr-actions.yml b/.github/workflows/pr-actions.yml index 6477ba5c..46cd2a31 100644 --- a/.github/workflows/pr-actions.yml +++ b/.github/workflows/pr-actions.yml @@ -37,7 +37,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [ '3.8', '3.9', '3.10', '3.11'] + python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12'] os: ['ubuntu-latest'] name: PyTests OS ${{ matrix.os }} - Python ${{ matrix.python-version }} steps: diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5bd1fbeb..0c4aaef0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -8,6 +8,7 @@ TBD - Added support for display name to command decorator - Updated Wait Timeout Exception expected HTTP code from 408 to 504 - Dropping Official Python 2.7 Support +- Adding Official Python 3.12 Support 3.29.0 ------ diff --git a/setup.py b/setup.py index a70360a5..7dddc42d 100644 --- a/setup.py +++ b/setup.py @@ -56,6 +56,9 @@ def find_version(): "Programming Language :: Python :: 3.7", "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", "Topic :: Software Development :: Libraries :: Python Modules", ], )