Skip to content

Commit 32be284

Browse files
author
Michael McNeil Forbes
committed
REL: 0.4.4
--HG-- branch : default/0.4.3
1 parent fad53eb commit 32be284

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGES

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
33
This file describes user-visible changes between the extension versions.
44

5+
Version 0.4.4 (2025-12-25)
6+
==========================
7+
* Support Sphinx up to 9.0.4 (tested) and Python up to 3.14.
8+
* Resolves issue #17 (Sphinx 9 support) but with `autodoc_use_legacy_class_based = True`
9+
* Still supports back to 3.7 (but 3.7 CI tests fail due to installation issues).
10+
511
Version 0.4.3 (2024-01-17)
612
==========================
713
* Support Sphinx up to 7.2.6 (tested) and Python up to 3.12.

Maintainers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ read [`README.md`](README.md).
5050
## TL;DR
5151

5252
```bash
53-
# Use your system to install python3.7 through python3.11 and pipx
53+
# Use your system to install python3.7 through python3.14 and pipx
5454
pipx install nox
5555
pipx install pdm
5656

@@ -62,7 +62,7 @@ make doc-server
6262

6363
# Open a shell for development
6464
make shell
65-
PYTHON=python3.10 make shell
65+
PYTHON=python3.13 make shell
6666
```
6767

6868
## Testing
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.4.4.dev0"
1+
__version__ = "0.4.4"

src/sphinxcontrib/zopeext/autointerface.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
setup
4343
4444
"""
45+
4546
import logging
4647
from typing import Any, Dict, Tuple, List, Union
4748

@@ -58,7 +59,7 @@
5859
ObjectMember,
5960
)
6061

61-
logger = logging.getLogger('zopeext.autointerface')
62+
logger = logging.getLogger("zopeext.autointerface")
6263

6364
# This has been removed from sphinx since version 7.2.0.
6465
ObjectMembers = Union[List[ObjectMember], List[Tuple[str, Any]]]

0 commit comments

Comments
 (0)