We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b776701 commit ec39c77Copy full SHA for ec39c77
CHANGES.rst
@@ -2,6 +2,12 @@
2
Release notes
3
=============
4
5
+0.6.1 (unreleased)
6
+==================
7
+
8
+Fixed Pythonb 3.8 support.
9
10
11
0.6.0 (2025-09-16)
12
==================
13
sphinx_scrapy/__init__.py
@@ -1,7 +1,12 @@
1
-from collections.abc import Generator
+from __future__ import annotations
-from sphinx.application import Sphinx
-from sphinx.config import Config
+from typing import TYPE_CHECKING
+if TYPE_CHECKING:
+ from collections.abc import Generator
+ from sphinx.application import Sphinx
+ from sphinx.config import Config
INTERSPHINX_MAPPING = {
"attrs": ("https://www.attrs.org/en/stable/", None),
0 commit comments