Skip to content

Commit b06f2e1

Browse files
committed
Bumped dependencies.
1 parent 32ac3f0 commit b06f2e1

File tree

16 files changed

+21
-21
lines changed

16 files changed

+21
-21
lines changed

.github/workflows/Pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
uses: actions/checkout@v5
105105

106106
- name: 📥 Download artifacts '${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).package_all }}' from 'Package' job
107-
uses: pyTooling/download-artifact@v5
107+
uses: pyTooling/download-artifact@v6
108108
with:
109109
name: ${{ fromJson(needs.UnitTestingParams.outputs.artifact_names).package_all }}
110110
path: install

dist/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
wheel ~= 0.45
2-
twine ~= 6.1
2+
twine ~= 6.2

doc/Dependency.rst

Lines changed: 3 additions & 3 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
+---------------------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
@@ -160,7 +160,7 @@ the mandatory dependencies too.
160160
+-------------------------------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
161161
| `sphinx-copybutton <https://GitHub.com/executablebooks/sphinx-copybutton>`__ | ≥0.5 | `MIT <https://GitHub.com/executablebooks/sphinx-copybutton/blob/master/LICENSE>`__ | *Not yet evaluated.* |
162162
+-------------------------------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
163-
| `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.* |
163+
| `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.* |
164164
+-------------------------------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
165165
| `sphinx_reports <https://github.com/pyTooling/sphinx-reports>`__ | ≥0.9 | `Apache License, 2.0 <https://GitHub.com/pyTooling/sphinx-reports/blob/main/LICENSE.md>`__ | *Not yet evaluated.* |
166166
+-------------------------------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
@@ -248,5 +248,5 @@ install the mandatory dependencies too.
248248
+==========================================================+==============+===========================================================================================+======================+
249249
| `wheel <https://GitHub.com/pypa/wheel>`__ | ≥0.45 | `MIT <https://github.com/pypa/wheel/blob/main/LICENSE.txt>`__ | *Not yet evaluated.* |
250250
+----------------------------------------------------------+--------------+-------------------------------------------------------------------------------------------+----------------------+
251-
| `Twine <https://GitHub.com/pypa/twine/>`__ | ≥6.1 | `Apache License, 2.0 <https://github.com/pypa/twine/blob/main/LICENSE>`__ | *Not yet evaluated.* |
251+
| `Twine <https://GitHub.com/pypa/twine/>`__ | ≥6.2 | `Apache License, 2.0 <https://github.com/pypa/twine/blob/main/LICENSE>`__ | *Not yet evaluated.* |
252252
+----------------------------------------------------------+--------------+-------------------------------------------------------------------------------------------+----------------------+

doc/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ sphinx_rtd_theme ~= 3.0
1212
sphinxcontrib-autoprogram ~= 0.1.9
1313
sphinxcontrib-mermaid ~= 1.0
1414
autoapi >= 2.0.1
15-
sphinx_design ~= 0.6.1
16-
sphinx-copybutton ~= 0.5.2
17-
sphinx_autodoc_typehints ~= 3.2
15+
sphinx_design ~= 0.6
16+
sphinx-copybutton ~= 0.5
17+
sphinx_autodoc_typehints ~= 3.5
1818
sphinx_reports ~= 0.9

example/C/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* *
1111
* @brief Code example in C *
1212
* *
13-
* @copyright Copyright 2020-2024 Patrick Lehmann - Boetzingen, Germany *
13+
* @copyright Copyright 2020-2025 Patrick Lehmann - Boetzingen, Germany *
1414
* *
1515
* Licensed under the Apache License, Version 2.0 (the "License"); *
1616
* you may not use this file except in compliance with the License. *

example/C/versioning.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* *
1111
* @brief C Structure definitions for pyVersioning *
1212
* *
13-
* @copyright Copyright 2020-2024 Patrick Lehmann - Boetzingen, Germany *
13+
* @copyright Copyright 2020-2025 Patrick Lehmann - Boetzingen, Germany *
1414
* *
1515
* Licensed under the Apache License, Version 2.0 (the "License"); *
1616
* you may not use this file except in compliance with the License. *

example/CXX/example.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* *
1111
* @brief Code example in C++ *
1212
* *
13-
* @copyright Copyright 2020-2024 Patrick Lehmann - Boetzingen, Germany *
13+
* @copyright Copyright 2020-2025 Patrick Lehmann - Boetzingen, Germany *
1414
* *
1515
* Licensed under the Apache License, Version 2.0 (the "License"); *
1616
* you may not use this file except in compliance with the License. *

example/CXX/versioning.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* *
1111
* @brief C++ Structure definitions for pyVersioning *
1212
* *
13-
* @copyright Copyright 2020-2024 Patrick Lehmann - Boetzingen, Germany *
13+
* @copyright Copyright 2020-2025 Patrick Lehmann - Boetzingen, Germany *
1414
* *
1515
* Licensed under the Apache License, Version 2.0 (the "License"); *
1616
* you may not use this file except in compliance with the License. *

pyVersioning/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
__email__ = "[email protected]"
3333
__copyright__ = "2020-2025, Patrick Lehmann"
3434
__license__ = "Apache License, Version 2.0"
35-
__version__ = "0.18.3"
35+
__version__ = "0.18.4"
3636
__keywords__ = ["Python3", "Template", "Versioning", "Git"]
3737

3838
from dataclasses import make_dataclass

run.ps1

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

3434
$PackageName = "pyVersioning"
35-
$PackageVersion = "0.18.2"
35+
$PackageVersion = "0.18.4"
3636

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

0 commit comments

Comments
 (0)