8000 chore: Fix debug module location, add packages to debug info · diviyank/python@3a10040 · GitHub
[go: up one dir, main page]

Skip to content

Commit 3a10040

Browse files
committed
chore: Fix debug module location, add packages to debug info
1 parent b5bb8a9 commit 3a10040

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ PASTE TRACEBACK HERE
5050
redacting sensitive information. -->
5151

5252
```bash
53-
python -m mkdocstrings_handlers.debug # | xclip -selection clipboard
53+
python -m mkdocstrings_handlers.python.debug # | xclip -selection clipboard
5454
```
5555

5656
PASTE OUTPUT HERE

src/mkdocstrings_handlers/debug.py renamed to src/mkdocstrings_handlers/python/debug.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def get_debug_info() -> Environment:
7878
Environment information.
7979
"""
8080
py_name, py_version = _interpreter_name_version()
81-
packages = ["mkdocstrings-python"]
81+
packages = ["mkdocs", "mkdocstrings", "mkdocstrings-python", "griffe"]
8282
variables = ["PYTHONPATH", *[var for var in os.environ if var.startswith("MKDOCSTRINGS_PYTHON")]]
8383
return Environment(
8484
interpreter_name=py_name,

0 commit comments

Comments
 (0)
0