Skip to content

Fix sdist build #36

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 22, 2025
Merged
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
Fix deprecation warnings in tests
  • Loading branch information
analog-cbarber committed Mar 22, 2025
commit 3d23202f39844f2066c8c0fb0a4d25ad7269edbb
6 changes: 3 additions & 3 deletions tests/test_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
import pytest

from griffe import Docstring, Object, Module
from mkdocstrings.handlers.base import CollectionError
from mkdocstrings_handlers.python.config import PythonConfig
from mkdocstrings_handlers.python.handler import PythonHandler
from mkdocstrings import CollectionError
from mkdocstrings_handlers.python import PythonConfig
from mkdocstrings_handlers.python import PythonHandler
from mkdocstrings_handlers.python_xref.handler import (
PythonRelXRefHandler,
PythonRelXRefOptions
Expand Down
Loading