We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13286f5 commit 4c601ceCopy full SHA for 4c601ce
2 files changed
pyproject.toml
@@ -33,7 +33,7 @@ docs = [
33
"matplotlib",
34
"myst-parser",
35
"nbsphinx",
36
- "sphinx",
+ "sphinx<9",
37
"sphinx-autobuild",
38
"sphinx-click",
39
"sphinx-copybutton",
src/pytask_parallel/wrappers.py
@@ -217,7 +217,7 @@ def _render_traceback_to_string(
217
traceback = Traceback(exc_info, show_locals=show_locals)
218
segments = console.render(cast("Any", traceback), options=console_options)
219
text = "".join(segment.text for segment in segments)
220
- return (*exc_info[:2], text) # ty: ignore[invalid-return-type]
+ return (*exc_info[:2], text)
221
222
223
def _handle_function_products(
0 commit comments