Removed Python 3.9 from preselected list of Python versions and added Python 3.14.

This commit is contained in:
Patrick Lehmann
2025-10-18 22:20:06 +02:00
parent cf7a98730e
commit 7e6bb82ae8
11 changed files with 14 additions and 14 deletions

View File

@@ -32,7 +32,7 @@ on:
python_version: python_version:
description: 'Python version.' description: 'Python version.'
required: false required: false
default: '3.13' default: '3.14'
type: string type: string
package_directory: package_directory:
description: 'The package''s directory' description: 'The package''s directory'

View File

@@ -32,7 +32,7 @@ on:
python_version: python_version:
description: 'Python version.' description: 'Python version.'
required: false required: false
default: '3.13' default: '3.14'
type: string type: string
directory: directory:
description: 'Source code directory to check.' description: 'Source code directory to check.'

View File

@@ -36,12 +36,12 @@ on:
unittest_python_version: unittest_python_version:
description: 'Python version.' description: 'Python version.'
required: false required: false
default: '3.13' default: '3.14'
type: string type: string
unittest_python_version_list: unittest_python_version_list:
description: 'Space separated list of Python versions to run tests with.' description: 'Space separated list of Python versions to run tests with.'
required: false required: false
default: '3.9 3.10 3.11 3.12 3.13' default: '3.10 3.11 3.12 3.13 3.14'
type: string type: string
unittest_system_list: unittest_system_list:
description: 'Space separated list of systems to run tests on.' description: 'Space separated list of systems to run tests on.'
@@ -66,7 +66,7 @@ on:
apptest_python_version: apptest_python_version:
description: 'Python version.' description: 'Python version.'
required: false required: false
default: '3.13' default: '3.14'
type: string type: string
apptest_python_version_list: apptest_python_version_list:
description: 'Space separated list of Python versions to run tests with.' description: 'Space separated list of Python versions to run tests with.'

View File

@@ -32,7 +32,7 @@ on:
python_version: python_version:
description: 'Python version.' description: 'Python version.'
required: false required: false
default: '3.13' default: '3.14'
type: string type: string
coverage_config: coverage_config:
description: 'Path to the .coveragerc file. Use pyproject.toml by default.' description: 'Path to the .coveragerc file. Use pyproject.toml by default.'

View File

@@ -33,7 +33,7 @@ on:
python_version: python_version:
description: 'Python version.' description: 'Python version.'
required: false required: false
default: '3.13' default: '3.14'
type: string type: string
requirements: requirements:
description: 'Python dependencies to be installed through pip; if empty, use pyproject.toml through build.' description: 'Python dependencies to be installed through pip; if empty, use pyproject.toml through build.'

View File

@@ -48,12 +48,12 @@ on:
python_version: python_version:
description: 'Python version.' description: 'Python version.'
required: false required: false
default: '3.13' default: '3.14'
type: string type: string
python_version_list: python_version_list:
description: 'Space separated list of Python versions to run tests with.' description: 'Space separated list of Python versions to run tests with.'
required: false required: false
default: '3.9 3.10 3.11 3.12 3.13' default: '3.10 3.11 3.12 3.13 3.14'
type: string type: string
system_list: system_list:
description: 'Space separated list of systems to run tests on.' description: 'Space separated list of systems to run tests on.'

View File

@@ -33,7 +33,7 @@ on:
python_version: python_version:
description: 'Python version.' description: 'Python version.'
required: false required: false
default: '3.13' default: '3.14'
type: string type: string
requirements: requirements:
description: 'Python dependencies to be installed through pip.' description: 'Python dependencies to be installed through pip.'

View File

@@ -32,7 +32,7 @@ on:
python_version: python_version:
description: 'Python version.' description: 'Python version.'
required: false required: false
default: '3.13' default: '3.14'
type: string type: string
requirements: requirements:
description: 'Python dependencies to be installed through pip.' description: 'Python dependencies to be installed through pip.'

View File

@@ -33,7 +33,7 @@ on:
python_version: python_version:
description: 'Python version.' description: 'Python version.'
required: false required: false
default: '3.13' default: '3.14'
type: string type: string
requirements: requirements:
description: 'Python dependencies to be installed through pip.' description: 'Python dependencies to be installed through pip.'

View File

@@ -33,7 +33,7 @@ on:
python_version: python_version:
description: 'Python version.' description: 'Python version.'
required: false required: false
default: '3.13' default: '3.14'
type: string type: string
jobs: jobs:

View File

@@ -1,7 +1,7 @@
-r ../requirements.txt -r ../requirements.txt
# Coverage collection # Coverage collection
Coverage ~= 7.10 Coverage ~= 7.11
# Test Runner # Test Runner
pytest ~= 8.4 pytest ~= 8.4