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/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 035a333..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', @@ -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"]}, )