From 15bf375fe68019a2276c302f837e46ac297e1ea7 Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Wed, 16 Apr 2025 13:33:45 +0200 Subject: [PATCH] Bumped versions. Updated python version to 3.13. --- .github/workflows/CheckDocumentation.yml | 2 +- .github/workflows/ExtractConfiguration.yml | 2 +- .github/workflows/Package.yml | 2 +- .github/workflows/PublishOnPyPI.yml | 2 +- .github/workflows/Release.yml | 6 +++--- .github/workflows/SphinxDocumentation.yml | 2 +- .github/workflows/StaticTypeCheck.yml | 2 +- .github/workflows/VerifyDocs.yml | 2 +- pyproject.toml | 2 +- tests/requirements.txt | 6 +++--- 10 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/CheckDocumentation.yml b/.github/workflows/CheckDocumentation.yml index f634582..21e1bd8 100644 --- a/.github/workflows/CheckDocumentation.yml +++ b/.github/workflows/CheckDocumentation.yml @@ -32,7 +32,7 @@ on: python_version: description: 'Python version.' required: false - default: '3.12' + default: '3.13' type: string directory: description: 'Source code directory to check.' diff --git a/.github/workflows/ExtractConfiguration.yml b/.github/workflows/ExtractConfiguration.yml index d5d7758..29e9379 100644 --- a/.github/workflows/ExtractConfiguration.yml +++ b/.github/workflows/ExtractConfiguration.yml @@ -32,7 +32,7 @@ on: python_version: description: 'Python version.' required: false - default: '3.12' + default: '3.13' type: string package_namespace: description: 'Name of the tool''s namespace.' diff --git a/.github/workflows/Package.yml b/.github/workflows/Package.yml index d16e9f7..a3618d4 100644 --- a/.github/workflows/Package.yml +++ b/.github/workflows/Package.yml @@ -33,7 +33,7 @@ on: python_version: description: 'Python version.' required: false - default: '3.12' + default: '3.13' type: string requirements: description: 'Python dependencies to be installed through pip; if empty, use pyproject.toml through build.' diff --git a/.github/workflows/PublishOnPyPI.yml b/.github/workflows/PublishOnPyPI.yml index 030cf31..0eb3735 100644 --- a/.github/workflows/PublishOnPyPI.yml +++ b/.github/workflows/PublishOnPyPI.yml @@ -33,7 +33,7 @@ on: python_version: description: 'Python version.' required: false - default: '3.12' + default: '3.13' type: string requirements: description: 'Python dependencies to be installed through pip.' diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index 74cc1e6..1dea8d1 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -44,9 +44,9 @@ jobs: RELEASE_VERSION=${GIT_TAG#v} RELEASE_DATETIME="$(date --utc '+%d.%m.%Y - %H:%M:%S')" # write to step outputs - echo "gitTag=${GIT_TAG}" >> $GITHUB_OUTPUT - echo "version=${RELEASE_VERSION}" >> $GITHUB_OUTPUT - echo "datetime=${RELEASE_DATETIME}" >> $GITHUB_OUTPUT + printf "%s\n" "gitTag=${GIT_TAG}" >> $GITHUB_OUTPUT + printf "%s\n" "version=${RELEASE_VERSION}" >> $GITHUB_OUTPUT + printf "%s\n" "datetime=${RELEASE_DATETIME}" >> $GITHUB_OUTPUT - name: 📑 Create Release Page uses: actions/create-release@v1 diff --git a/.github/workflows/SphinxDocumentation.yml b/.github/workflows/SphinxDocumentation.yml index b1d9d74..b5fc5dd 100644 --- a/.github/workflows/SphinxDocumentation.yml +++ b/.github/workflows/SphinxDocumentation.yml @@ -32,7 +32,7 @@ on: python_version: description: 'Python version.' required: false - default: '3.12' + default: '3.13' type: string requirements: description: 'Python dependencies to be installed through pip.' diff --git a/.github/workflows/StaticTypeCheck.yml b/.github/workflows/StaticTypeCheck.yml index 0b15d63..02571fb 100644 --- a/.github/workflows/StaticTypeCheck.yml +++ b/.github/workflows/StaticTypeCheck.yml @@ -33,7 +33,7 @@ on: python_version: description: 'Python version.' required: false - default: '3.12' + default: '3.13' type: string requirements: description: 'Python dependencies to be installed through pip.' diff --git a/.github/workflows/VerifyDocs.yml b/.github/workflows/VerifyDocs.yml index 9f4ec22..dad2d53 100644 --- a/.github/workflows/VerifyDocs.yml +++ b/.github/workflows/VerifyDocs.yml @@ -33,7 +33,7 @@ on: python_version: description: 'Python version.' required: false - default: '3.12' + default: '3.13' type: string jobs: diff --git a/pyproject.toml b/pyproject.toml index cac642a..796c0c9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [build-system] requires = [ - "setuptools ~= 77.0", + "setuptools ~= 78.1", "wheel ~= 0.45", "pyTooling ~= 8.3" ] diff --git a/tests/requirements.txt b/tests/requirements.txt index c88ae88..e44d7b6 100644 --- a/tests/requirements.txt +++ b/tests/requirements.txt @@ -1,13 +1,13 @@ -r ../requirements.txt # Coverage collection -Coverage ~= 7.7 +Coverage ~= 7.8 # Test Runner pytest ~= 8.3 -pytest-cov ~= 6.0 +pytest-cov ~= 6.1 # Static Type Checking mypy ~= 1.15 -typing_extensions ~= 4.12 +typing_extensions ~= 4.13 lxml ~= 5.3