Skip to content

Commit 172b7a3

Browse files
committed
fixup! Update handler for mkdocstrings 0.28
1 parent e60fdee commit 172b7a3

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

mkdocstrings_handlers/vba/_handler.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
from __future__ import annotations
66

7+
from copy import deepcopy
78
from pathlib import Path
89
from typing import (
910
Any,
@@ -114,8 +115,8 @@ def get_options(self, local_options: Mapping[str, Any]) -> Dict[str, Any]:
114115
Returns:
115116
The combined options.
116117
"""
117-
return {**self.default_config, **local_options}
118-
118+
return deepcopy({**self.default_config, **local_options})
119+
119120
def collect(
120121
self,
121122
identifier: str,

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"setuptools_scm",
2929
],
3030
install_requires=[
31-
"mkdocstrings>=0.28,<1",
31+
"mkdocstrings>=0.30,<1",
3232
"griffe>=1.3.1,<2",
3333
"mkdocs-material>=9.2,<10",
3434
],

0 commit comments

Comments
 (0)