Skip to content

Commit 823a0f9

Browse files
committed
Disabled windows-arm job combinations due to missing lxml package for Windows aarch64.
1 parent ed525c0 commit 823a0f9

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

.github/workflows/Pipeline.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,11 @@ on:
1010
jobs:
1111
Pipeline:
1212
uses: pyTooling/Actions/.github/workflows/CompletePipeline.yml@r6
13-
permissions:
14-
contents: write # required for create tag
15-
actions: write # required for trigger workflow
1613
with:
1714
package_name: 'sphinx_reports'
1815
unittest_python_version: '3.13'
1916
unittest_python_version_list: '3.11 3.12 3.13 3.14'
17+
unittest_disable_list: 'windows-arm:* windows-arm:pypy-3.11'
2018
bandit: 'true'
2119
pylint: 'false'
2220
codecov: 'true'

doc/Dependency.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ the mandatory dependencies too.
166166
+-------------------------------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
167167
| `sphinx-copybutton <https://GitHub.com/executablebooks/sphinx-copybutton>`__ | ≥0.5 | `MIT <https://GitHub.com/executablebooks/sphinx-copybutton/blob/master/LICENSE>`__ | *Not yet evaluated.* |
168168
+-------------------------------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
169-
| `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.* |
169+
| `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.* |
170170
+-------------------------------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
171171

172172
.. 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.6
5050
sphinx-copybutton ~= 0.5
51-
sphinx_autodoc_typehints ~= 3.2
51+
sphinx_autodoc_typehints ~= 3.5
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.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"Topic :: Software Development :: Testing :: Unit",
5656
],
5757
developmentStatus="beta",
58-
pythonVersions=("3.11", "3.12", "3.13"),
58+
pythonVersions=("3.11", "3.12", "3.13", "3.14"),
5959
dataFiles={
6060
"sphinx_reports": ["static/*.css"]
6161
},

0 commit comments

Comments
 (0)