From b33e0f278264262952ed57a467b49eade31ef18f Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Wed, 24 Apr 2024 23:03:08 +0200 Subject: [PATCH 1/2] Bumped dependencies. --- .github/workflows/ArtifactCleanUp.yml | 2 -- doc/requirements.txt | 4 ++-- pyproject.toml | 4 ++-- tests/requirements.txt | 2 +- 4 files changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ArtifactCleanUp.yml b/.github/workflows/ArtifactCleanUp.yml index ec9b74bd..64a5b133 100644 --- a/.github/workflows/ArtifactCleanUp.yml +++ b/.github/workflows/ArtifactCleanUp.yml @@ -36,13 +36,11 @@ on: type: string jobs: - ArtifactCleanUp: name: 🗑️ Artifact Cleanup runs-on: ubuntu-latest steps: - - name: 🗑️ Delete package Artifacts if: ${{ ! startsWith(github.ref, 'refs/tags') }} uses: geekyeggo/delete-artifact@v5 diff --git a/doc/requirements.txt b/doc/requirements.txt index e6745c17..f7920004 100644 --- a/doc/requirements.txt +++ b/doc/requirements.txt @@ -3,7 +3,7 @@ pyTooling ~= 6.1 # Enforce latest version on ReadTheDocs -sphinx ~= 7.2 +sphinx ~= 7.3 docutils ~= 0.18.0 # Sphinx Extenstions @@ -16,5 +16,5 @@ sphinxcontrib-mermaid>=0.9.2 autoapi >= 2.0.1 sphinx_fontawesome >= 0.0.6 sphinx-inline-tabs >= 2023.4.21 -sphinx_autodoc_typehints >= 1.24.0 +sphinx_autodoc_typehints ~= 2.1 # changelog>=0.3.5 diff --git a/pyproject.toml b/pyproject.toml index 0b1c9666..52b2f0fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [build-system] requires = [ - "setuptools >= 69.0.0", - "wheel >= 0.40.0", + "setuptools ~= 69.5", + "wheel ~= 0.40.0", "pyTooling ~= 6.1" ] build-backend = "setuptools.build_meta" diff --git a/tests/requirements.txt b/tests/requirements.txt index b08e3733..285ff1a2 100644 --- a/tests/requirements.txt +++ b/tests/requirements.txt @@ -8,6 +8,6 @@ pytest ~= 8.1 pytest-cov ~= 5.0 # Static Type Checking -mypy ~= 1.9 +mypy ~= 1.10 typing_extensions ~= 4.11 lxml ~= 5.1 From f9a74102d96de56515be3da07526ab678ecc828d Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Wed, 24 Apr 2024 23:03:40 +0200 Subject: [PATCH 2/2] Avoid warning from geekyeggo/delete-artifact@v5. --- .github/workflows/ArtifactCleanUp.yml | 2 -- .github/workflows/IntermediateCleanUp.yml | 2 -- 2 files changed, 4 deletions(-) diff --git a/.github/workflows/ArtifactCleanUp.yml b/.github/workflows/ArtifactCleanUp.yml index 64a5b133..abfb8d93 100644 --- a/.github/workflows/ArtifactCleanUp.yml +++ b/.github/workflows/ArtifactCleanUp.yml @@ -46,11 +46,9 @@ jobs: uses: geekyeggo/delete-artifact@v5 with: name: ${{ inputs.package }} - token: ${{ secrets.GITHUB_TOKEN }} - name: 🗑️ Delete remaining Artifacts if: ${{ inputs.remaining != '' }} uses: geekyeggo/delete-artifact@v5 with: name: ${{ inputs.remaining }} - token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/IntermediateCleanUp.yml b/.github/workflows/IntermediateCleanUp.yml index 6fc09a4d..927a3d32 100644 --- a/.github/workflows/IntermediateCleanUp.yml +++ b/.github/workflows/IntermediateCleanUp.yml @@ -44,7 +44,6 @@ jobs: continue-on-error: true with: name: ${{ inputs.sqlite_coverage_artifacts_prefix }}* - token: ${{ secrets.GITHUB_TOKEN }} - name: 🗑️ Delete XML coverage artifacts from matrix jobs uses: geekyeggo/delete-artifact@v5 @@ -52,4 +51,3 @@ jobs: continue-on-error: true with: name: ${{ inputs.xml_unittest_artifacts_prefix }}* - token: ${{ secrets.GITHUB_TOKEN }}