Skip to content

Commit

Permalink
v1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels authored Apr 24, 2024
2 parents ae32d20 + f9a7410 commit e9d0dc3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 11 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/ArtifactCleanUp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,23 +36,19 @@ 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
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 }}
2 changes: 0 additions & 2 deletions .github/workflows/IntermediateCleanUp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,10 @@ 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
if: inputs.xml_unittest_artifacts_prefix != ''
continue-on-error: true
with:
name: ${{ inputs.xml_unittest_artifacts_prefix }}*
token: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions doc/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
pyTooling ~= 6.1

# Enforce latest version on ReadTheDocs
sphinx ~= 7.2
sphinx ~= 7.3
docutils ~= 0.18.0

# Sphinx Extenstions
Expand All @@ -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
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion tests/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit e9d0dc3

Please sign in to comment.