Skip to content

Commit 44e9cd7

Browse files
committed
Bumped dependencies.
1 parent bc9b37d commit 44e9cd7

File tree

7 files changed

+19
-16
lines changed

7 files changed

+19
-16
lines changed

.idea/pyEDAA.ProjectModel.iml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/Dependency.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ the mandatory dependencies too.
163163
+-------------------------------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
164164
| `sphinx-copybutton <https://GitHub.com/executablebooks/sphinx-copybutton>`__ | ≥0.5 | `MIT <https://GitHub.com/executablebooks/sphinx-copybutton/blob/master/LICENSE>`__ | *Not yet evaluated.* |
165165
+-------------------------------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
166-
| `sphinx_autodoc_typehints <https://GitHub.com/agronholm/sphinx-autodoc-typehints>`__ | ≥3.2 | `MIT <https://GitHub.com/agronholm/sphinx-autodoc-typehints/blob/master/LICENSE>`__ | *Not yet evaluated.* |
166+
| `sphinx_autodoc_typehints <https://GitHub.com/agronholm/sphinx-autodoc-typehints>`__ | ≥3.5 | `MIT <https://GitHub.com/agronholm/sphinx-autodoc-typehints/blob/master/LICENSE>`__ | *Not yet evaluated.* |
167167
+-------------------------------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
168168
| `ruamel.yaml <https://sourceforge.net/projects/ruamel-yaml/>`__ | ≥0.18 | `MIT <https://sourceforge.net/p/ruamel-yaml/code/ci/default/tree/LICENSE>`__ | *Not yet evaluated.* |
169169
+-------------------------------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+

doc/make.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pushd %~dp0
55
REM Command file for Sphinx documentation
66

77
if "%SPHINXBUILD%" == "" (
8-
set SPHINXBUILD=py -3.13 -m sphinx.cmd.build
8+
set SPHINXBUILD=py -3.14 -m sphinx.cmd.build
99
)
1010
set SOURCEDIR=.
1111
set BUILDDIR=_build

doc/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ sphinx_rtd_theme ~= 3.0
1111
# Sphinx Extenstions
1212
sphinxcontrib-mermaid ~= 1.0
1313
autoapi >= 2.0.1
14-
sphinx_design ~= 0.6.1
15-
sphinx-copybutton >= 0.5.2
16-
sphinx_autodoc_typehints ~= 3.2
14+
sphinx_design ~= 0.6
15+
sphinx-copybutton >= 0.5
16+
sphinx_autodoc_typehints ~= 3.5
1717
sphinx_reports ~= 0.9

run.ps1

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ if ($build)
8989
rm -Force .\build\bdist.win-amd64
9090
rm -Force .\build\lib
9191
Write-Host -ForegroundColor Yellow "[live][BUILD] Building $PackageName package as wheel ..."
92-
py -3.13 -m build --wheel --no-isolation
92+
py -3.14 -m build --wheel --no-isolation
9393

9494
Write-Host -ForegroundColor Yellow "[live][BUILD] Building wheel finished"
9595
}
@@ -103,9 +103,9 @@ if ($install)
103103
}
104104
else
105105
{ Write-Host -ForegroundColor Cyan "[ADMIN][UNINSTALL] Uninstalling $PackageName ..."
106-
py -3.13 -m pip uninstall -y $PackageName
106+
py -3.14 -m pip uninstall -y $PackageName
107107
Write-Host -ForegroundColor Cyan "[ADMIN][INSTALL] Installing $PackageName from wheel ..."
108-
py -3.13 -m pip install .\dist\$($PackageName.Replace(".", "_").ToLower())-$PackageVersion-py3-none-any.whl
108+
py -3.14 -m pip install .\dist\$($PackageName.Replace(".", "_").ToLower())-$PackageVersion-py3-none-any.whl
109109

110110
Write-Host -ForegroundColor Cyan "[ADMIN][INSTALL] Closing window in 5 seconds ..."
111111
Start-Sleep -Seconds 5
@@ -142,9 +142,10 @@ if ($doccov)
142142
if ($liveunit)
143143
{ Write-Host -ForegroundColor DarkYellow "[live][UNIT] Running Unit Tests using pytest ..."
144144

145-
$env:GHDL_PREFIX = "C:\Tools\GHDL\6.0.0.dev0-ucrt64-mcode\lib\ghdl"
146145
$env:ENVIRONMENT_NAME = "Windows (x86-64)"
147-
pytest -raP --color=yes --junitxml=report/unit/unittest.xml --template=html1/index.html --report=report/unit/html/index.html --split-report tests/unit
146+
pytest -raP --color=yes --junitxml=report/unit/TestReportSummary.xml --template=html1/index.html --report=report/unit/html/index.html --split-report tests/unit
147+
148+
pyedaa-reports -v unittest "--merge=pyTest-JUnit:report/unit/TestReportSummary.xml" "--name=$PackageName" "--pytest=rewrite-dunder-init;reduce-depth:pytest.tests.unit" "--output=pyTest-JUnit:report/unit/unittest.xml"
148149

149150
if ($copyunit)
150151
{ cp -Recurse -Force .\report\unit\html\* .\doc\_build\html\unittests
@@ -159,9 +160,10 @@ elseif ($unit)
159160

160161
# Run unit tests
161162
$runUnitFunc = {
162-
$env:GHDL_PREFIX = "C:\Tools\GHDL\6.0.0.dev0-ucrt64-mcode\lib\ghdl"
163163
$env:ENVIRONMENT_NAME = "Windows (x86-64)"
164-
pytest -raP --color=yes --junitxml=report/unit/unittest.xml --template=html1/index.html --report=report/unit/html/index.html --split-report tests/unit
164+
pytest -raP --color=yes --junitxml=report/unit/TestReportSummary.xml --template=html1/index.html --report=report/unit/html/index.html --split-report tests/unit
165+
166+
pyedaa-reports -v unittest "--merge=pyTest-JUnit:report/unit/TestReportSummary.xml" "--name=$PackageName" "--pytest=rewrite-dunder-init;reduce-depth:pytest.tests.unit" "--output=pyTest-JUnit:report/unit/unittest.xml"
165167
}
166168
$unitJob = Start-Job -Name "UnitTests" -ScriptBlock $runUnitFunc
167169
$jobs += $unitJob
@@ -170,7 +172,6 @@ elseif ($unit)
170172
if ($livecov)
171173
{ Write-Host -ForegroundColor DarkMagenta "[live][COV] Running Unit Tests with coverage ..."
172174

173-
$env:GHDL_PREFIX = "C:\Tools\GHDL\6.0.0.dev0-ucrt64-mcode\lib\ghdl"
174175
$env:ENVIRONMENT_NAME = "Windows (x86-64)"
175176
coverage run --data-file=.coverage --rcfile=pyproject.toml -m pytest -ra --tb=line --color=yes tests/unit
176177

@@ -199,7 +200,6 @@ elseif ($cov)
199200

200201
# Collect coverage
201202
$collectCovFunc = {
202-
$env:GHDL_PREFIX = "C:\Tools\GHDL\6.0.0.dev0-ucrt64-mcode\lib\ghdl"
203203
$env:ENVIRONMENT_NAME = "Windows (x86-64)"
204204
coverage run --data-file=.coverage --rcfile=pyproject.toml -m pytest -ra --tb=line --color=yes tests/unit
205205

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@
4545
packageName=packageName,
4646
description="An abstract model of EDA tool projects.",
4747
gitHubNamespace=gitHubNamespace,
48+
additionalRequirements={
49+
"osvvm": ["pyEDAA.OSVVM ~= 0.6"],
50+
},
4851
sourceFileWithVersion=packageInformationFile,
4952
developmentStatus="beta",
5053
classifiers=list(DEFAULT_CLASSIFIERS) + [

tests/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ pytest-cov ~= 7.0
1010
# Static Type Checking
1111
mypy[reports] ~= 1.18
1212
typing_extensions ~= 4.15
13-
lxml ~= 6.0
13+
lxml >= 5.4, <7.0

0 commit comments

Comments
 (0)