From e06c3c45cbfca004b90d63214d12e9542c648dd2 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Wed, 18 Sep 2024 14:14:59 -0400 Subject: [PATCH] Also report python version --- dandi/cli/command.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dandi/cli/command.py b/dandi/cli/command.py index aa1871c45..37c4818fc 100644 --- a/dandi/cli/command.py +++ b/dandi/cli/command.py @@ -124,8 +124,9 @@ def main(ctx, log_level, pdb=False): ) lgr.info( - "dandi %s, " + "python %s, dandi %s, " + ", ".join("%s %s" % (e, get_module_version(e)) for e in sorted(exts)), + sys.version.split()[0], __version__, extra={"file_only": True}, )