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/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
# note: always use the -latest OS variants b/c if conditions
# match them as literals
os: [ubuntu-latest]
python-version: [3.11]
python-version: [3.12]
gssapi: [with, without]

steps:
Expand Down
30 changes: 0 additions & 30 deletions .travis.yml

This file was deleted.

6 changes: 3 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ image:

environment:
global:
PYTHON: "C:\\Python311-x64"
PYTHON: "C:\\Python312-x64"

matrix:
- MAKE: flake8
Expand All @@ -22,10 +22,10 @@ install:
# Prepend Python to the PATH of this build (this cannot be done from inside
# the powershell script as it would require to restart the parent CMD process).
# cygwin64\bin contains all commands used by 'make build'
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;C:\\Users\\appveyor\\AppData\\Roaming\\Python\\Python311\\Scripts;C:\\cygwin64\\bin;%PATH%"
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;C:\\Users\\appveyor\\AppData\\Roaming\\Python\\Python312\\Scripts;C:\\cygwin64\\bin;%PATH%"

- "python --version"
- "python -m pip install --upgrade setuptools setuptools_scm==6.0.1 "
- "python -m pip install --upgrade setuptools"
- "python -m pip install --disable-pip-version-check --user --upgrade pip wheel"
- "python -m pip install -r devel.txt"

Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,7 @@ def get_install_requires(path):
+ " or later (LGPLv2+)",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"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
2 changes: 0 additions & 2 deletions tests/check-build
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ set -e
echo "..... Trying to install the new tarball inside a virtualenv"
virtualenv -q -p $(which python) .venv/test-tarball
source .venv/test-tarball/bin/activate
#pip install --upgrade setuptools setuptools_scm==6.0.1 pip
pip install --no-binary :all: gssapi
pip install --no-binary :all: dist/tcms_api*.tar.gz
pip freeze | grep tcms-api
Expand All @@ -54,7 +53,6 @@ rm -rf .venv/
echo "..... Trying to install the new wheel inside a virtualenv"
virtualenv -q -p $(which python) .venv/test-wheel
source .venv/test-wheel/bin/activate
#pip install --upgrade setuptools setuptools_scm==6.0.1 pip
pip install gssapi
pip install --only-binary :all: dist/tcms_api*.whl
pip freeze | grep tcms-api
Expand Down
8 changes: 4 additions & 4 deletions tests/krb5/Dockerfile.kiwitcms
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM kiwitcms/kiwi

USER 0
RUN microdnf -y --nodocs install gcc krb5-devel python3.11-devel && \
microdnf clean all
RUN dnf -y --nodocs install gcc krb5-devel python3.12-devel && \
dnf clean all
USER 1001

RUN pip3 install --no-cache-dir -U kiwitcms
RUN pip3 install --no-cache-dir social-auth-app-django social-auth-kerberos

COPY ./kiwitcms_kerberos/ /venv/lib64/python3.11/site-packages/kiwitcms_kerberos/
COPY ./kiwitcms_kerberos/kerberos_settings.py /venv/lib64/python3.11/site-packages/tcms_settings_dir/
COPY ./kiwitcms_kerberos/ /venv/lib64/python3.12/site-packages/kiwitcms_kerberos/
COPY ./kiwitcms_kerberos/kerberos_settings.py /venv/lib64/python3.12/site-packages/tcms_settings_dir/