diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 4c17761..8bf889f 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.11] + python-version: [3.12] make-command: [ doc8, flake8, pylint, check-build, integration_test] kiwitcms-url: [tcms.kiwitcms.org, public.tenant.kiwitcms.org] @@ -52,3 +52,11 @@ jobs: # short commit number export TCMS_BUILD=$(echo $GITHUB_SHA | cut -c1-7) make ${{ matrix.make-command }} + + - name: Upload logs + if: always() + uses: actions/upload-artifact@v7 + with: + name: logs + path: '*.log' + if-no-files-found: warn diff --git a/requirements.txt b/requirements.txt index 7afd94e..906be48 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -Django +Django<6 tcms-api>=12.7 diff --git a/setup.py b/setup.py index 0adff32..30c5375 100644 --- a/setup.py +++ b/setup.py @@ -44,10 +44,7 @@ def get_version(): "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Operating System :: POSIX", "Programming Language :: Python", - "Programming Language :: Python :: 3.7", - "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",