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 1/3] 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", ], ) From b42ef4021f7d3f33179d2d2eb9faaebedafd15f5 Mon Sep 17 00:00:00 2001 From: TheBurchLog <5104941+TheBurchLog@users.noreply.github.com> Date: Wed, 18 Dec 2024 11:36:44 -0500 Subject: [PATCH 2/3] Roll back 3.12 support --- .github/workflows/pr-actions.yml | 6 +++--- setup.py | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pr-actions.yml b/.github/workflows/pr-actions.yml index 46cd2a31..74ac6ddb 100644 --- a/.github/workflows/pr-actions.yml +++ b/.github/workflows/pr-actions.yml @@ -7,7 +7,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: ['3.12'] + python-version: ['3.11'] os: ['ubuntu-latest'] name: Linting OS ${{ matrix.os }} - Python ${{ matrix.python-version }} steps: @@ -37,7 +37,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: [ '3.8', '3.9', '3.10', '3.11'] os: ['ubuntu-latest'] name: PyTests OS ${{ matrix.os }} - Python ${{ matrix.python-version }} steps: @@ -69,7 +69,7 @@ jobs: strategy: matrix: - python-version: ['3.12'] + python-version: ['3.11'] os: ['ubuntu-latest'] env: diff --git a/setup.py b/setup.py index 7dddc42d..2bbbb4a1 100644 --- a/setup.py +++ b/setup.py @@ -58,7 +58,6 @@ def find_version(): "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", ], ) From 4936f85cb47f06eefdb9195fe4af5eb4441a6d1d Mon Sep 17 00:00:00 2001 From: TheBurchLog <5104941+TheBurchLog@users.noreply.github.com> Date: Wed, 18 Dec 2024 11:37:35 -0500 Subject: [PATCH 3/3] Remove change log --- CHANGELOG.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0c4aaef0..5bd1fbeb 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -8,7 +8,6 @@ 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 ------