Skip to content

Commit 80643ee

Browse files
committed
Bumped dependencies.
1 parent 2b86090 commit 80643ee

8 files changed

Lines changed: 17 additions & 17 deletions

File tree

dist/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
wheel ~= 0.46.3
1+
wheel ~= 0.47.0
22
twine ~= 6.2

doc/Dependency.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -115,17 +115,17 @@ the mandatory dependencies too.
115115
+---------------------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
116116
| **Package** | **Version** | **License** | **Dependencies** |
117117
+=====================================================================+=============+========================================================================================+======================+
118-
| `pytest <https://GitHub.com/pytest-dev/pytest>`__ | ≥9.0 | `MIT <https://GitHub.com/pytest-dev/pytest/blob/master/LICENSE>`__ | *Not yet evaluated.* |
118+
| `pytest <https://GitHub.com/pytest-dev/pytest>`__ | ≥9.1 | `MIT <https://GitHub.com/pytest-dev/pytest/blob/master/LICENSE>`__ | *Not yet evaluated.* |
119119
+---------------------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
120120
| `pytest-cov <https://GitHub.com/pytest-dev/pytest-cov>`__ | ≥7.1 | `MIT <https://GitHub.com/pytest-dev/pytest-cov/blob/master/LICENSE>`__ | *Not yet evaluated.* |
121121
+---------------------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
122-
| `Coverage <https://GitHub.com/nedbat/coveragepy>`__ | ≥7.13 | `Apache License, 2.0 <https://GitHub.com/nedbat/coveragepy/blob/master/LICENSE.txt>`__ | *Not yet evaluated.* |
122+
| `Coverage <https://GitHub.com/nedbat/coveragepy>`__ | ≥7.15 | `Apache License, 2.0 <https://GitHub.com/nedbat/coveragepy/blob/master/LICENSE.txt>`__ | *Not yet evaluated.* |
123123
+---------------------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
124-
| `mypy <https://GitHub.com/python/mypy>`__ |1.19 | `MIT <https://GitHub.com/python/mypy/blob/master/LICENSE>`__ | *Not yet evaluated.* |
124+
| `mypy <https://GitHub.com/python/mypy>`__ |2.1 | `MIT <https://GitHub.com/python/mypy/blob/master/LICENSE>`__ | *Not yet evaluated.* |
125125
+---------------------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
126-
| `typing-extensions <https://GitHub.com/python/typing_extensions>`__ | ≥4.15 | `PSF-2.0 <https://github.com/python/typing_extensions/blob/main/LICENSE>`__ | *Not yet evaluated.* |
126+
| `typing-extensions <https://GitHub.com/python/typing_extensions>`__ | ≥4.16 | `PSF-2.0 <https://github.com/python/typing_extensions/blob/main/LICENSE>`__ | *Not yet evaluated.* |
127127
+---------------------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
128-
| `lxml <https://GitHub.com/lxml/lxml>`__ | ≥6.0 | `BSD 3-Clause <https://GitHub.com/lxml/lxml/blob/master/LICENSE.txt>`__ | *Not yet evaluated.* |
128+
| `lxml <https://GitHub.com/lxml/lxml>`__ | ≥6.1 | `BSD 3-Clause <https://GitHub.com/lxml/lxml/blob/master/LICENSE.txt>`__ | *Not yet evaluated.* |
129129
+---------------------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
130130

131131

@@ -179,7 +179,7 @@ the mandatory dependencies too.
179179
+-------------------------------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
180180
| `sphinx-copybutton <https://GitHub.com/executablebooks/sphinx-copybutton>`__ | ≥0.5 | `MIT <https://GitHub.com/executablebooks/sphinx-copybutton/blob/master/LICENSE>`__ | *Not yet evaluated.* |
181181
+-------------------------------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
182-
| `sphinx_autodoc_typehints <https://GitHub.com/agronholm/sphinx-autodoc-typehints>`__ | ≥3.10 | `MIT <https://GitHub.com/agronholm/sphinx-autodoc-typehints/blob/master/LICENSE>`__ | *Not yet evaluated.* |
182+
| `sphinx_autodoc_typehints <https://GitHub.com/agronholm/sphinx-autodoc-typehints>`__ | ≥3.12 | `MIT <https://GitHub.com/agronholm/sphinx-autodoc-typehints/blob/master/LICENSE>`__ | *Not yet evaluated.* |
183183
+-------------------------------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
184184

185185
.. TODO:: document the usage of

doc/Overview.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ See the following :file:`doc/requirements.txt` file as an example with commonly
4848
autoapi ~= 2.0.1
4949
sphinx_design ~= 0.7.0
5050
sphinx-copybutton ~= 0.5.2
51-
sphinx_autodoc_typehints ~= 3.10
51+
sphinx_autodoc_typehints ~= 3.12
5252
sphinx_reports ~= 1.0 # <= new entry
5353
5454
Finally, the extension needs to be enabled in Sphinx's :file:`conf.py`, so the extension is loaded by Sphinx.

doc/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ sphinxcontrib-mermaid ~= 2.0
1313
autoapi ~= 2.0.1
1414
sphinx_design ~= 0.7.0
1515
sphinx-copybutton ~= 0.5.2
16-
sphinx_autodoc_typehints ~= 3.10
16+
sphinx_autodoc_typehints ~= 3.12

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build-system]
22
requires = [
3-
"setuptools >= 80.0",
3+
"setuptools >= 83.0",
44
"pyTooling ~= 8.11"
55
]
66
build-backend = "setuptools.build_meta"
@@ -10,7 +10,7 @@ line-length = 120
1010

1111
[tool.mypy]
1212
packages = ["sphinx_reports"]
13-
python_version = "3.13"
13+
python_version = "3.14"
1414
#ignore_missing_imports = true
1515
strict = true
1616
pretty = true

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ sphinx >= 9.1, < 10.0
44
docutils >= 0.22.0
55
docutils_stubs >= 0.0.22
66

7-
Coverage ~= 7.13
7+
Coverage ~= 7.15
88
docstr_coverage ~= 2.3.2

tests/typing/requirements.txt

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

33
# Static Type Checking
4-
mypy[reports] ~= 1.19
5-
typing_extensions ~= 4.15
6-
lxml >= 5.4, <7.0
4+
mypy[reports] ~= 2.1
5+
typing_extensions ~= 4.16
6+
lxml >= 6.1, <7.0

tests/unit/requirements.txt

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

33
# Coverage collection
4-
Coverage ~= 7.13
4+
Coverage ~= 7.15
55

66
# Test Runner
7-
pytest ~= 9.0
7+
pytest ~= 9.1
88
pytest-cov ~= 7.1

0 commit comments

Comments
 (0)