Skip to content

Commit

Permalink
Bumped dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels committed Jan 20, 2024
1 parent e59b4ab commit 8060cb3
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 21 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/Pipeline.yml
Expand Up @@ -9,20 +9,20 @@ on:
jobs:

Params:
uses: pyTooling/Actions/.github/workflows/Parameters.yml@dev
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r1
with:
name: pyVHDLModel

UnitTesting:
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@dev
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r1
needs:
- Params
with:
jobs: ${{ needs.Params.outputs.python_jobs }}
artifact: ${{ fromJson(needs.Params.outputs.artifact_names).unittesting_xml }}

Coverage:
uses: pyTooling/Actions/.github/workflows/CoverageCollection.yml@dev
uses: pyTooling/Actions/.github/workflows/CoverageCollection.yml@r1
needs:
- Params
with:
Expand All @@ -32,7 +32,7 @@ jobs:
codacy_token: ${{ secrets.CODACY_PROJECT_TOKEN }}

StaticTypeCheck:
uses: pyTooling/Actions/.github/workflows/StaticTypeCheck.yml@dev
uses: pyTooling/Actions/.github/workflows/StaticTypeCheck.yml@r1
needs:
- Params
with:
Expand All @@ -42,12 +42,12 @@ jobs:
html_artifact: ${{ fromJson(needs.Params.outputs.artifact_names).statictyping_html }}

PublishTestResults:
uses: pyTooling/Actions/.github/workflows/PublishTestResults.yml@dev
uses: pyTooling/Actions/.github/workflows/PublishTestResults.yml@r1
needs:
- UnitTesting

Package:
uses: pyTooling/Actions/.github/workflows/Package.yml@dev
uses: pyTooling/Actions/.github/workflows/Package.yml@r1
needs:
- Params
- Coverage
Expand All @@ -56,7 +56,7 @@ jobs:
artifact: ${{ fromJson(needs.Params.outputs.artifact_names).package_all }}

Release:
uses: pyTooling/Actions/.github/workflows/Release.yml@dev
uses: pyTooling/Actions/.github/workflows/Release.yml@r1
if: startsWith(github.ref, 'refs/tags')
needs:
- UnitTesting
Expand All @@ -65,7 +65,7 @@ jobs:
- Package

PublishOnPyPI:
uses: pyTooling/Actions/.github/workflows/PublishOnPyPI.yml@dev
uses: pyTooling/Actions/.github/workflows/PublishOnPyPI.yml@r1
if: startsWith(github.ref, 'refs/tags')
needs:
- Params
Expand Down Expand Up @@ -129,15 +129,15 @@ jobs:
python3 example.py
BuildTheDocs:
uses: pyTooling/Actions/.github/workflows/BuildTheDocs.yml@dev
uses: pyTooling/Actions/.github/workflows/BuildTheDocs.yml@r1
needs:
- Params
- VerifyDocs
with:
artifact: ${{ fromJson(needs.Params.outputs.artifact_names).documentation_html }}

PublishToGitHubPages:
uses: pyTooling/Actions/.github/workflows/PublishToGitHubPages.yml@dev
uses: pyTooling/Actions/.github/workflows/PublishToGitHubPages.yml@r1
needs:
- Params
- BuildTheDocs
Expand All @@ -149,7 +149,7 @@ jobs:
typing: ${{ fromJson(needs.Params.outputs.artifact_names).statictyping_html }}

ArtifactCleanUp:
uses: pyTooling/Actions/.github/workflows/ArtifactCleanUp.yml@dev
uses: pyTooling/Actions/.github/workflows/ArtifactCleanUp.yml@r1
needs:
- Params
- UnitTesting
Expand Down
2 changes: 1 addition & 1 deletion .idea/pyVHDLModel.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions doc/conf.py
Expand Up @@ -223,8 +223,8 @@
# Sphinx.Ext.ExtLinks
# ==============================================================================
extlinks = {
"ghissue": ('https://GitHub.com/vhdl/pyVHDLModel/issues/%s', 'issue #'),
"ghpull": ('https://GitHub.com/vhdl/pyVHDLModel/pull/%s', 'pull request #'),
"ghissue": ('https://GitHub.com/vhdl/pyVHDLModel/issues/%s', 'issue #%s'),
"ghpull": ('https://GitHub.com/vhdl/pyVHDLModel/pull/%s', 'pull request #%s'),
"ghsrc": ('https://GitHub.com/vhdl/pyVHDLModel/blob/main/%s?ts=2', None),
}

Expand Down
9 changes: 4 additions & 5 deletions pyVHDLModel/Concurrent.py
Expand Up @@ -704,17 +704,16 @@ def LoopIndex(self) -> str:
def Range(self) -> Range:
return self._range

IterateInstantiations = ConcurrentStatementsMixin.IterateInstantiations

# IndexDeclaredItems = ConcurrentStatements.IndexDeclaredItems

def IndexStatement(self) -> None:
self.IndexStatements()

IndexStatements = ConcurrentStatementsMixin.IndexStatements
def IndexStatements(self) -> None:
super().IndexStatements()

# def IterateInstantiations(self) -> Generator[Instantiation, None, None]:
# return ConcurrentStatements.IterateInstantiations(self)
def IterateInstantiations(self) -> Generator[Instantiation, None, None]:
return ConcurrentStatementsMixin.IterateInstantiations(self)


@export
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -2,7 +2,7 @@
requires = [
"setuptools >= 68.0.0",
"wheel >= 0.40.0",
"pyTooling >= 5.0.0"
"pyTooling ~= 6.0"
]
build-backend = "setuptools.build_meta"

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
@@ -1 +1 @@
pyTooling >= 5.0.0, <6.0
pyTooling ~= 6.0

0 comments on commit 8060cb3

Please sign in to comment.