We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
@wraps(BaseException.add_note)
1 parent 90cbc79 commit 607bb9cCopy full SHA for 607bb9c
pyproject.toml
@@ -111,7 +111,8 @@ test-full = [
111
"scanpy[dask-ml]",
112
]
113
doc = [
114
- "sphinx>=7",
+ # https://github.com/sphinx-doc/sphinx/issues/13366
115
+ "sphinx>=7,<8.2.0",
116
"sphinx-book-theme>=1.1.0",
117
"scanpydoc>=0.14.1",
118
"sphinx-autodoc-typehints>=1.25.2",
src/scanpy/_compat.py
@@ -108,7 +108,6 @@ def old_positionals(*old_positionals: str):
108
109
if sys.version_info >= (3, 11):
110
- @wraps(BaseException.add_note)
def add_note(exc: BaseException, note: str) -> None:
exc.add_note(note)
else:
0 commit comments