Skip to content

Commit 800274c

Browse files
authored
v0.31.2
2 parents 2b4af3b + 4ef206f commit 800274c

File tree

8 files changed

+21
-17
lines changed

8 files changed

+21
-17
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ updates:
1010
- Dependencies
1111
reviewers:
1212
- Paebbels
13-
- Umarcor
1413
schedule:
1514
interval: "daily" # Checks on Monday trough Friday.
1615

@@ -24,6 +23,5 @@ updates:
2423
- Dependencies
2524
reviewers:
2625
- Paebbels
27-
- Umarcor
2826
schedule:
2927
interval: "weekly"

.github/workflows/Pipeline.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,21 @@ name: Pipeline
22

33
on:
44
push:
5+
create:
56
workflow_dispatch:
67
schedule:
78
# Every Friday at 22:00 - rerun pipeline to check for dependency-based issues
89
- cron: '0 22 * * 5'
910

1011
jobs:
1112
Pipeline:
12-
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r4
13+
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@dev
1314
with:
14-
package_name: pyVHDLModel
15-
codecov: true
16-
codacy: true
17-
dorny: true
15+
package_name: pyVHDLModel
16+
codecov: true
17+
codacy: true
18+
dorny: true
1819
secrets:
19-
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
20-
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
21-
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }}
20+
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
21+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
22+
CODACY_TOKEN: ${{ secrets.CODACY_TOKEN }}

doc/Dependency.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ the mandatory dependencies too.
6161
+---------------------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
6262
| `typing-extensions <https://GitHub.com/python/typing_extensions>`__ | ≥4.13 | `PSF-2.0 <https://github.com/python/typing_extensions/blob/main/LICENSE>`__ | *Not yet evaluated.* |
6363
+---------------------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
64-
| `lxml <https://GitHub.com/lxml/lxml>`__ | ≥5.3 | `BSD 3-Clause <https://GitHub.com/lxml/lxml/blob/master/LICENSE.txt>`__ | *Not yet evaluated.* |
64+
| `lxml <https://GitHub.com/lxml/lxml>`__ | ≥5.4 | `BSD 3-Clause <https://GitHub.com/lxml/lxml/blob/master/LICENSE.txt>`__ | *Not yet evaluated.* |
6565
+---------------------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
6666

6767

doc/unittests/index.rst

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
Unittest Summary Report
22
#######################
33

4-
Unittest report generated with `pytest <https://github.com/pytest-dev/pytest>`__.
5-
64
.. report:unittest-summary::
75
:reportid: src
6+
:show-testcases: not-passed
7+
:no-assertions:
8+
9+
----------
10+
11+
Unittest report generated with `pytest <https://github.com/pytest-dev/pytest>`__ and visualized by
12+
`sphinx-reports <https://github.com/pyTooling/sphinx-reports>`__.

pyVHDLModel/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
__email__ = "[email protected]"
4949
__copyright__ = "2016-2025, Patrick Lehmann"
5050
__license__ = "Apache License, Version 2.0"
51-
__version__ = "0.31.1"
51+
__version__ = "0.31.2"
5252

5353

5454
from enum import unique, Enum, Flag, auto

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build-system]
22
requires = [
3-
"setuptools ~= 79.0",
3+
"setuptools >= 80.0",
44
"wheel ~= 0.45",
55
"pyTooling ~= 8.4"
66
]

run.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Param(
3333
)
3434

3535
$PackageName = "pyVHDLModel"
36-
$PackageVersion = "0.31.1"
36+
$PackageVersion = "0.31.2"
3737

3838
# set default values
3939
$EnableDebug = [bool]$PSCmdlet.MyInvocation.BoundParameters["Debug"]

tests/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ pytest-cov ~= 6.1
1010
# Static Type Checking
1111
mypy ~= 1.15
1212
typing_extensions ~= 4.13
13-
lxml ~= 5.3
13+
lxml ~= 5.4

0 commit comments

Comments
 (0)