From 7bc4e0f2d596cd287ef3981c6c808b250d999055 Mon Sep 17 00:00:00 2001 From: Alexander Todorov Date: Wed, 3 Jun 2026 22:27:58 +0300 Subject: [PATCH 1/2] Build & test with Python 3.12 --- .github/workflows/publish-package.yml | 2 +- .github/workflows/testing.yml | 4 ++-- setup.py | 3 +-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index 0e44709..74e2985 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.11] + python-version: [3.12] steps: - uses: actions/checkout@v6 diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 3771fb2..9cd105f 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.11] + python-version: [3.12] steps: - uses: actions/checkout@v6 @@ -38,7 +38,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.11] + python-version: [3.12] kiwitcms-url: [tcms.kiwitcms.org, public.tenant.kiwitcms.org] steps: diff --git a/setup.py b/setup.py index 035a333..caadad7 100644 --- a/setup.py +++ b/setup.py @@ -46,8 +46,7 @@ def get_install_requires(path): 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.8', - 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', ], entry_points={"kiwitcms.plugins": ["kiwitcms_github_app = tcms_github_app"]}, ) From 678e484abd6237be7730e9dcb343a1b6aad2d910 Mon Sep 17 00:00:00 2001 From: Alexander Todorov Date: Wed, 3 Jun 2026 22:28:41 +0300 Subject: [PATCH 2/2] Changelog for v2.2.2 --- README.rst | 6 ++++++ setup.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 4b93451..ffeda61 100644 --- a/README.rst +++ b/README.rst @@ -107,6 +107,12 @@ Then configure how the application interacts with GitHub: Changelog --------- +v2.2.2 (04 Jun 2026) +~~~~~~~~~~~~~~~~~~~~ + +- Build and test with Python 3.12 + + v2.2.1 (23 May 2026) ~~~~~~~~~~~~~~~~~~~~ diff --git a/setup.py b/setup.py index caadad7..024409c 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def get_install_requires(path): setup( name='kiwitcms-github-app', - version='2.2.1', + version='2.2.2', description='GitHub App integration for Kiwi TCMS', long_description=get_long_description(), author='Kiwi TCMS',