From 82cf40ab0b004229708bd12ebed642c07aefa6e3 Mon Sep 17 00:00:00 2001 From: Alexander Todorov Date: Fri, 5 Jun 2026 13:27:09 +0300 Subject: [PATCH 1/2] Build and test with Python 3.12 --- .github/workflows/testing.yml | 2 +- setup.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index ebffafa..daa76ac 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.9, 3.11] + python-version: [3.12] kiwitcms-url: [tcms.kiwitcms.org, public.tenant.kiwitcms.org] make-command: [ci, check-build, tap] diff --git a/setup.py b/setup.py index 3fcfe77..36cca65 100644 --- a/setup.py +++ b/setup.py @@ -45,8 +45,7 @@ def get_version(): "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Operating System :: POSIX", "Programming Language :: Python", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Software Development", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Quality Assurance", From ac32fbb5d75e7655523feb1ce022f7eca82a8ba7 Mon Sep 17 00:00:00 2001 From: Alexander Todorov Date: Fri, 5 Jun 2026 13:28:54 +0300 Subject: [PATCH 2/2] Update for difference in filename underscores/dashes --- tests/bin/check-build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/bin/check-build b/tests/bin/check-build index 1655a2a..b3eaa38 100755 --- a/tests/bin/check-build +++ b/tests/bin/check-build @@ -69,7 +69,7 @@ echo "..... Trying to install the new tarball inside a virtualenv" $(which python) -m venv .venv/test-tarball source .venv/test-tarball/bin/activate pip install --upgrade setuptools pip Babel -pip install --no-binary :all: dist/kiwitcms-tap-plugin*.tar.gz +pip install --no-binary :all: dist/kiwitcms*.tar.gz pip freeze | grep kiwitcms-tap-plugin deactivate rm -rf .venv/ @@ -78,7 +78,7 @@ echo "..... Trying to install the new wheel inside a virtualenv" $(which python) -m venv .venv/test-wheel source .venv/test-wheel/bin/activate pip install --upgrade setuptools pip Babel -pip install --only-binary :all: dist/kiwitcms_tap_plugin*.whl +pip install --only-binary :all: dist/kiwitcms*.whl pip freeze | grep kiwitcms-tap-plugin deactivate rm -rf .venv/