Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: [3.11]
python-version: [3.12]

steps:

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.11]
python-version: [3.12]
make-command: [doc8, flake8, pylint, integration_test]
kiwitcms-url: [tcms.kiwitcms.org, public.tenant.kiwitcms.org]

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@ def get_version():
+ " 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",
Expand Down
4 changes: 2 additions & 2 deletions tests/check-build
Original file line number Diff line number Diff line change
Expand Up @@ -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
pip install --no-binary :all: dist/kiwitcms-robotframework-plugin*.tar.gz
pip install --no-binary :all: dist/kiwitcms*.tar.gz
pip freeze | grep kiwitcms-robotframework-plugin
deactivate
rm -rf .venv/
Expand All @@ -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
pip install --only-binary :all: dist/kiwitcms_robotframework_plugin*.whl
pip install --only-binary :all: dist/kiwitcms*.whl
pip freeze | grep kiwitcms-robotframework-plugin
deactivate
rm -rf .venv/
Expand Down
Loading