Skip to content

Commit eba892d

Browse files
committed
Bumped dependencies.
1 parent b9c2cb4 commit eba892d

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

.github/workflows/Pipeline.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r6
1313
with:
1414
package_name: 'pySystemRDLModel'
15+
unittest_python_version: '3.13'
1516
bandit: 'true'
1617
pylint: 'false'
1718
codecov: 'true'

.idea/pySystemRDLModel.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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ the mandatory dependencies too.
9898
+---------------------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
9999
| `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.* |
100100
+---------------------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
101-
| `Coverage <https://GitHub.com/nedbat/coveragepy>`__ | ≥7.10 | `Apache License, 2.0 <https://GitHub.com/nedbat/coveragepy/blob/master/LICENSE.txt>`__ | *Not yet evaluated.* |
101+
| `Coverage <https://GitHub.com/nedbat/coveragepy>`__ | ≥7.11 | `Apache License, 2.0 <https://GitHub.com/nedbat/coveragepy/blob/master/LICENSE.txt>`__ | *Not yet evaluated.* |
102102
+---------------------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
103103
| `mypy <https://GitHub.com/python/mypy>`__ | ≥1.18 | `MIT <https://GitHub.com/python/mypy/blob/master/LICENSE>`__ | *Not yet evaluated.* |
104104
+---------------------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
@@ -158,7 +158,7 @@ the mandatory dependencies too.
158158
+-------------------------------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
159159
| `sphinx-copybutton <https://GitHub.com/executablebooks/sphinx-copybutton>`__ | ≥0.5 | `MIT <https://GitHub.com/executablebooks/sphinx-copybutton/blob/master/LICENSE>`__ | *Not yet evaluated.* |
160160
+-------------------------------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
161-
| `sphinx_autodoc_typehints <https://GitHub.com/agronholm/sphinx-autodoc-typehints>`__ | ≥3.1 | `MIT <https://GitHub.com/agronholm/sphinx-autodoc-typehints/blob/master/LICENSE>`__ | *Not yet evaluated.* |
161+
| `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.* |
162162
+-------------------------------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
163163

164164

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: 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

pySystemRDLModel/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
__email__ = "Paebbels@gmail.com"
5353
__copyright__ = "2023-2025, Patrick Lehmann"
5454
__license__ = "Apache License, Version 2.0"
55-
__version__ = "0.3.4"
55+
__version__ = "0.3.5"
5656

5757

5858
@export

run.ps1

Lines changed: 3 additions & 3 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-$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

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@
5454
],
5555
dataFiles={
5656
packageName: ["py.typed"]
57-
},
58-
debug=True
57+
}
5958
)
6059
)

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)