Skip to content

Commit 1d489a5

Browse files
committed
Remove ExtensionMetadata import
Signed-off-by: Liran Funaro <liran.funaro@gmail.com>
1 parent 9c34113 commit 1d489a5

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: [ "3.12" ]
10+
python-version: [ "3.14" ]
1111

1212
steps:
1313
- uses: actions/checkout@v3
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ubuntu-latest
3030
strategy:
3131
matrix:
32-
python-version: [ "3.11", "3.12", "3.13" ]
32+
python-version: [ "3.11", "3.12", "3.13", "3.14" ]
3333
steps:
3434
- uses: actions/checkout@v3
3535
- name: Set up Python ${{ matrix.python-version }}

sphinx_markdown_builder/__init__.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,13 @@
22
A Sphinx extension to add markdown generation support.
33
"""
44

5-
from sphinx.util.typing import ExtensionMetadata
6-
75
from sphinx_markdown_builder.builder import MarkdownBuilder
86

9-
107
__version__ = "0.6.9"
118
__docformat__ = "reStructuredText"
129

1310

14-
def setup(app) -> ExtensionMetadata:
11+
def setup(app):
1512
app.add_builder(MarkdownBuilder)
1613
app.add_config_value("markdown_http_base", "", "html", str)
1714
app.add_config_value("markdown_uri_doc_suffix", ".md", "html", str)

0 commit comments

Comments
 (0)