Skip to content

Commit

Permalink
add new package versions to info for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
lcjohnso committed Jun 13, 2024
1 parent 3d9a701 commit e4f8242
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion panoptes_cli/commands/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,12 @@ def info(ctx):
platform.system(),
platform.release(),
),
'Python version': platform.python_version(),
'API endpoint': ctx.parent.config['endpoint'],
'Click': importlib.metadata.version("click"),
'PyYAML': importlib.metadata.version("pyyaml"),
'Python version': platform.python_version(),
'requests': importlib.metadata.version("requests"),
'urllib3': importlib.metadata.version("urllib3")
}

try:
Expand Down

0 comments on commit e4f8242

Please sign in to comment.