Skip to content

Commit

Permalink
chore: Fix debug module location, add packages to debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
pawamoy committed Nov 12, 2023
1 parent b5bb8a9 commit 3a10040
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ PASTE TRACEBACK HERE
redacting sensitive information. -->

```bash
python -m mkdocstrings_handlers.debug # | xclip -selection clipboard
python -m mkdocstrings_handlers.python.debug # | xclip -selection clipboard
```

PASTE OUTPUT HERE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def get_debug_info() -> Environment:
Environment information.
"""
py_name, py_version = _interpreter_name_version()
packages = ["mkdocstrings-python"]
packages = ["mkdocs", "mkdocstrings", "mkdocstrings-python", "griffe"]
variables = ["PYTHONPATH", *[var for var in os.environ if var.startswith("MKDOCSTRINGS_PYTHON")]]
return Environment(
interpreter_name=py_name,
Expand Down

0 comments on commit 3a10040

Please sign in to comment.