Skip to content

Fix bug32 #34

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 19, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Remove some deprecated imports
  • Loading branch information
analog-cbarber committed Mar 19, 2025
commit ad77c5a55df08705e187002b5e6b120eda8a6522
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 1.16.0

* Compatibility with mkdocstrings-python 1.16.*
* Removed some deprecated imports from mkdoctrings

## 1.14.1

Expand Down
2 changes: 1 addition & 1 deletion src/mkdocstrings_handlers/python_xref/crossref.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from typing import Callable, List, Optional, cast

from griffe import Docstring, Object
from mkdocstrings.loggers import get_logger
from mkdocstrings import get_logger

__all__ = [
"substitute_relative_crossrefs"
Expand Down
6 changes: 2 additions & 4 deletions src/mkdocstrings_handlers/python_xref/handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,8 @@
from warnings import warn

from mkdocs.config.defaults import MkDocsConfig
from mkdocstrings.handlers.base import CollectorItem
from mkdocstrings.loggers import get_logger
from mkdocstrings_handlers.python import PythonOptions, PythonConfig
from mkdocstrings_handlers.python.handler import PythonHandler
from mkdocstrings import CollectorItem, get_logger
from mkdocstrings_handlers.python import PythonHandler, PythonOptions, PythonConfig

from .crossref import substitute_relative_crossrefs

Expand Down
Loading