Skip to content

Commit 556fcae

Browse files
committed
Bumped dependencies.
1 parent a08a4d1 commit 556fcae

File tree

6 files changed

+13
-12
lines changed

6 files changed

+13
-12
lines changed

.github/workflows/Pipeline.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,11 @@ jobs:
1717
UnitTestingParams:
1818
uses: pyTooling/Actions/.github/workflows/Parameters.yml@r6
1919
with:
20-
package_namespace: 'pyEDAA'
21-
package_name: 'CLITool'
22-
exclude_list: 'ubuntu-arm:* windows-arm:*'
23-
disable_list: 'windows:*'
20+
package_namespace: 'pyEDAA'
21+
package_name: 'CLITool'
22+
python_version_list: '3.11 3.12 3.13 3.14'
23+
exclude_list: 'ubuntu-arm:* windows-arm:*'
24+
disable_list: 'windows:*'
2425

2526
UnitTesting:
2627
uses: pyTooling/Actions/.github/workflows/UnitTesting.yml@r6

doc/Dependency.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ the mandatory dependencies too.
102102
+---------------------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
103103
| `pytest-cov <https://GitHub.com/pytest-dev/pytest-cov>`__ | ≥7.0 | `MIT <https://GitHub.com/pytest-dev/pytest-cov/blob/master/LICENSE>`__ | *Not yet evaluated.* |
104104
+---------------------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
105-
| `Coverage <https://GitHub.com/nedbat/coveragepy>`__ | ≥7.10 | `Apache License, 2.0 <https://GitHub.com/nedbat/coveragepy/blob/master/LICENSE.txt>`__ | *Not yet evaluated.* |
105+
| `Coverage <https://GitHub.com/nedbat/coveragepy>`__ | ≥7.11 | `Apache License, 2.0 <https://GitHub.com/nedbat/coveragepy/blob/master/LICENSE.txt>`__ | *Not yet evaluated.* |
106106
+---------------------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
107107
| `mypy <https://GitHub.com/python/mypy>`__ | ≥1.18 | `MIT <https://GitHub.com/python/mypy/blob/master/LICENSE>`__ | *Not yet evaluated.* |
108108
+---------------------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
@@ -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/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ sphinxcontrib-mermaid ~= 1.0
1313
autoapi >= 2.0.1
1414
sphinx_design ~= 0.6
1515
sphinx-copybutton >= 0.5
16-
sphinx_autodoc_typehints ~= 3.2
16+
sphinx_autodoc_typehints ~= 3.5
1717
sphinx_reports ~= 0.9

pyEDAA/CLITool/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
__email__ = "[email protected]"
3535
__copyright__ = "2014-2025, Patrick Lehmann, Unai Martinez-Corral"
3636
__license__ = "Apache License, Version 2.0"
37-
__version__ = "0.3.8"
37+
__version__ = "0.3.9"
3838
__keywords__ = ["cli", "abstraction layer", "eda"]
3939

4040
from pathlib import Path

run.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Param(
3333
)
3434

3535
$PackageName = "pyEDAA.CLITool"
36-
$PackageVersion = "0.3.6"
36+
$PackageVersion = "0.3.9"
3737

3838
# set default values
3939
$EnableDebug = [bool]$PSCmdlet.MyInvocation.BoundParameters["Debug"]
@@ -105,7 +105,7 @@ if ($install)
105105
{ Write-Host -ForegroundColor Cyan "[ADMIN][UNINSTALL] Uninstalling $PackageName ..."
106106
py -3.13 -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-$PackageVersion-py3-none-any.whl
108+
py -3.13 -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

tests/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-r ../requirements.txt
22

33
# Coverage collection
4-
Coverage ~= 7.10
4+
Coverage ~= 7.11
55

66
# Test Runner
77
pytest ~= 8.4
@@ -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)