Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# mkdocstring-python-xref changes

## 1.16.1

* Fix sdist distributions (should enable conda-forge to build)

## 1.16.0

* Compatibility with mkdocstrings-python 1.16.*
Expand Down
7 changes: 0 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,9 @@ include = [
"src/mkdocstrings_handlers/python_xref/py.typed",
]

[tool.hatch.build.targets.sdist]
packages = [
"src/mkdocstrings_handlers",
# "src/mkdocstrings_handlers/python_xref",
]

[tool.hatch.build.targets.wheel]
packages = [
"src/mkdocstrings_handlers",
# "src/mkdocstrings_handlers/python_xref",
]

[tool.mypy]
Expand Down
3 changes: 1 addition & 2 deletions src/mkdocstrings_handlers/python_xref/VERSION
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
1.16

1.16.1
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