Using the ctapipe Provenance service

The provenance functionality is used automatically when you use most of ctapipe functionality (particularly ctapipe.core.Tool and functions in ctapipe.io and ctapipe.utils), so normally you don’t have to work with it directly. It tracks both input and output files, as well as details of the machine and software environment on which a Tool executed.

Here we show some very low-level functions of this system:

[1]:
from ctapipe.core import Provenance
from pprint import pprint

Activities

The basis of Provenance is an activity, which is generally an executable or step in a script. Activities can be nested (e.g. with sub-activities), as shown below, but normally this is not required:

[2]:
p = Provenance()  # note this is a singleton, so only ever one global provenence object
p.clear()
p.start_activity()
p.add_input_file("test.txt")

p.start_activity("sub")
p.add_input_file("subinput.txt")
p.add_input_file("anothersubinput.txt")
p.add_output_file("suboutput.txt")
p.finish_activity("sub")

p.start_activity("sub2")
p.add_input_file("sub2input.txt")
p.finish_activity("sub2")

p.finish_activity()
[3]:
p.finished_activity_names
[3]:
['sub',
 'sub2',
 '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/bin/python']

Activities have associated input and output entities (files or other objects)

[4]:
[ (x['activity_name'], x['input']) for x in p.provenance]
[4]:
[('sub',
  [{'url': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.17.0/docs/examples/subinput.txt',
    'role': None},
   {'url': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.17.0/docs/examples/anothersubinput.txt',
    'role': None}]),
 ('sub2',
  [{'url': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.17.0/docs/examples/sub2input.txt',
    'role': None}]),
 ('/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/bin/python',
  [{'url': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.17.0/docs/examples/test.txt',
    'role': None}])]

Activities track when they were started and finished:

[5]:
[ (x['activity_name'],x['duration_min']) for x in p.provenance]
[5]:
[('sub', 0.0001500000000209667),
 ('sub2', 0.00014999999994103064),
 ('/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/bin/python',
  0.0023500000000353793)]

Full provenance

The provence object is a list of activitites, and for each lots of details are collected:

[6]:
p.provenance[0]
[6]:
{'activity_name': 'sub',
 'activity_uuid': '823334a2-0625-4025-94f2-73e7eecd0fd9',
 'start': {'time_utc': '2022-10-25T09:46:16.123'},
 'stop': {'time_utc': '2022-10-25T09:46:16.132'},
 'system': {'ctapipe_version': '0.17.0',
  'ctapipe_resources_version': 'not installed',
  'eventio_version': '1.10.0',
  'ctapipe_svc_path': None,
  'executable': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/bin/python',
  'platform': {'architecture_bits': '64bit',
   'architecture_linkage': 'ELF',
   'machine': 'x86_64',
   'processor': 'x86_64',
   'node': 'build-18436802-project-702899-ctapipe',
   'version': '#6-Ubuntu SMP Thu Mar 31 09:44:20 UTC 2022',
   'system': 'Linux',
   'release': '5.15.0-1004-aws',
   'libcver': ('glibc', '2.27'),
   'n_cpus': 2,
   'boot_time': '2022-10-24T20:39:40.000'},
  'python': {'version_string': '3.8.6 (default, Oct 19 2020, 15:10:29) \n[GCC 7.5.0]',
   'version': ('3', '8', '6'),
   'compiler': 'GCC 7.5.0',
   'implementation': 'CPython',
   'packages': [{'name': 'Babel',
     'version': '2.10.3',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'Jinja2',
     'version': '3.0.3',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'MarkupSafe',
     'version': '2.1.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'Pillow',
     'version': '9.2.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'PyYAML',
     'version': '6.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'Pygments',
     'version': '2.13.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'QtPy',
     'version': '2.2.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'Send2Trash',
     'version': '1.8.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'Sphinx',
     'version': '3.5.4',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'alabaster',
     'version': '0.7.12',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'anyio',
     'version': '3.6.2',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'argon2-cffi',
     'version': '21.3.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'argon2-cffi-bindings',
     'version': '21.2.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'astropy',
     'version': '5.1.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'asttokens',
     'version': '2.0.8',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'attrs',
     'version': '22.1.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'backcall',
     'version': '0.2.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'beautifulsoup4',
     'version': '4.11.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'bleach',
     'version': '5.0.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'bokeh',
     'version': '2.4.3',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'certifi',
     'version': '2022.9.24',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'cffi',
     'version': '1.15.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'charset-normalizer',
     'version': '2.1.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'commonmark',
     'version': '0.9.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'contourpy',
     'version': '1.0.5',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'corsikaio',
     'version': '0.2.5',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'ctapipe',
     'version': '0.17.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'cycler',
     'version': '0.11.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'debugpy',
     'version': '1.6.3',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'decorator',
     'version': '5.1.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'defusedxml',
     'version': '0.7.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'docutils',
     'version': '0.16',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'entrypoints',
     'version': '0.4',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'eventio',
     'version': '1.10.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'executing',
     'version': '1.1.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'fastjsonschema',
     'version': '2.16.2',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'fonttools',
     'version': '4.38.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'graphviz',
     'version': '0.20.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'h5py',
     'version': '3.7.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'idna',
     'version': '3.4',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'imagesize',
     'version': '1.4.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'iminuit',
     'version': '2.17.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'importlib-metadata',
     'version': '5.0.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'importlib-resources',
     'version': '5.10.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'ipykernel',
     'version': '6.16.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'ipython',
     'version': '8.5.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'ipython-genutils',
     'version': '0.2.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'ipywidgets',
     'version': '8.0.2',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'jedi',
     'version': '0.18.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'joblib',
     'version': '1.2.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'jsonschema',
     'version': '4.16.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'jupyter',
     'version': '1.0.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'jupyter-client',
     'version': '7.4.3',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'jupyter-console',
     'version': '6.4.4',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'jupyter-core',
     'version': '4.11.2',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'jupyter-server',
     'version': '1.21.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'jupyterlab-pygments',
     'version': '0.2.2',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'jupyterlab-widgets',
     'version': '3.0.3',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'kiwisolver',
     'version': '1.4.4',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'llvmlite',
     'version': '0.39.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'matplotlib',
     'version': '3.6.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'matplotlib-inline',
     'version': '0.1.6',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'mistune',
     'version': '2.0.4',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'mock',
     'version': '1.0.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'nbclassic',
     'version': '0.4.5',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'nbclient',
     'version': '0.7.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'nbconvert',
     'version': '7.2.2',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'nbformat',
     'version': '5.7.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'nbsphinx',
     'version': '0.8.9',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'nest-asyncio',
     'version': '1.5.6',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'notebook',
     'version': '6.5.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'notebook-shim',
     'version': '0.2.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'numba',
     'version': '0.56.3',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'numexpr',
     'version': '2.8.3',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'numpy',
     'version': '1.23.4',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'numpydoc',
     'version': '1.4.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'packaging',
     'version': '21.3',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'pandas',
     'version': '1.5.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'pandocfilters',
     'version': '1.5.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'parso',
     'version': '0.8.3',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'pexpect',
     'version': '4.8.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'pickleshare',
     'version': '0.7.5',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'pip',
     'version': '22.3',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'pkgutil-resolve-name',
     'version': '1.3.10',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'prometheus-client',
     'version': '0.15.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'prompt-toolkit',
     'version': '3.0.31',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'psutil',
     'version': '5.9.3',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'ptyprocess',
     'version': '0.7.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'pure-eval',
     'version': '0.2.2',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'pycparser',
     'version': '2.21',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'pyerfa',
     'version': '2.0.0.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'pyparsing',
     'version': '3.0.9',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'pyrsistent',
     'version': '0.18.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'python-dateutil',
     'version': '2.8.2',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'pytz',
     'version': '2022.5',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'pyzmq',
     'version': '24.0.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'qtconsole',
     'version': '5.3.2',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'readthedocs-sphinx-ext',
     'version': '2.1.9',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'recommonmark',
     'version': '0.5.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'requests',
     'version': '2.28.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'scikit-learn',
     'version': '1.1.2',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'scipy',
     'version': '1.9.3',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'setuptools',
     'version': '65.5.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'setuptools-scm',
     'version': '7.0.5',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'six',
     'version': '1.16.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'sniffio',
     'version': '1.3.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'snowballstemmer',
     'version': '2.2.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'soupsieve',
     'version': '2.3.2.post1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'sphinx-automodapi',
     'version': '0.14.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'sphinx-rtd-theme',
     'version': '1.0.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'sphinxcontrib-applehelp',
     'version': '1.0.2',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'sphinxcontrib-devhelp',
     'version': '1.0.2',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'sphinxcontrib-htmlhelp',
     'version': '2.0.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'sphinxcontrib-jsmath',
     'version': '1.0.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'sphinxcontrib-qthelp',
     'version': '1.0.3',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'sphinxcontrib-serializinghtml',
     'version': '1.1.5',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'stack-data',
     'version': '0.5.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'tables',
     'version': '3.7.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'terminado',
     'version': '0.16.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'threadpoolctl',
     'version': '3.1.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'tinycss2',
     'version': '1.2.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'tomli',
     'version': '2.0.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'tornado',
     'version': '6.2',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'tqdm',
     'version': '4.64.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'traitlets',
     'version': '5.5.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'typing-extensions',
     'version': '4.4.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'urllib3',
     'version': '1.26.12',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'wcwidth',
     'version': '0.2.5',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'webencodings',
     'version': '0.5.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'websocket-client',
     'version': '1.4.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'wheel',
     'version': '0.37.1',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'widgetsnbextension',
     'version': '4.0.3',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'zipp',
     'version': '3.10.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'},
    {'name': 'zstandard',
     'version': '0.18.0',
     'path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages'}]},
  'environment': {'CONDA_DEFAULT_ENV': None,
   'CONDA_PREFIX': None,
   'CONDA_PYTHON_EXE': None,
   'CONDA_EXE': None,
   'CONDA_PROMPT_MODIFIER': None,
   'CONDA_SHLVL': None,
   'PATH': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/bin:/home/docs/.pyenv/shims:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/docs/.conda/bin:/home/docs/.pyenv/bin',
   'LD_LIBRARY_PATH': None,
   'DYLD_LIBRARY_PATH': None,
   'USER': None,
   'HOME': '/home/docs',
   'SHELL': None},
  'arguments': ['/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages/ipykernel_launcher.py',
   '-f',
   '/tmp/tmp93r2rkpb.json',
   '--HistoryManager.hist_file=:memory:'],
  'start_time_utc': '2022-10-25T09:46:16.131'},
 'input': [{'url': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.17.0/docs/examples/subinput.txt',
   'role': None},
  {'url': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.17.0/docs/examples/anothersubinput.txt',
   'role': None}],
 'output': [{'url': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.17.0/docs/examples/suboutput.txt',
   'role': None}],
 'status': 'sub',
 'duration_min': 0.0001500000000209667}

This can be better represented in JSON:

[7]:
print(p.as_json(indent=2))
[
  {
    "activity_name": "sub",
    "activity_uuid": "823334a2-0625-4025-94f2-73e7eecd0fd9",
    "start": {
      "time_utc": "2022-10-25T09:46:16.123"
    },
    "stop": {
      "time_utc": "2022-10-25T09:46:16.132"
    },
    "system": {
      "ctapipe_version": "0.17.0",
      "ctapipe_resources_version": "not installed",
      "eventio_version": "1.10.0",
      "ctapipe_svc_path": null,
      "executable": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/bin/python",
      "platform": {
        "architecture_bits": "64bit",
        "architecture_linkage": "ELF",
        "machine": "x86_64",
        "processor": "x86_64",
        "node": "build-18436802-project-702899-ctapipe",
        "version": "#6-Ubuntu SMP Thu Mar 31 09:44:20 UTC 2022",
        "system": "Linux",
        "release": "5.15.0-1004-aws",
        "libcver": [
          "glibc",
          "2.27"
        ],
        "n_cpus": 2,
        "boot_time": "2022-10-24T20:39:40.000"
      },
      "python": {
        "version_string": "3.8.6 (default, Oct 19 2020, 15:10:29) \n[GCC 7.5.0]",
        "version": [
          "3",
          "8",
          "6"
        ],
        "compiler": "GCC 7.5.0",
        "implementation": "CPython",
        "packages": [
          {
            "name": "Babel",
            "version": "2.10.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "Jinja2",
            "version": "3.0.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "MarkupSafe",
            "version": "2.1.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "Pillow",
            "version": "9.2.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "PyYAML",
            "version": "6.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "Pygments",
            "version": "2.13.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "QtPy",
            "version": "2.2.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "Send2Trash",
            "version": "1.8.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "Sphinx",
            "version": "3.5.4",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "alabaster",
            "version": "0.7.12",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "anyio",
            "version": "3.6.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "argon2-cffi",
            "version": "21.3.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "argon2-cffi-bindings",
            "version": "21.2.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "astropy",
            "version": "5.1.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "asttokens",
            "version": "2.0.8",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "attrs",
            "version": "22.1.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "backcall",
            "version": "0.2.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "beautifulsoup4",
            "version": "4.11.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "bleach",
            "version": "5.0.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "bokeh",
            "version": "2.4.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "certifi",
            "version": "2022.9.24",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "cffi",
            "version": "1.15.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "charset-normalizer",
            "version": "2.1.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "commonmark",
            "version": "0.9.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "contourpy",
            "version": "1.0.5",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "corsikaio",
            "version": "0.2.5",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "ctapipe",
            "version": "0.17.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "cycler",
            "version": "0.11.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "debugpy",
            "version": "1.6.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "decorator",
            "version": "5.1.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "defusedxml",
            "version": "0.7.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "docutils",
            "version": "0.16",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "entrypoints",
            "version": "0.4",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "eventio",
            "version": "1.10.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "executing",
            "version": "1.1.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "fastjsonschema",
            "version": "2.16.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "fonttools",
            "version": "4.38.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "graphviz",
            "version": "0.20.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "h5py",
            "version": "3.7.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "idna",
            "version": "3.4",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "imagesize",
            "version": "1.4.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "iminuit",
            "version": "2.17.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "importlib-metadata",
            "version": "5.0.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "importlib-resources",
            "version": "5.10.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "ipykernel",
            "version": "6.16.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "ipython",
            "version": "8.5.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "ipython-genutils",
            "version": "0.2.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "ipywidgets",
            "version": "8.0.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "jedi",
            "version": "0.18.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "joblib",
            "version": "1.2.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "jsonschema",
            "version": "4.16.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "jupyter",
            "version": "1.0.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "jupyter-client",
            "version": "7.4.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "jupyter-console",
            "version": "6.4.4",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "jupyter-core",
            "version": "4.11.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "jupyter-server",
            "version": "1.21.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "jupyterlab-pygments",
            "version": "0.2.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "jupyterlab-widgets",
            "version": "3.0.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "kiwisolver",
            "version": "1.4.4",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "llvmlite",
            "version": "0.39.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "matplotlib",
            "version": "3.6.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "matplotlib-inline",
            "version": "0.1.6",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "mistune",
            "version": "2.0.4",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "mock",
            "version": "1.0.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "nbclassic",
            "version": "0.4.5",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "nbclient",
            "version": "0.7.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "nbconvert",
            "version": "7.2.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "nbformat",
            "version": "5.7.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "nbsphinx",
            "version": "0.8.9",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "nest-asyncio",
            "version": "1.5.6",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "notebook",
            "version": "6.5.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "notebook-shim",
            "version": "0.2.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "numba",
            "version": "0.56.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "numexpr",
            "version": "2.8.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "numpy",
            "version": "1.23.4",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "numpydoc",
            "version": "1.4.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "packaging",
            "version": "21.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pandas",
            "version": "1.5.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pandocfilters",
            "version": "1.5.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "parso",
            "version": "0.8.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pexpect",
            "version": "4.8.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pickleshare",
            "version": "0.7.5",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pip",
            "version": "22.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pkgutil-resolve-name",
            "version": "1.3.10",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "prometheus-client",
            "version": "0.15.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "prompt-toolkit",
            "version": "3.0.31",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "psutil",
            "version": "5.9.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "ptyprocess",
            "version": "0.7.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pure-eval",
            "version": "0.2.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pycparser",
            "version": "2.21",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pyerfa",
            "version": "2.0.0.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pyparsing",
            "version": "3.0.9",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pyrsistent",
            "version": "0.18.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "python-dateutil",
            "version": "2.8.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pytz",
            "version": "2022.5",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pyzmq",
            "version": "24.0.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "qtconsole",
            "version": "5.3.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "readthedocs-sphinx-ext",
            "version": "2.1.9",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "recommonmark",
            "version": "0.5.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "requests",
            "version": "2.28.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "scikit-learn",
            "version": "1.1.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "scipy",
            "version": "1.9.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "setuptools",
            "version": "65.5.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "setuptools-scm",
            "version": "7.0.5",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "six",
            "version": "1.16.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "sniffio",
            "version": "1.3.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "snowballstemmer",
            "version": "2.2.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "soupsieve",
            "version": "2.3.2.post1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "sphinx-automodapi",
            "version": "0.14.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "sphinx-rtd-theme",
            "version": "1.0.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "sphinxcontrib-applehelp",
            "version": "1.0.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "sphinxcontrib-devhelp",
            "version": "1.0.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "sphinxcontrib-htmlhelp",
            "version": "2.0.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "sphinxcontrib-jsmath",
            "version": "1.0.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "sphinxcontrib-qthelp",
            "version": "1.0.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "sphinxcontrib-serializinghtml",
            "version": "1.1.5",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "stack-data",
            "version": "0.5.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "tables",
            "version": "3.7.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "terminado",
            "version": "0.16.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "threadpoolctl",
            "version": "3.1.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "tinycss2",
            "version": "1.2.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "tomli",
            "version": "2.0.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "tornado",
            "version": "6.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "tqdm",
            "version": "4.64.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "traitlets",
            "version": "5.5.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "typing-extensions",
            "version": "4.4.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "urllib3",
            "version": "1.26.12",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "wcwidth",
            "version": "0.2.5",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "webencodings",
            "version": "0.5.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "websocket-client",
            "version": "1.4.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "wheel",
            "version": "0.37.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "widgetsnbextension",
            "version": "4.0.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "zipp",
            "version": "3.10.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "zstandard",
            "version": "0.18.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          }
        ]
      },
      "environment": {
        "CONDA_DEFAULT_ENV": null,
        "CONDA_PREFIX": null,
        "CONDA_PYTHON_EXE": null,
        "CONDA_EXE": null,
        "CONDA_PROMPT_MODIFIER": null,
        "CONDA_SHLVL": null,
        "PATH": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/bin:/home/docs/.pyenv/shims:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/docs/.conda/bin:/home/docs/.pyenv/bin",
        "LD_LIBRARY_PATH": null,
        "DYLD_LIBRARY_PATH": null,
        "USER": null,
        "HOME": "/home/docs",
        "SHELL": null
      },
      "arguments": [
        "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages/ipykernel_launcher.py",
        "-f",
        "/tmp/tmp93r2rkpb.json",
        "--HistoryManager.hist_file=:memory:"
      ],
      "start_time_utc": "2022-10-25T09:46:16.131"
    },
    "input": [
      {
        "url": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.17.0/docs/examples/subinput.txt",
        "role": null
      },
      {
        "url": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.17.0/docs/examples/anothersubinput.txt",
        "role": null
      }
    ],
    "output": [
      {
        "url": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.17.0/docs/examples/suboutput.txt",
        "role": null
      }
    ],
    "status": "sub",
    "duration_min": 0.0001500000000209667
  },
  {
    "activity_name": "sub2",
    "activity_uuid": "9b11fc58-aa2a-4591-9910-350a0852919f",
    "start": {
      "time_utc": "2022-10-25T09:46:16.230"
    },
    "stop": {
      "time_utc": "2022-10-25T09:46:16.239"
    },
    "system": {
      "ctapipe_version": "0.17.0",
      "ctapipe_resources_version": "not installed",
      "eventio_version": "1.10.0",
      "ctapipe_svc_path": null,
      "executable": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/bin/python",
      "platform": {
        "architecture_bits": "64bit",
        "architecture_linkage": "ELF",
        "machine": "x86_64",
        "processor": "x86_64",
        "node": "build-18436802-project-702899-ctapipe",
        "version": "#6-Ubuntu SMP Thu Mar 31 09:44:20 UTC 2022",
        "system": "Linux",
        "release": "5.15.0-1004-aws",
        "libcver": [
          "glibc",
          "2.27"
        ],
        "n_cpus": 2,
        "boot_time": "2022-10-24T20:39:40.000"
      },
      "python": {
        "version_string": "3.8.6 (default, Oct 19 2020, 15:10:29) \n[GCC 7.5.0]",
        "version": [
          "3",
          "8",
          "6"
        ],
        "compiler": "GCC 7.5.0",
        "implementation": "CPython",
        "packages": [
          {
            "name": "Babel",
            "version": "2.10.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "Jinja2",
            "version": "3.0.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "MarkupSafe",
            "version": "2.1.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "Pillow",
            "version": "9.2.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "PyYAML",
            "version": "6.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "Pygments",
            "version": "2.13.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "QtPy",
            "version": "2.2.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "Send2Trash",
            "version": "1.8.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "Sphinx",
            "version": "3.5.4",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "alabaster",
            "version": "0.7.12",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "anyio",
            "version": "3.6.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "argon2-cffi",
            "version": "21.3.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "argon2-cffi-bindings",
            "version": "21.2.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "astropy",
            "version": "5.1.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "asttokens",
            "version": "2.0.8",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "attrs",
            "version": "22.1.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "backcall",
            "version": "0.2.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "beautifulsoup4",
            "version": "4.11.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "bleach",
            "version": "5.0.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "bokeh",
            "version": "2.4.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "certifi",
            "version": "2022.9.24",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "cffi",
            "version": "1.15.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "charset-normalizer",
            "version": "2.1.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "commonmark",
            "version": "0.9.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "contourpy",
            "version": "1.0.5",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "corsikaio",
            "version": "0.2.5",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "ctapipe",
            "version": "0.17.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "cycler",
            "version": "0.11.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "debugpy",
            "version": "1.6.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "decorator",
            "version": "5.1.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "defusedxml",
            "version": "0.7.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "docutils",
            "version": "0.16",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "entrypoints",
            "version": "0.4",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "eventio",
            "version": "1.10.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "executing",
            "version": "1.1.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "fastjsonschema",
            "version": "2.16.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "fonttools",
            "version": "4.38.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "graphviz",
            "version": "0.20.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "h5py",
            "version": "3.7.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "idna",
            "version": "3.4",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "imagesize",
            "version": "1.4.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "iminuit",
            "version": "2.17.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "importlib-metadata",
            "version": "5.0.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "importlib-resources",
            "version": "5.10.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "ipykernel",
            "version": "6.16.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "ipython",
            "version": "8.5.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "ipython-genutils",
            "version": "0.2.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "ipywidgets",
            "version": "8.0.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "jedi",
            "version": "0.18.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "joblib",
            "version": "1.2.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "jsonschema",
            "version": "4.16.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "jupyter",
            "version": "1.0.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "jupyter-client",
            "version": "7.4.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "jupyter-console",
            "version": "6.4.4",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "jupyter-core",
            "version": "4.11.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "jupyter-server",
            "version": "1.21.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "jupyterlab-pygments",
            "version": "0.2.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "jupyterlab-widgets",
            "version": "3.0.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "kiwisolver",
            "version": "1.4.4",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "llvmlite",
            "version": "0.39.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "matplotlib",
            "version": "3.6.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "matplotlib-inline",
            "version": "0.1.6",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "mistune",
            "version": "2.0.4",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "mock",
            "version": "1.0.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "nbclassic",
            "version": "0.4.5",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "nbclient",
            "version": "0.7.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "nbconvert",
            "version": "7.2.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "nbformat",
            "version": "5.7.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "nbsphinx",
            "version": "0.8.9",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "nest-asyncio",
            "version": "1.5.6",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "notebook",
            "version": "6.5.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "notebook-shim",
            "version": "0.2.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "numba",
            "version": "0.56.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "numexpr",
            "version": "2.8.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "numpy",
            "version": "1.23.4",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "numpydoc",
            "version": "1.4.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "packaging",
            "version": "21.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pandas",
            "version": "1.5.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pandocfilters",
            "version": "1.5.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "parso",
            "version": "0.8.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pexpect",
            "version": "4.8.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pickleshare",
            "version": "0.7.5",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pip",
            "version": "22.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pkgutil-resolve-name",
            "version": "1.3.10",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "prometheus-client",
            "version": "0.15.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "prompt-toolkit",
            "version": "3.0.31",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "psutil",
            "version": "5.9.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "ptyprocess",
            "version": "0.7.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pure-eval",
            "version": "0.2.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pycparser",
            "version": "2.21",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pyerfa",
            "version": "2.0.0.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pyparsing",
            "version": "3.0.9",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pyrsistent",
            "version": "0.18.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "python-dateutil",
            "version": "2.8.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pytz",
            "version": "2022.5",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pyzmq",
            "version": "24.0.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "qtconsole",
            "version": "5.3.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "readthedocs-sphinx-ext",
            "version": "2.1.9",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "recommonmark",
            "version": "0.5.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "requests",
            "version": "2.28.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "scikit-learn",
            "version": "1.1.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "scipy",
            "version": "1.9.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "setuptools",
            "version": "65.5.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "setuptools-scm",
            "version": "7.0.5",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "six",
            "version": "1.16.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "sniffio",
            "version": "1.3.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "snowballstemmer",
            "version": "2.2.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "soupsieve",
            "version": "2.3.2.post1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "sphinx-automodapi",
            "version": "0.14.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "sphinx-rtd-theme",
            "version": "1.0.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "sphinxcontrib-applehelp",
            "version": "1.0.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "sphinxcontrib-devhelp",
            "version": "1.0.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "sphinxcontrib-htmlhelp",
            "version": "2.0.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "sphinxcontrib-jsmath",
            "version": "1.0.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "sphinxcontrib-qthelp",
            "version": "1.0.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "sphinxcontrib-serializinghtml",
            "version": "1.1.5",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "stack-data",
            "version": "0.5.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "tables",
            "version": "3.7.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "terminado",
            "version": "0.16.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "threadpoolctl",
            "version": "3.1.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "tinycss2",
            "version": "1.2.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "tomli",
            "version": "2.0.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "tornado",
            "version": "6.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "tqdm",
            "version": "4.64.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "traitlets",
            "version": "5.5.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "typing-extensions",
            "version": "4.4.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "urllib3",
            "version": "1.26.12",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "wcwidth",
            "version": "0.2.5",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "webencodings",
            "version": "0.5.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "websocket-client",
            "version": "1.4.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "wheel",
            "version": "0.37.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "widgetsnbextension",
            "version": "4.0.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "zipp",
            "version": "3.10.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "zstandard",
            "version": "0.18.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          }
        ]
      },
      "environment": {
        "CONDA_DEFAULT_ENV": null,
        "CONDA_PREFIX": null,
        "CONDA_PYTHON_EXE": null,
        "CONDA_EXE": null,
        "CONDA_PROMPT_MODIFIER": null,
        "CONDA_SHLVL": null,
        "PATH": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/bin:/home/docs/.pyenv/shims:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/docs/.conda/bin:/home/docs/.pyenv/bin",
        "LD_LIBRARY_PATH": null,
        "DYLD_LIBRARY_PATH": null,
        "USER": null,
        "HOME": "/home/docs",
        "SHELL": null
      },
      "arguments": [
        "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages/ipykernel_launcher.py",
        "-f",
        "/tmp/tmp93r2rkpb.json",
        "--HistoryManager.hist_file=:memory:"
      ],
      "start_time_utc": "2022-10-25T09:46:16.239"
    },
    "input": [
      {
        "url": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.17.0/docs/examples/sub2input.txt",
        "role": null
      }
    ],
    "output": [],
    "status": "sub2",
    "duration_min": 0.00014999999994103064
  },
  {
    "activity_name": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/bin/python",
    "activity_uuid": "5e51cd7a-20cb-42fb-9be1-b34b7a442dd0",
    "start": {
      "time_utc": "2022-10-25T09:46:16.100"
    },
    "stop": {
      "time_utc": "2022-10-25T09:46:16.241"
    },
    "system": {
      "ctapipe_version": "0.17.0",
      "ctapipe_resources_version": "not installed",
      "eventio_version": "1.10.0",
      "ctapipe_svc_path": null,
      "executable": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/bin/python",
      "platform": {
        "architecture_bits": "64bit",
        "architecture_linkage": "ELF",
        "machine": "x86_64",
        "processor": "x86_64",
        "node": "build-18436802-project-702899-ctapipe",
        "version": "#6-Ubuntu SMP Thu Mar 31 09:44:20 UTC 2022",
        "system": "Linux",
        "release": "5.15.0-1004-aws",
        "libcver": [
          "glibc",
          "2.27"
        ],
        "n_cpus": 2,
        "boot_time": "2022-10-24T20:39:40.000"
      },
      "python": {
        "version_string": "3.8.6 (default, Oct 19 2020, 15:10:29) \n[GCC 7.5.0]",
        "version": [
          "3",
          "8",
          "6"
        ],
        "compiler": "GCC 7.5.0",
        "implementation": "CPython",
        "packages": [
          {
            "name": "Babel",
            "version": "2.10.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "Jinja2",
            "version": "3.0.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "MarkupSafe",
            "version": "2.1.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "Pillow",
            "version": "9.2.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "PyYAML",
            "version": "6.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "Pygments",
            "version": "2.13.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "QtPy",
            "version": "2.2.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "Send2Trash",
            "version": "1.8.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "Sphinx",
            "version": "3.5.4",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "alabaster",
            "version": "0.7.12",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "anyio",
            "version": "3.6.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "argon2-cffi",
            "version": "21.3.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "argon2-cffi-bindings",
            "version": "21.2.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "astropy",
            "version": "5.1.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "asttokens",
            "version": "2.0.8",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "attrs",
            "version": "22.1.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "backcall",
            "version": "0.2.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "beautifulsoup4",
            "version": "4.11.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "bleach",
            "version": "5.0.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "bokeh",
            "version": "2.4.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "certifi",
            "version": "2022.9.24",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "cffi",
            "version": "1.15.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "charset-normalizer",
            "version": "2.1.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "commonmark",
            "version": "0.9.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "contourpy",
            "version": "1.0.5",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "corsikaio",
            "version": "0.2.5",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "ctapipe",
            "version": "0.17.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "cycler",
            "version": "0.11.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "debugpy",
            "version": "1.6.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "decorator",
            "version": "5.1.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "defusedxml",
            "version": "0.7.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "docutils",
            "version": "0.16",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "entrypoints",
            "version": "0.4",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "eventio",
            "version": "1.10.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "executing",
            "version": "1.1.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "fastjsonschema",
            "version": "2.16.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "fonttools",
            "version": "4.38.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "graphviz",
            "version": "0.20.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "h5py",
            "version": "3.7.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "idna",
            "version": "3.4",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "imagesize",
            "version": "1.4.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "iminuit",
            "version": "2.17.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "importlib-metadata",
            "version": "5.0.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "importlib-resources",
            "version": "5.10.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "ipykernel",
            "version": "6.16.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "ipython",
            "version": "8.5.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "ipython-genutils",
            "version": "0.2.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "ipywidgets",
            "version": "8.0.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "jedi",
            "version": "0.18.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "joblib",
            "version": "1.2.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "jsonschema",
            "version": "4.16.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "jupyter",
            "version": "1.0.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "jupyter-client",
            "version": "7.4.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "jupyter-console",
            "version": "6.4.4",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "jupyter-core",
            "version": "4.11.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "jupyter-server",
            "version": "1.21.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "jupyterlab-pygments",
            "version": "0.2.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "jupyterlab-widgets",
            "version": "3.0.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "kiwisolver",
            "version": "1.4.4",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "llvmlite",
            "version": "0.39.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "matplotlib",
            "version": "3.6.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "matplotlib-inline",
            "version": "0.1.6",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "mistune",
            "version": "2.0.4",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "mock",
            "version": "1.0.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "nbclassic",
            "version": "0.4.5",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "nbclient",
            "version": "0.7.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "nbconvert",
            "version": "7.2.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "nbformat",
            "version": "5.7.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "nbsphinx",
            "version": "0.8.9",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "nest-asyncio",
            "version": "1.5.6",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "notebook",
            "version": "6.5.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "notebook-shim",
            "version": "0.2.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "numba",
            "version": "0.56.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "numexpr",
            "version": "2.8.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "numpy",
            "version": "1.23.4",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "numpydoc",
            "version": "1.4.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "packaging",
            "version": "21.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pandas",
            "version": "1.5.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pandocfilters",
            "version": "1.5.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "parso",
            "version": "0.8.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pexpect",
            "version": "4.8.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pickleshare",
            "version": "0.7.5",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pip",
            "version": "22.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pkgutil-resolve-name",
            "version": "1.3.10",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "prometheus-client",
            "version": "0.15.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "prompt-toolkit",
            "version": "3.0.31",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "psutil",
            "version": "5.9.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "ptyprocess",
            "version": "0.7.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pure-eval",
            "version": "0.2.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pycparser",
            "version": "2.21",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pyerfa",
            "version": "2.0.0.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pyparsing",
            "version": "3.0.9",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pyrsistent",
            "version": "0.18.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "python-dateutil",
            "version": "2.8.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pytz",
            "version": "2022.5",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "pyzmq",
            "version": "24.0.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "qtconsole",
            "version": "5.3.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "readthedocs-sphinx-ext",
            "version": "2.1.9",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "recommonmark",
            "version": "0.5.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "requests",
            "version": "2.28.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "scikit-learn",
            "version": "1.1.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "scipy",
            "version": "1.9.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "setuptools",
            "version": "65.5.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "setuptools-scm",
            "version": "7.0.5",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "six",
            "version": "1.16.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "sniffio",
            "version": "1.3.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "snowballstemmer",
            "version": "2.2.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "soupsieve",
            "version": "2.3.2.post1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "sphinx-automodapi",
            "version": "0.14.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "sphinx-rtd-theme",
            "version": "1.0.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "sphinxcontrib-applehelp",
            "version": "1.0.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "sphinxcontrib-devhelp",
            "version": "1.0.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "sphinxcontrib-htmlhelp",
            "version": "2.0.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "sphinxcontrib-jsmath",
            "version": "1.0.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "sphinxcontrib-qthelp",
            "version": "1.0.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "sphinxcontrib-serializinghtml",
            "version": "1.1.5",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "stack-data",
            "version": "0.5.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "tables",
            "version": "3.7.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "terminado",
            "version": "0.16.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "threadpoolctl",
            "version": "3.1.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "tinycss2",
            "version": "1.2.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "tomli",
            "version": "2.0.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "tornado",
            "version": "6.2",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "tqdm",
            "version": "4.64.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "traitlets",
            "version": "5.5.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "typing-extensions",
            "version": "4.4.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "urllib3",
            "version": "1.26.12",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "wcwidth",
            "version": "0.2.5",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "webencodings",
            "version": "0.5.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "websocket-client",
            "version": "1.4.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "wheel",
            "version": "0.37.1",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "widgetsnbextension",
            "version": "4.0.3",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "zipp",
            "version": "3.10.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          },
          {
            "name": "zstandard",
            "version": "0.18.0",
            "path": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages"
          }
        ]
      },
      "environment": {
        "CONDA_DEFAULT_ENV": null,
        "CONDA_PREFIX": null,
        "CONDA_PYTHON_EXE": null,
        "CONDA_EXE": null,
        "CONDA_PROMPT_MODIFIER": null,
        "CONDA_SHLVL": null,
        "PATH": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/bin:/home/docs/.pyenv/shims:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/docs/.conda/bin:/home/docs/.pyenv/bin",
        "LD_LIBRARY_PATH": null,
        "DYLD_LIBRARY_PATH": null,
        "USER": null,
        "HOME": "/home/docs",
        "SHELL": null
      },
      "arguments": [
        "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages/ipykernel_launcher.py",
        "-f",
        "/tmp/tmp93r2rkpb.json",
        "--HistoryManager.hist_file=:memory:"
      ],
      "start_time_utc": "2022-10-25T09:46:16.123"
    },
    "input": [
      {
        "url": "/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.17.0/docs/examples/test.txt",
        "role": null
      }
    ],
    "output": [],
    "status": "completed",
    "duration_min": 0.0023500000000353793
  }
]

Storing provenance info in output files

  • already this can be stored in something like an HDF5 file header, which allows hierarchies.

  • Try to flatted the data so it can be stored in a key=value header in a FITS file (using the FITS extended keyword convention to allow >8 character keywords), or as a table

[8]:
def flatten_dict(y):
    out = {}

    def flatten(x, name=''):
        if type(x) is dict:
            for a in x:
                flatten(x[a], name + a + '.')
        elif type(x) is list:
            i = 0
            for a in x:
                flatten(a, name + str(i) + '.')
                i += 1
        else:
            out[name[:-1]] = x

    flatten(y)
    return out
[9]:
d = dict(activity=p.provenance)
[10]:
pprint(flatten_dict(d))
{'activity.0.activity_name': 'sub',
 'activity.0.activity_uuid': '823334a2-0625-4025-94f2-73e7eecd0fd9',
 'activity.0.duration_min': 0.0001500000000209667,
 'activity.0.input.0.role': None,
 'activity.0.input.0.url': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.17.0/docs/examples/subinput.txt',
 'activity.0.input.1.role': None,
 'activity.0.input.1.url': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.17.0/docs/examples/anothersubinput.txt',
 'activity.0.output.0.role': None,
 'activity.0.output.0.url': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.17.0/docs/examples/suboutput.txt',
 'activity.0.start.time_utc': '2022-10-25T09:46:16.123',
 'activity.0.status': 'sub',
 'activity.0.stop.time_utc': '2022-10-25T09:46:16.132',
 'activity.0.system.arguments.0': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages/ipykernel_launcher.py',
 'activity.0.system.arguments.1': '-f',
 'activity.0.system.arguments.2': '/tmp/tmp93r2rkpb.json',
 'activity.0.system.arguments.3': '--HistoryManager.hist_file=:memory:',
 'activity.0.system.ctapipe_resources_version': 'not installed',
 'activity.0.system.ctapipe_svc_path': None,
 'activity.0.system.ctapipe_version': '0.17.0',
 'activity.0.system.environment.CONDA_DEFAULT_ENV': None,
 'activity.0.system.environment.CONDA_EXE': None,
 'activity.0.system.environment.CONDA_PREFIX': None,
 'activity.0.system.environment.CONDA_PROMPT_MODIFIER': None,
 'activity.0.system.environment.CONDA_PYTHON_EXE': None,
 'activity.0.system.environment.CONDA_SHLVL': None,
 'activity.0.system.environment.DYLD_LIBRARY_PATH': None,
 'activity.0.system.environment.HOME': '/home/docs',
 'activity.0.system.environment.LD_LIBRARY_PATH': None,
 'activity.0.system.environment.PATH': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/bin:/home/docs/.pyenv/shims:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/docs/.conda/bin:/home/docs/.pyenv/bin',
 'activity.0.system.environment.SHELL': None,
 'activity.0.system.environment.USER': None,
 'activity.0.system.eventio_version': '1.10.0',
 'activity.0.system.executable': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/bin/python',
 'activity.0.system.platform.architecture_bits': '64bit',
 'activity.0.system.platform.architecture_linkage': 'ELF',
 'activity.0.system.platform.boot_time': '2022-10-24T20:39:40.000',
 'activity.0.system.platform.libcver': ('glibc', '2.27'),
 'activity.0.system.platform.machine': 'x86_64',
 'activity.0.system.platform.n_cpus': 2,
 'activity.0.system.platform.node': 'build-18436802-project-702899-ctapipe',
 'activity.0.system.platform.processor': 'x86_64',
 'activity.0.system.platform.release': '5.15.0-1004-aws',
 'activity.0.system.platform.system': 'Linux',
 'activity.0.system.platform.version': '#6-Ubuntu SMP Thu Mar 31 09:44:20 UTC '
                                       '2022',
 'activity.0.system.python.compiler': 'GCC 7.5.0',
 'activity.0.system.python.implementation': 'CPython',
 'activity.0.system.python.packages.0.name': 'Babel',
 'activity.0.system.python.packages.0.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.0.version': '2.10.3',
 'activity.0.system.python.packages.1.name': 'Jinja2',
 'activity.0.system.python.packages.1.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.1.version': '3.0.3',
 'activity.0.system.python.packages.10.name': 'anyio',
 'activity.0.system.python.packages.10.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.10.version': '3.6.2',
 'activity.0.system.python.packages.100.name': 'scikit-learn',
 'activity.0.system.python.packages.100.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.100.version': '1.1.2',
 'activity.0.system.python.packages.101.name': 'scipy',
 'activity.0.system.python.packages.101.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.101.version': '1.9.3',
 'activity.0.system.python.packages.102.name': 'setuptools',
 'activity.0.system.python.packages.102.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.102.version': '65.5.0',
 'activity.0.system.python.packages.103.name': 'setuptools-scm',
 'activity.0.system.python.packages.103.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.103.version': '7.0.5',
 'activity.0.system.python.packages.104.name': 'six',
 'activity.0.system.python.packages.104.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.104.version': '1.16.0',
 'activity.0.system.python.packages.105.name': 'sniffio',
 'activity.0.system.python.packages.105.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.105.version': '1.3.0',
 'activity.0.system.python.packages.106.name': 'snowballstemmer',
 'activity.0.system.python.packages.106.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.106.version': '2.2.0',
 'activity.0.system.python.packages.107.name': 'soupsieve',
 'activity.0.system.python.packages.107.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.107.version': '2.3.2.post1',
 'activity.0.system.python.packages.108.name': 'sphinx-automodapi',
 'activity.0.system.python.packages.108.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.108.version': '0.14.1',
 'activity.0.system.python.packages.109.name': 'sphinx-rtd-theme',
 'activity.0.system.python.packages.109.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.109.version': '1.0.0',
 'activity.0.system.python.packages.11.name': 'argon2-cffi',
 'activity.0.system.python.packages.11.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.11.version': '21.3.0',
 'activity.0.system.python.packages.110.name': 'sphinxcontrib-applehelp',
 'activity.0.system.python.packages.110.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.110.version': '1.0.2',
 'activity.0.system.python.packages.111.name': 'sphinxcontrib-devhelp',
 'activity.0.system.python.packages.111.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.111.version': '1.0.2',
 'activity.0.system.python.packages.112.name': 'sphinxcontrib-htmlhelp',
 'activity.0.system.python.packages.112.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.112.version': '2.0.0',
 'activity.0.system.python.packages.113.name': 'sphinxcontrib-jsmath',
 'activity.0.system.python.packages.113.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.113.version': '1.0.1',
 'activity.0.system.python.packages.114.name': 'sphinxcontrib-qthelp',
 'activity.0.system.python.packages.114.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.114.version': '1.0.3',
 'activity.0.system.python.packages.115.name': 'sphinxcontrib-serializinghtml',
 'activity.0.system.python.packages.115.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.115.version': '1.1.5',
 'activity.0.system.python.packages.116.name': 'stack-data',
 'activity.0.system.python.packages.116.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.116.version': '0.5.1',
 'activity.0.system.python.packages.117.name': 'tables',
 'activity.0.system.python.packages.117.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.117.version': '3.7.0',
 'activity.0.system.python.packages.118.name': 'terminado',
 'activity.0.system.python.packages.118.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.118.version': '0.16.0',
 'activity.0.system.python.packages.119.name': 'threadpoolctl',
 'activity.0.system.python.packages.119.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.119.version': '3.1.0',
 'activity.0.system.python.packages.12.name': 'argon2-cffi-bindings',
 'activity.0.system.python.packages.12.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.12.version': '21.2.0',
 'activity.0.system.python.packages.120.name': 'tinycss2',
 'activity.0.system.python.packages.120.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.120.version': '1.2.1',
 'activity.0.system.python.packages.121.name': 'tomli',
 'activity.0.system.python.packages.121.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.121.version': '2.0.1',
 'activity.0.system.python.packages.122.name': 'tornado',
 'activity.0.system.python.packages.122.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.122.version': '6.2',
 'activity.0.system.python.packages.123.name': 'tqdm',
 'activity.0.system.python.packages.123.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.123.version': '4.64.1',
 'activity.0.system.python.packages.124.name': 'traitlets',
 'activity.0.system.python.packages.124.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.124.version': '5.5.0',
 'activity.0.system.python.packages.125.name': 'typing-extensions',
 'activity.0.system.python.packages.125.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.125.version': '4.4.0',
 'activity.0.system.python.packages.126.name': 'urllib3',
 'activity.0.system.python.packages.126.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.126.version': '1.26.12',
 'activity.0.system.python.packages.127.name': 'wcwidth',
 'activity.0.system.python.packages.127.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.127.version': '0.2.5',
 'activity.0.system.python.packages.128.name': 'webencodings',
 'activity.0.system.python.packages.128.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.128.version': '0.5.1',
 'activity.0.system.python.packages.129.name': 'websocket-client',
 'activity.0.system.python.packages.129.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.129.version': '1.4.1',
 'activity.0.system.python.packages.13.name': 'astropy',
 'activity.0.system.python.packages.13.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.13.version': '5.1.1',
 'activity.0.system.python.packages.130.name': 'wheel',
 'activity.0.system.python.packages.130.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.130.version': '0.37.1',
 'activity.0.system.python.packages.131.name': 'widgetsnbextension',
 'activity.0.system.python.packages.131.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.131.version': '4.0.3',
 'activity.0.system.python.packages.132.name': 'zipp',
 'activity.0.system.python.packages.132.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.132.version': '3.10.0',
 'activity.0.system.python.packages.133.name': 'zstandard',
 'activity.0.system.python.packages.133.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.133.version': '0.18.0',
 'activity.0.system.python.packages.14.name': 'asttokens',
 'activity.0.system.python.packages.14.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.14.version': '2.0.8',
 'activity.0.system.python.packages.15.name': 'attrs',
 'activity.0.system.python.packages.15.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.15.version': '22.1.0',
 'activity.0.system.python.packages.16.name': 'backcall',
 'activity.0.system.python.packages.16.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.16.version': '0.2.0',
 'activity.0.system.python.packages.17.name': 'beautifulsoup4',
 'activity.0.system.python.packages.17.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.17.version': '4.11.1',
 'activity.0.system.python.packages.18.name': 'bleach',
 'activity.0.system.python.packages.18.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.18.version': '5.0.1',
 'activity.0.system.python.packages.19.name': 'bokeh',
 'activity.0.system.python.packages.19.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.19.version': '2.4.3',
 'activity.0.system.python.packages.2.name': 'MarkupSafe',
 'activity.0.system.python.packages.2.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.2.version': '2.1.1',
 'activity.0.system.python.packages.20.name': 'certifi',
 'activity.0.system.python.packages.20.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.20.version': '2022.9.24',
 'activity.0.system.python.packages.21.name': 'cffi',
 'activity.0.system.python.packages.21.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.21.version': '1.15.1',
 'activity.0.system.python.packages.22.name': 'charset-normalizer',
 'activity.0.system.python.packages.22.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.22.version': '2.1.1',
 'activity.0.system.python.packages.23.name': 'commonmark',
 'activity.0.system.python.packages.23.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.23.version': '0.9.1',
 'activity.0.system.python.packages.24.name': 'contourpy',
 'activity.0.system.python.packages.24.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.24.version': '1.0.5',
 'activity.0.system.python.packages.25.name': 'corsikaio',
 'activity.0.system.python.packages.25.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.25.version': '0.2.5',
 'activity.0.system.python.packages.26.name': 'ctapipe',
 'activity.0.system.python.packages.26.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.26.version': '0.17.0',
 'activity.0.system.python.packages.27.name': 'cycler',
 'activity.0.system.python.packages.27.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.27.version': '0.11.0',
 'activity.0.system.python.packages.28.name': 'debugpy',
 'activity.0.system.python.packages.28.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.28.version': '1.6.3',
 'activity.0.system.python.packages.29.name': 'decorator',
 'activity.0.system.python.packages.29.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.29.version': '5.1.1',
 'activity.0.system.python.packages.3.name': 'Pillow',
 'activity.0.system.python.packages.3.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.3.version': '9.2.0',
 'activity.0.system.python.packages.30.name': 'defusedxml',
 'activity.0.system.python.packages.30.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.30.version': '0.7.1',
 'activity.0.system.python.packages.31.name': 'docutils',
 'activity.0.system.python.packages.31.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.31.version': '0.16',
 'activity.0.system.python.packages.32.name': 'entrypoints',
 'activity.0.system.python.packages.32.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.32.version': '0.4',
 'activity.0.system.python.packages.33.name': 'eventio',
 'activity.0.system.python.packages.33.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.33.version': '1.10.0',
 'activity.0.system.python.packages.34.name': 'executing',
 'activity.0.system.python.packages.34.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.34.version': '1.1.1',
 'activity.0.system.python.packages.35.name': 'fastjsonschema',
 'activity.0.system.python.packages.35.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.35.version': '2.16.2',
 'activity.0.system.python.packages.36.name': 'fonttools',
 'activity.0.system.python.packages.36.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.36.version': '4.38.0',
 'activity.0.system.python.packages.37.name': 'graphviz',
 'activity.0.system.python.packages.37.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.37.version': '0.20.1',
 'activity.0.system.python.packages.38.name': 'h5py',
 'activity.0.system.python.packages.38.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.38.version': '3.7.0',
 'activity.0.system.python.packages.39.name': 'idna',
 'activity.0.system.python.packages.39.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.39.version': '3.4',
 'activity.0.system.python.packages.4.name': 'PyYAML',
 'activity.0.system.python.packages.4.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.4.version': '6.0',
 'activity.0.system.python.packages.40.name': 'imagesize',
 'activity.0.system.python.packages.40.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.40.version': '1.4.1',
 'activity.0.system.python.packages.41.name': 'iminuit',
 'activity.0.system.python.packages.41.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.41.version': '2.17.0',
 'activity.0.system.python.packages.42.name': 'importlib-metadata',
 'activity.0.system.python.packages.42.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.42.version': '5.0.0',
 'activity.0.system.python.packages.43.name': 'importlib-resources',
 'activity.0.system.python.packages.43.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.43.version': '5.10.0',
 'activity.0.system.python.packages.44.name': 'ipykernel',
 'activity.0.system.python.packages.44.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.44.version': '6.16.1',
 'activity.0.system.python.packages.45.name': 'ipython',
 'activity.0.system.python.packages.45.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.45.version': '8.5.0',
 'activity.0.system.python.packages.46.name': 'ipython-genutils',
 'activity.0.system.python.packages.46.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.46.version': '0.2.0',
 'activity.0.system.python.packages.47.name': 'ipywidgets',
 'activity.0.system.python.packages.47.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.47.version': '8.0.2',
 'activity.0.system.python.packages.48.name': 'jedi',
 'activity.0.system.python.packages.48.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.48.version': '0.18.1',
 'activity.0.system.python.packages.49.name': 'joblib',
 'activity.0.system.python.packages.49.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.49.version': '1.2.0',
 'activity.0.system.python.packages.5.name': 'Pygments',
 'activity.0.system.python.packages.5.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.5.version': '2.13.0',
 'activity.0.system.python.packages.50.name': 'jsonschema',
 'activity.0.system.python.packages.50.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.50.version': '4.16.0',
 'activity.0.system.python.packages.51.name': 'jupyter',
 'activity.0.system.python.packages.51.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.51.version': '1.0.0',
 'activity.0.system.python.packages.52.name': 'jupyter-client',
 'activity.0.system.python.packages.52.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.52.version': '7.4.3',
 'activity.0.system.python.packages.53.name': 'jupyter-console',
 'activity.0.system.python.packages.53.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.53.version': '6.4.4',
 'activity.0.system.python.packages.54.name': 'jupyter-core',
 'activity.0.system.python.packages.54.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.54.version': '4.11.2',
 'activity.0.system.python.packages.55.name': 'jupyter-server',
 'activity.0.system.python.packages.55.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.55.version': '1.21.0',
 'activity.0.system.python.packages.56.name': 'jupyterlab-pygments',
 'activity.0.system.python.packages.56.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.56.version': '0.2.2',
 'activity.0.system.python.packages.57.name': 'jupyterlab-widgets',
 'activity.0.system.python.packages.57.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.57.version': '3.0.3',
 'activity.0.system.python.packages.58.name': 'kiwisolver',
 'activity.0.system.python.packages.58.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.58.version': '1.4.4',
 'activity.0.system.python.packages.59.name': 'llvmlite',
 'activity.0.system.python.packages.59.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.59.version': '0.39.1',
 'activity.0.system.python.packages.6.name': 'QtPy',
 'activity.0.system.python.packages.6.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.6.version': '2.2.1',
 'activity.0.system.python.packages.60.name': 'matplotlib',
 'activity.0.system.python.packages.60.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.60.version': '3.6.1',
 'activity.0.system.python.packages.61.name': 'matplotlib-inline',
 'activity.0.system.python.packages.61.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.61.version': '0.1.6',
 'activity.0.system.python.packages.62.name': 'mistune',
 'activity.0.system.python.packages.62.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.62.version': '2.0.4',
 'activity.0.system.python.packages.63.name': 'mock',
 'activity.0.system.python.packages.63.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.63.version': '1.0.1',
 'activity.0.system.python.packages.64.name': 'nbclassic',
 'activity.0.system.python.packages.64.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.64.version': '0.4.5',
 'activity.0.system.python.packages.65.name': 'nbclient',
 'activity.0.system.python.packages.65.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.65.version': '0.7.0',
 'activity.0.system.python.packages.66.name': 'nbconvert',
 'activity.0.system.python.packages.66.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.66.version': '7.2.2',
 'activity.0.system.python.packages.67.name': 'nbformat',
 'activity.0.system.python.packages.67.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.67.version': '5.7.0',
 'activity.0.system.python.packages.68.name': 'nbsphinx',
 'activity.0.system.python.packages.68.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.68.version': '0.8.9',
 'activity.0.system.python.packages.69.name': 'nest-asyncio',
 'activity.0.system.python.packages.69.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.69.version': '1.5.6',
 'activity.0.system.python.packages.7.name': 'Send2Trash',
 'activity.0.system.python.packages.7.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.7.version': '1.8.0',
 'activity.0.system.python.packages.70.name': 'notebook',
 'activity.0.system.python.packages.70.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.70.version': '6.5.1',
 'activity.0.system.python.packages.71.name': 'notebook-shim',
 'activity.0.system.python.packages.71.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.71.version': '0.2.0',
 'activity.0.system.python.packages.72.name': 'numba',
 'activity.0.system.python.packages.72.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.72.version': '0.56.3',
 'activity.0.system.python.packages.73.name': 'numexpr',
 'activity.0.system.python.packages.73.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.73.version': '2.8.3',
 'activity.0.system.python.packages.74.name': 'numpy',
 'activity.0.system.python.packages.74.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.74.version': '1.23.4',
 'activity.0.system.python.packages.75.name': 'numpydoc',
 'activity.0.system.python.packages.75.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.75.version': '1.4.0',
 'activity.0.system.python.packages.76.name': 'packaging',
 'activity.0.system.python.packages.76.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.76.version': '21.3',
 'activity.0.system.python.packages.77.name': 'pandas',
 'activity.0.system.python.packages.77.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.77.version': '1.5.1',
 'activity.0.system.python.packages.78.name': 'pandocfilters',
 'activity.0.system.python.packages.78.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.78.version': '1.5.0',
 'activity.0.system.python.packages.79.name': 'parso',
 'activity.0.system.python.packages.79.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.79.version': '0.8.3',
 'activity.0.system.python.packages.8.name': 'Sphinx',
 'activity.0.system.python.packages.8.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.8.version': '3.5.4',
 'activity.0.system.python.packages.80.name': 'pexpect',
 'activity.0.system.python.packages.80.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.80.version': '4.8.0',
 'activity.0.system.python.packages.81.name': 'pickleshare',
 'activity.0.system.python.packages.81.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.81.version': '0.7.5',
 'activity.0.system.python.packages.82.name': 'pip',
 'activity.0.system.python.packages.82.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.82.version': '22.3',
 'activity.0.system.python.packages.83.name': 'pkgutil-resolve-name',
 'activity.0.system.python.packages.83.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.83.version': '1.3.10',
 'activity.0.system.python.packages.84.name': 'prometheus-client',
 'activity.0.system.python.packages.84.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.84.version': '0.15.0',
 'activity.0.system.python.packages.85.name': 'prompt-toolkit',
 'activity.0.system.python.packages.85.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.85.version': '3.0.31',
 'activity.0.system.python.packages.86.name': 'psutil',
 'activity.0.system.python.packages.86.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.86.version': '5.9.3',
 'activity.0.system.python.packages.87.name': 'ptyprocess',
 'activity.0.system.python.packages.87.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.87.version': '0.7.0',
 'activity.0.system.python.packages.88.name': 'pure-eval',
 'activity.0.system.python.packages.88.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.88.version': '0.2.2',
 'activity.0.system.python.packages.89.name': 'pycparser',
 'activity.0.system.python.packages.89.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.89.version': '2.21',
 'activity.0.system.python.packages.9.name': 'alabaster',
 'activity.0.system.python.packages.9.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.9.version': '0.7.12',
 'activity.0.system.python.packages.90.name': 'pyerfa',
 'activity.0.system.python.packages.90.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.90.version': '2.0.0.1',
 'activity.0.system.python.packages.91.name': 'pyparsing',
 'activity.0.system.python.packages.91.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.91.version': '3.0.9',
 'activity.0.system.python.packages.92.name': 'pyrsistent',
 'activity.0.system.python.packages.92.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.92.version': '0.18.1',
 'activity.0.system.python.packages.93.name': 'python-dateutil',
 'activity.0.system.python.packages.93.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.93.version': '2.8.2',
 'activity.0.system.python.packages.94.name': 'pytz',
 'activity.0.system.python.packages.94.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.94.version': '2022.5',
 'activity.0.system.python.packages.95.name': 'pyzmq',
 'activity.0.system.python.packages.95.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.95.version': '24.0.1',
 'activity.0.system.python.packages.96.name': 'qtconsole',
 'activity.0.system.python.packages.96.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.96.version': '5.3.2',
 'activity.0.system.python.packages.97.name': 'readthedocs-sphinx-ext',
 'activity.0.system.python.packages.97.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.97.version': '2.1.9',
 'activity.0.system.python.packages.98.name': 'recommonmark',
 'activity.0.system.python.packages.98.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.98.version': '0.5.0',
 'activity.0.system.python.packages.99.name': 'requests',
 'activity.0.system.python.packages.99.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.0.system.python.packages.99.version': '2.28.1',
 'activity.0.system.python.version': ('3', '8', '6'),
 'activity.0.system.python.version_string': '3.8.6 (default, Oct 19 2020, '
                                            '15:10:29) \n'
                                            '[GCC 7.5.0]',
 'activity.0.system.start_time_utc': '2022-10-25T09:46:16.131',
 'activity.1.activity_name': 'sub2',
 'activity.1.activity_uuid': '9b11fc58-aa2a-4591-9910-350a0852919f',
 'activity.1.duration_min': 0.00014999999994103064,
 'activity.1.input.0.role': None,
 'activity.1.input.0.url': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.17.0/docs/examples/sub2input.txt',
 'activity.1.start.time_utc': '2022-10-25T09:46:16.230',
 'activity.1.status': 'sub2',
 'activity.1.stop.time_utc': '2022-10-25T09:46:16.239',
 'activity.1.system.arguments.0': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages/ipykernel_launcher.py',
 'activity.1.system.arguments.1': '-f',
 'activity.1.system.arguments.2': '/tmp/tmp93r2rkpb.json',
 'activity.1.system.arguments.3': '--HistoryManager.hist_file=:memory:',
 'activity.1.system.ctapipe_resources_version': 'not installed',
 'activity.1.system.ctapipe_svc_path': None,
 'activity.1.system.ctapipe_version': '0.17.0',
 'activity.1.system.environment.CONDA_DEFAULT_ENV': None,
 'activity.1.system.environment.CONDA_EXE': None,
 'activity.1.system.environment.CONDA_PREFIX': None,
 'activity.1.system.environment.CONDA_PROMPT_MODIFIER': None,
 'activity.1.system.environment.CONDA_PYTHON_EXE': None,
 'activity.1.system.environment.CONDA_SHLVL': None,
 'activity.1.system.environment.DYLD_LIBRARY_PATH': None,
 'activity.1.system.environment.HOME': '/home/docs',
 'activity.1.system.environment.LD_LIBRARY_PATH': None,
 'activity.1.system.environment.PATH': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/bin:/home/docs/.pyenv/shims:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/docs/.conda/bin:/home/docs/.pyenv/bin',
 'activity.1.system.environment.SHELL': None,
 'activity.1.system.environment.USER': None,
 'activity.1.system.eventio_version': '1.10.0',
 'activity.1.system.executable': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/bin/python',
 'activity.1.system.platform.architecture_bits': '64bit',
 'activity.1.system.platform.architecture_linkage': 'ELF',
 'activity.1.system.platform.boot_time': '2022-10-24T20:39:40.000',
 'activity.1.system.platform.libcver': ('glibc', '2.27'),
 'activity.1.system.platform.machine': 'x86_64',
 'activity.1.system.platform.n_cpus': 2,
 'activity.1.system.platform.node': 'build-18436802-project-702899-ctapipe',
 'activity.1.system.platform.processor': 'x86_64',
 'activity.1.system.platform.release': '5.15.0-1004-aws',
 'activity.1.system.platform.system': 'Linux',
 'activity.1.system.platform.version': '#6-Ubuntu SMP Thu Mar 31 09:44:20 UTC '
                                       '2022',
 'activity.1.system.python.compiler': 'GCC 7.5.0',
 'activity.1.system.python.implementation': 'CPython',
 'activity.1.system.python.packages.0.name': 'Babel',
 'activity.1.system.python.packages.0.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.0.version': '2.10.3',
 'activity.1.system.python.packages.1.name': 'Jinja2',
 'activity.1.system.python.packages.1.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.1.version': '3.0.3',
 'activity.1.system.python.packages.10.name': 'anyio',
 'activity.1.system.python.packages.10.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.10.version': '3.6.2',
 'activity.1.system.python.packages.100.name': 'scikit-learn',
 'activity.1.system.python.packages.100.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.100.version': '1.1.2',
 'activity.1.system.python.packages.101.name': 'scipy',
 'activity.1.system.python.packages.101.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.101.version': '1.9.3',
 'activity.1.system.python.packages.102.name': 'setuptools',
 'activity.1.system.python.packages.102.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.102.version': '65.5.0',
 'activity.1.system.python.packages.103.name': 'setuptools-scm',
 'activity.1.system.python.packages.103.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.103.version': '7.0.5',
 'activity.1.system.python.packages.104.name': 'six',
 'activity.1.system.python.packages.104.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.104.version': '1.16.0',
 'activity.1.system.python.packages.105.name': 'sniffio',
 'activity.1.system.python.packages.105.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.105.version': '1.3.0',
 'activity.1.system.python.packages.106.name': 'snowballstemmer',
 'activity.1.system.python.packages.106.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.106.version': '2.2.0',
 'activity.1.system.python.packages.107.name': 'soupsieve',
 'activity.1.system.python.packages.107.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.107.version': '2.3.2.post1',
 'activity.1.system.python.packages.108.name': 'sphinx-automodapi',
 'activity.1.system.python.packages.108.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.108.version': '0.14.1',
 'activity.1.system.python.packages.109.name': 'sphinx-rtd-theme',
 'activity.1.system.python.packages.109.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.109.version': '1.0.0',
 'activity.1.system.python.packages.11.name': 'argon2-cffi',
 'activity.1.system.python.packages.11.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.11.version': '21.3.0',
 'activity.1.system.python.packages.110.name': 'sphinxcontrib-applehelp',
 'activity.1.system.python.packages.110.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.110.version': '1.0.2',
 'activity.1.system.python.packages.111.name': 'sphinxcontrib-devhelp',
 'activity.1.system.python.packages.111.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.111.version': '1.0.2',
 'activity.1.system.python.packages.112.name': 'sphinxcontrib-htmlhelp',
 'activity.1.system.python.packages.112.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.112.version': '2.0.0',
 'activity.1.system.python.packages.113.name': 'sphinxcontrib-jsmath',
 'activity.1.system.python.packages.113.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.113.version': '1.0.1',
 'activity.1.system.python.packages.114.name': 'sphinxcontrib-qthelp',
 'activity.1.system.python.packages.114.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.114.version': '1.0.3',
 'activity.1.system.python.packages.115.name': 'sphinxcontrib-serializinghtml',
 'activity.1.system.python.packages.115.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.115.version': '1.1.5',
 'activity.1.system.python.packages.116.name': 'stack-data',
 'activity.1.system.python.packages.116.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.116.version': '0.5.1',
 'activity.1.system.python.packages.117.name': 'tables',
 'activity.1.system.python.packages.117.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.117.version': '3.7.0',
 'activity.1.system.python.packages.118.name': 'terminado',
 'activity.1.system.python.packages.118.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.118.version': '0.16.0',
 'activity.1.system.python.packages.119.name': 'threadpoolctl',
 'activity.1.system.python.packages.119.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.119.version': '3.1.0',
 'activity.1.system.python.packages.12.name': 'argon2-cffi-bindings',
 'activity.1.system.python.packages.12.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.12.version': '21.2.0',
 'activity.1.system.python.packages.120.name': 'tinycss2',
 'activity.1.system.python.packages.120.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.120.version': '1.2.1',
 'activity.1.system.python.packages.121.name': 'tomli',
 'activity.1.system.python.packages.121.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.121.version': '2.0.1',
 'activity.1.system.python.packages.122.name': 'tornado',
 'activity.1.system.python.packages.122.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.122.version': '6.2',
 'activity.1.system.python.packages.123.name': 'tqdm',
 'activity.1.system.python.packages.123.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.123.version': '4.64.1',
 'activity.1.system.python.packages.124.name': 'traitlets',
 'activity.1.system.python.packages.124.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.124.version': '5.5.0',
 'activity.1.system.python.packages.125.name': 'typing-extensions',
 'activity.1.system.python.packages.125.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.125.version': '4.4.0',
 'activity.1.system.python.packages.126.name': 'urllib3',
 'activity.1.system.python.packages.126.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.126.version': '1.26.12',
 'activity.1.system.python.packages.127.name': 'wcwidth',
 'activity.1.system.python.packages.127.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.127.version': '0.2.5',
 'activity.1.system.python.packages.128.name': 'webencodings',
 'activity.1.system.python.packages.128.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.128.version': '0.5.1',
 'activity.1.system.python.packages.129.name': 'websocket-client',
 'activity.1.system.python.packages.129.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.129.version': '1.4.1',
 'activity.1.system.python.packages.13.name': 'astropy',
 'activity.1.system.python.packages.13.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.13.version': '5.1.1',
 'activity.1.system.python.packages.130.name': 'wheel',
 'activity.1.system.python.packages.130.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.130.version': '0.37.1',
 'activity.1.system.python.packages.131.name': 'widgetsnbextension',
 'activity.1.system.python.packages.131.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.131.version': '4.0.3',
 'activity.1.system.python.packages.132.name': 'zipp',
 'activity.1.system.python.packages.132.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.132.version': '3.10.0',
 'activity.1.system.python.packages.133.name': 'zstandard',
 'activity.1.system.python.packages.133.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.133.version': '0.18.0',
 'activity.1.system.python.packages.14.name': 'asttokens',
 'activity.1.system.python.packages.14.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.14.version': '2.0.8',
 'activity.1.system.python.packages.15.name': 'attrs',
 'activity.1.system.python.packages.15.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.15.version': '22.1.0',
 'activity.1.system.python.packages.16.name': 'backcall',
 'activity.1.system.python.packages.16.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.16.version': '0.2.0',
 'activity.1.system.python.packages.17.name': 'beautifulsoup4',
 'activity.1.system.python.packages.17.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.17.version': '4.11.1',
 'activity.1.system.python.packages.18.name': 'bleach',
 'activity.1.system.python.packages.18.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.18.version': '5.0.1',
 'activity.1.system.python.packages.19.name': 'bokeh',
 'activity.1.system.python.packages.19.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.19.version': '2.4.3',
 'activity.1.system.python.packages.2.name': 'MarkupSafe',
 'activity.1.system.python.packages.2.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.2.version': '2.1.1',
 'activity.1.system.python.packages.20.name': 'certifi',
 'activity.1.system.python.packages.20.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.20.version': '2022.9.24',
 'activity.1.system.python.packages.21.name': 'cffi',
 'activity.1.system.python.packages.21.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.21.version': '1.15.1',
 'activity.1.system.python.packages.22.name': 'charset-normalizer',
 'activity.1.system.python.packages.22.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.22.version': '2.1.1',
 'activity.1.system.python.packages.23.name': 'commonmark',
 'activity.1.system.python.packages.23.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.23.version': '0.9.1',
 'activity.1.system.python.packages.24.name': 'contourpy',
 'activity.1.system.python.packages.24.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.24.version': '1.0.5',
 'activity.1.system.python.packages.25.name': 'corsikaio',
 'activity.1.system.python.packages.25.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.25.version': '0.2.5',
 'activity.1.system.python.packages.26.name': 'ctapipe',
 'activity.1.system.python.packages.26.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.26.version': '0.17.0',
 'activity.1.system.python.packages.27.name': 'cycler',
 'activity.1.system.python.packages.27.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.27.version': '0.11.0',
 'activity.1.system.python.packages.28.name': 'debugpy',
 'activity.1.system.python.packages.28.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.28.version': '1.6.3',
 'activity.1.system.python.packages.29.name': 'decorator',
 'activity.1.system.python.packages.29.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.29.version': '5.1.1',
 'activity.1.system.python.packages.3.name': 'Pillow',
 'activity.1.system.python.packages.3.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.3.version': '9.2.0',
 'activity.1.system.python.packages.30.name': 'defusedxml',
 'activity.1.system.python.packages.30.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.30.version': '0.7.1',
 'activity.1.system.python.packages.31.name': 'docutils',
 'activity.1.system.python.packages.31.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.31.version': '0.16',
 'activity.1.system.python.packages.32.name': 'entrypoints',
 'activity.1.system.python.packages.32.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.32.version': '0.4',
 'activity.1.system.python.packages.33.name': 'eventio',
 'activity.1.system.python.packages.33.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.33.version': '1.10.0',
 'activity.1.system.python.packages.34.name': 'executing',
 'activity.1.system.python.packages.34.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.34.version': '1.1.1',
 'activity.1.system.python.packages.35.name': 'fastjsonschema',
 'activity.1.system.python.packages.35.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.35.version': '2.16.2',
 'activity.1.system.python.packages.36.name': 'fonttools',
 'activity.1.system.python.packages.36.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.36.version': '4.38.0',
 'activity.1.system.python.packages.37.name': 'graphviz',
 'activity.1.system.python.packages.37.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.37.version': '0.20.1',
 'activity.1.system.python.packages.38.name': 'h5py',
 'activity.1.system.python.packages.38.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.38.version': '3.7.0',
 'activity.1.system.python.packages.39.name': 'idna',
 'activity.1.system.python.packages.39.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.39.version': '3.4',
 'activity.1.system.python.packages.4.name': 'PyYAML',
 'activity.1.system.python.packages.4.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.4.version': '6.0',
 'activity.1.system.python.packages.40.name': 'imagesize',
 'activity.1.system.python.packages.40.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.40.version': '1.4.1',
 'activity.1.system.python.packages.41.name': 'iminuit',
 'activity.1.system.python.packages.41.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.41.version': '2.17.0',
 'activity.1.system.python.packages.42.name': 'importlib-metadata',
 'activity.1.system.python.packages.42.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.42.version': '5.0.0',
 'activity.1.system.python.packages.43.name': 'importlib-resources',
 'activity.1.system.python.packages.43.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.43.version': '5.10.0',
 'activity.1.system.python.packages.44.name': 'ipykernel',
 'activity.1.system.python.packages.44.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.44.version': '6.16.1',
 'activity.1.system.python.packages.45.name': 'ipython',
 'activity.1.system.python.packages.45.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.45.version': '8.5.0',
 'activity.1.system.python.packages.46.name': 'ipython-genutils',
 'activity.1.system.python.packages.46.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.46.version': '0.2.0',
 'activity.1.system.python.packages.47.name': 'ipywidgets',
 'activity.1.system.python.packages.47.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.47.version': '8.0.2',
 'activity.1.system.python.packages.48.name': 'jedi',
 'activity.1.system.python.packages.48.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.48.version': '0.18.1',
 'activity.1.system.python.packages.49.name': 'joblib',
 'activity.1.system.python.packages.49.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.49.version': '1.2.0',
 'activity.1.system.python.packages.5.name': 'Pygments',
 'activity.1.system.python.packages.5.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.5.version': '2.13.0',
 'activity.1.system.python.packages.50.name': 'jsonschema',
 'activity.1.system.python.packages.50.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.50.version': '4.16.0',
 'activity.1.system.python.packages.51.name': 'jupyter',
 'activity.1.system.python.packages.51.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.51.version': '1.0.0',
 'activity.1.system.python.packages.52.name': 'jupyter-client',
 'activity.1.system.python.packages.52.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.52.version': '7.4.3',
 'activity.1.system.python.packages.53.name': 'jupyter-console',
 'activity.1.system.python.packages.53.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.53.version': '6.4.4',
 'activity.1.system.python.packages.54.name': 'jupyter-core',
 'activity.1.system.python.packages.54.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.54.version': '4.11.2',
 'activity.1.system.python.packages.55.name': 'jupyter-server',
 'activity.1.system.python.packages.55.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.55.version': '1.21.0',
 'activity.1.system.python.packages.56.name': 'jupyterlab-pygments',
 'activity.1.system.python.packages.56.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.56.version': '0.2.2',
 'activity.1.system.python.packages.57.name': 'jupyterlab-widgets',
 'activity.1.system.python.packages.57.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.57.version': '3.0.3',
 'activity.1.system.python.packages.58.name': 'kiwisolver',
 'activity.1.system.python.packages.58.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.58.version': '1.4.4',
 'activity.1.system.python.packages.59.name': 'llvmlite',
 'activity.1.system.python.packages.59.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.59.version': '0.39.1',
 'activity.1.system.python.packages.6.name': 'QtPy',
 'activity.1.system.python.packages.6.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.6.version': '2.2.1',
 'activity.1.system.python.packages.60.name': 'matplotlib',
 'activity.1.system.python.packages.60.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.60.version': '3.6.1',
 'activity.1.system.python.packages.61.name': 'matplotlib-inline',
 'activity.1.system.python.packages.61.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.61.version': '0.1.6',
 'activity.1.system.python.packages.62.name': 'mistune',
 'activity.1.system.python.packages.62.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.62.version': '2.0.4',
 'activity.1.system.python.packages.63.name': 'mock',
 'activity.1.system.python.packages.63.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.63.version': '1.0.1',
 'activity.1.system.python.packages.64.name': 'nbclassic',
 'activity.1.system.python.packages.64.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.64.version': '0.4.5',
 'activity.1.system.python.packages.65.name': 'nbclient',
 'activity.1.system.python.packages.65.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.65.version': '0.7.0',
 'activity.1.system.python.packages.66.name': 'nbconvert',
 'activity.1.system.python.packages.66.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.66.version': '7.2.2',
 'activity.1.system.python.packages.67.name': 'nbformat',
 'activity.1.system.python.packages.67.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.67.version': '5.7.0',
 'activity.1.system.python.packages.68.name': 'nbsphinx',
 'activity.1.system.python.packages.68.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.68.version': '0.8.9',
 'activity.1.system.python.packages.69.name': 'nest-asyncio',
 'activity.1.system.python.packages.69.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.69.version': '1.5.6',
 'activity.1.system.python.packages.7.name': 'Send2Trash',
 'activity.1.system.python.packages.7.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.7.version': '1.8.0',
 'activity.1.system.python.packages.70.name': 'notebook',
 'activity.1.system.python.packages.70.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.70.version': '6.5.1',
 'activity.1.system.python.packages.71.name': 'notebook-shim',
 'activity.1.system.python.packages.71.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.71.version': '0.2.0',
 'activity.1.system.python.packages.72.name': 'numba',
 'activity.1.system.python.packages.72.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.72.version': '0.56.3',
 'activity.1.system.python.packages.73.name': 'numexpr',
 'activity.1.system.python.packages.73.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.73.version': '2.8.3',
 'activity.1.system.python.packages.74.name': 'numpy',
 'activity.1.system.python.packages.74.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.74.version': '1.23.4',
 'activity.1.system.python.packages.75.name': 'numpydoc',
 'activity.1.system.python.packages.75.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.75.version': '1.4.0',
 'activity.1.system.python.packages.76.name': 'packaging',
 'activity.1.system.python.packages.76.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.76.version': '21.3',
 'activity.1.system.python.packages.77.name': 'pandas',
 'activity.1.system.python.packages.77.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.77.version': '1.5.1',
 'activity.1.system.python.packages.78.name': 'pandocfilters',
 'activity.1.system.python.packages.78.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.78.version': '1.5.0',
 'activity.1.system.python.packages.79.name': 'parso',
 'activity.1.system.python.packages.79.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.79.version': '0.8.3',
 'activity.1.system.python.packages.8.name': 'Sphinx',
 'activity.1.system.python.packages.8.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.8.version': '3.5.4',
 'activity.1.system.python.packages.80.name': 'pexpect',
 'activity.1.system.python.packages.80.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.80.version': '4.8.0',
 'activity.1.system.python.packages.81.name': 'pickleshare',
 'activity.1.system.python.packages.81.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.81.version': '0.7.5',
 'activity.1.system.python.packages.82.name': 'pip',
 'activity.1.system.python.packages.82.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.82.version': '22.3',
 'activity.1.system.python.packages.83.name': 'pkgutil-resolve-name',
 'activity.1.system.python.packages.83.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.83.version': '1.3.10',
 'activity.1.system.python.packages.84.name': 'prometheus-client',
 'activity.1.system.python.packages.84.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.84.version': '0.15.0',
 'activity.1.system.python.packages.85.name': 'prompt-toolkit',
 'activity.1.system.python.packages.85.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.85.version': '3.0.31',
 'activity.1.system.python.packages.86.name': 'psutil',
 'activity.1.system.python.packages.86.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.86.version': '5.9.3',
 'activity.1.system.python.packages.87.name': 'ptyprocess',
 'activity.1.system.python.packages.87.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.87.version': '0.7.0',
 'activity.1.system.python.packages.88.name': 'pure-eval',
 'activity.1.system.python.packages.88.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.88.version': '0.2.2',
 'activity.1.system.python.packages.89.name': 'pycparser',
 'activity.1.system.python.packages.89.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.89.version': '2.21',
 'activity.1.system.python.packages.9.name': 'alabaster',
 'activity.1.system.python.packages.9.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.9.version': '0.7.12',
 'activity.1.system.python.packages.90.name': 'pyerfa',
 'activity.1.system.python.packages.90.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.90.version': '2.0.0.1',
 'activity.1.system.python.packages.91.name': 'pyparsing',
 'activity.1.system.python.packages.91.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.91.version': '3.0.9',
 'activity.1.system.python.packages.92.name': 'pyrsistent',
 'activity.1.system.python.packages.92.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.92.version': '0.18.1',
 'activity.1.system.python.packages.93.name': 'python-dateutil',
 'activity.1.system.python.packages.93.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.93.version': '2.8.2',
 'activity.1.system.python.packages.94.name': 'pytz',
 'activity.1.system.python.packages.94.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.94.version': '2022.5',
 'activity.1.system.python.packages.95.name': 'pyzmq',
 'activity.1.system.python.packages.95.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.95.version': '24.0.1',
 'activity.1.system.python.packages.96.name': 'qtconsole',
 'activity.1.system.python.packages.96.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.96.version': '5.3.2',
 'activity.1.system.python.packages.97.name': 'readthedocs-sphinx-ext',
 'activity.1.system.python.packages.97.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.97.version': '2.1.9',
 'activity.1.system.python.packages.98.name': 'recommonmark',
 'activity.1.system.python.packages.98.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.98.version': '0.5.0',
 'activity.1.system.python.packages.99.name': 'requests',
 'activity.1.system.python.packages.99.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.1.system.python.packages.99.version': '2.28.1',
 'activity.1.system.python.version': ('3', '8', '6'),
 'activity.1.system.python.version_string': '3.8.6 (default, Oct 19 2020, '
                                            '15:10:29) \n'
                                            '[GCC 7.5.0]',
 'activity.1.system.start_time_utc': '2022-10-25T09:46:16.239',
 'activity.2.activity_name': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/bin/python',
 'activity.2.activity_uuid': '5e51cd7a-20cb-42fb-9be1-b34b7a442dd0',
 'activity.2.duration_min': 0.0023500000000353793,
 'activity.2.input.0.role': None,
 'activity.2.input.0.url': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/checkouts/v0.17.0/docs/examples/test.txt',
 'activity.2.start.time_utc': '2022-10-25T09:46:16.100',
 'activity.2.status': 'completed',
 'activity.2.stop.time_utc': '2022-10-25T09:46:16.241',
 'activity.2.system.arguments.0': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages/ipykernel_launcher.py',
 'activity.2.system.arguments.1': '-f',
 'activity.2.system.arguments.2': '/tmp/tmp93r2rkpb.json',
 'activity.2.system.arguments.3': '--HistoryManager.hist_file=:memory:',
 'activity.2.system.ctapipe_resources_version': 'not installed',
 'activity.2.system.ctapipe_svc_path': None,
 'activity.2.system.ctapipe_version': '0.17.0',
 'activity.2.system.environment.CONDA_DEFAULT_ENV': None,
 'activity.2.system.environment.CONDA_EXE': None,
 'activity.2.system.environment.CONDA_PREFIX': None,
 'activity.2.system.environment.CONDA_PROMPT_MODIFIER': None,
 'activity.2.system.environment.CONDA_PYTHON_EXE': None,
 'activity.2.system.environment.CONDA_SHLVL': None,
 'activity.2.system.environment.DYLD_LIBRARY_PATH': None,
 'activity.2.system.environment.HOME': '/home/docs',
 'activity.2.system.environment.LD_LIBRARY_PATH': None,
 'activity.2.system.environment.PATH': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/bin:/home/docs/.pyenv/shims:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/home/docs/.conda/bin:/home/docs/.pyenv/bin',
 'activity.2.system.environment.SHELL': None,
 'activity.2.system.environment.USER': None,
 'activity.2.system.eventio_version': '1.10.0',
 'activity.2.system.executable': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/bin/python',
 'activity.2.system.platform.architecture_bits': '64bit',
 'activity.2.system.platform.architecture_linkage': 'ELF',
 'activity.2.system.platform.boot_time': '2022-10-24T20:39:40.000',
 'activity.2.system.platform.libcver': ('glibc', '2.27'),
 'activity.2.system.platform.machine': 'x86_64',
 'activity.2.system.platform.n_cpus': 2,
 'activity.2.system.platform.node': 'build-18436802-project-702899-ctapipe',
 'activity.2.system.platform.processor': 'x86_64',
 'activity.2.system.platform.release': '5.15.0-1004-aws',
 'activity.2.system.platform.system': 'Linux',
 'activity.2.system.platform.version': '#6-Ubuntu SMP Thu Mar 31 09:44:20 UTC '
                                       '2022',
 'activity.2.system.python.compiler': 'GCC 7.5.0',
 'activity.2.system.python.implementation': 'CPython',
 'activity.2.system.python.packages.0.name': 'Babel',
 'activity.2.system.python.packages.0.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.0.version': '2.10.3',
 'activity.2.system.python.packages.1.name': 'Jinja2',
 'activity.2.system.python.packages.1.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.1.version': '3.0.3',
 'activity.2.system.python.packages.10.name': 'anyio',
 'activity.2.system.python.packages.10.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.10.version': '3.6.2',
 'activity.2.system.python.packages.100.name': 'scikit-learn',
 'activity.2.system.python.packages.100.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.100.version': '1.1.2',
 'activity.2.system.python.packages.101.name': 'scipy',
 'activity.2.system.python.packages.101.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.101.version': '1.9.3',
 'activity.2.system.python.packages.102.name': 'setuptools',
 'activity.2.system.python.packages.102.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.102.version': '65.5.0',
 'activity.2.system.python.packages.103.name': 'setuptools-scm',
 'activity.2.system.python.packages.103.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.103.version': '7.0.5',
 'activity.2.system.python.packages.104.name': 'six',
 'activity.2.system.python.packages.104.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.104.version': '1.16.0',
 'activity.2.system.python.packages.105.name': 'sniffio',
 'activity.2.system.python.packages.105.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.105.version': '1.3.0',
 'activity.2.system.python.packages.106.name': 'snowballstemmer',
 'activity.2.system.python.packages.106.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.106.version': '2.2.0',
 'activity.2.system.python.packages.107.name': 'soupsieve',
 'activity.2.system.python.packages.107.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.107.version': '2.3.2.post1',
 'activity.2.system.python.packages.108.name': 'sphinx-automodapi',
 'activity.2.system.python.packages.108.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.108.version': '0.14.1',
 'activity.2.system.python.packages.109.name': 'sphinx-rtd-theme',
 'activity.2.system.python.packages.109.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.109.version': '1.0.0',
 'activity.2.system.python.packages.11.name': 'argon2-cffi',
 'activity.2.system.python.packages.11.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.11.version': '21.3.0',
 'activity.2.system.python.packages.110.name': 'sphinxcontrib-applehelp',
 'activity.2.system.python.packages.110.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.110.version': '1.0.2',
 'activity.2.system.python.packages.111.name': 'sphinxcontrib-devhelp',
 'activity.2.system.python.packages.111.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.111.version': '1.0.2',
 'activity.2.system.python.packages.112.name': 'sphinxcontrib-htmlhelp',
 'activity.2.system.python.packages.112.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.112.version': '2.0.0',
 'activity.2.system.python.packages.113.name': 'sphinxcontrib-jsmath',
 'activity.2.system.python.packages.113.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.113.version': '1.0.1',
 'activity.2.system.python.packages.114.name': 'sphinxcontrib-qthelp',
 'activity.2.system.python.packages.114.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.114.version': '1.0.3',
 'activity.2.system.python.packages.115.name': 'sphinxcontrib-serializinghtml',
 'activity.2.system.python.packages.115.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.115.version': '1.1.5',
 'activity.2.system.python.packages.116.name': 'stack-data',
 'activity.2.system.python.packages.116.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.116.version': '0.5.1',
 'activity.2.system.python.packages.117.name': 'tables',
 'activity.2.system.python.packages.117.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.117.version': '3.7.0',
 'activity.2.system.python.packages.118.name': 'terminado',
 'activity.2.system.python.packages.118.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.118.version': '0.16.0',
 'activity.2.system.python.packages.119.name': 'threadpoolctl',
 'activity.2.system.python.packages.119.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.119.version': '3.1.0',
 'activity.2.system.python.packages.12.name': 'argon2-cffi-bindings',
 'activity.2.system.python.packages.12.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.12.version': '21.2.0',
 'activity.2.system.python.packages.120.name': 'tinycss2',
 'activity.2.system.python.packages.120.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.120.version': '1.2.1',
 'activity.2.system.python.packages.121.name': 'tomli',
 'activity.2.system.python.packages.121.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.121.version': '2.0.1',
 'activity.2.system.python.packages.122.name': 'tornado',
 'activity.2.system.python.packages.122.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.122.version': '6.2',
 'activity.2.system.python.packages.123.name': 'tqdm',
 'activity.2.system.python.packages.123.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.123.version': '4.64.1',
 'activity.2.system.python.packages.124.name': 'traitlets',
 'activity.2.system.python.packages.124.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.124.version': '5.5.0',
 'activity.2.system.python.packages.125.name': 'typing-extensions',
 'activity.2.system.python.packages.125.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.125.version': '4.4.0',
 'activity.2.system.python.packages.126.name': 'urllib3',
 'activity.2.system.python.packages.126.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.126.version': '1.26.12',
 'activity.2.system.python.packages.127.name': 'wcwidth',
 'activity.2.system.python.packages.127.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.127.version': '0.2.5',
 'activity.2.system.python.packages.128.name': 'webencodings',
 'activity.2.system.python.packages.128.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.128.version': '0.5.1',
 'activity.2.system.python.packages.129.name': 'websocket-client',
 'activity.2.system.python.packages.129.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.129.version': '1.4.1',
 'activity.2.system.python.packages.13.name': 'astropy',
 'activity.2.system.python.packages.13.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.13.version': '5.1.1',
 'activity.2.system.python.packages.130.name': 'wheel',
 'activity.2.system.python.packages.130.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.130.version': '0.37.1',
 'activity.2.system.python.packages.131.name': 'widgetsnbextension',
 'activity.2.system.python.packages.131.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.131.version': '4.0.3',
 'activity.2.system.python.packages.132.name': 'zipp',
 'activity.2.system.python.packages.132.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.132.version': '3.10.0',
 'activity.2.system.python.packages.133.name': 'zstandard',
 'activity.2.system.python.packages.133.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.133.version': '0.18.0',
 'activity.2.system.python.packages.14.name': 'asttokens',
 'activity.2.system.python.packages.14.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.14.version': '2.0.8',
 'activity.2.system.python.packages.15.name': 'attrs',
 'activity.2.system.python.packages.15.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.15.version': '22.1.0',
 'activity.2.system.python.packages.16.name': 'backcall',
 'activity.2.system.python.packages.16.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.16.version': '0.2.0',
 'activity.2.system.python.packages.17.name': 'beautifulsoup4',
 'activity.2.system.python.packages.17.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.17.version': '4.11.1',
 'activity.2.system.python.packages.18.name': 'bleach',
 'activity.2.system.python.packages.18.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.18.version': '5.0.1',
 'activity.2.system.python.packages.19.name': 'bokeh',
 'activity.2.system.python.packages.19.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.19.version': '2.4.3',
 'activity.2.system.python.packages.2.name': 'MarkupSafe',
 'activity.2.system.python.packages.2.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.2.version': '2.1.1',
 'activity.2.system.python.packages.20.name': 'certifi',
 'activity.2.system.python.packages.20.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.20.version': '2022.9.24',
 'activity.2.system.python.packages.21.name': 'cffi',
 'activity.2.system.python.packages.21.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.21.version': '1.15.1',
 'activity.2.system.python.packages.22.name': 'charset-normalizer',
 'activity.2.system.python.packages.22.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.22.version': '2.1.1',
 'activity.2.system.python.packages.23.name': 'commonmark',
 'activity.2.system.python.packages.23.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.23.version': '0.9.1',
 'activity.2.system.python.packages.24.name': 'contourpy',
 'activity.2.system.python.packages.24.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.24.version': '1.0.5',
 'activity.2.system.python.packages.25.name': 'corsikaio',
 'activity.2.system.python.packages.25.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.25.version': '0.2.5',
 'activity.2.system.python.packages.26.name': 'ctapipe',
 'activity.2.system.python.packages.26.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.26.version': '0.17.0',
 'activity.2.system.python.packages.27.name': 'cycler',
 'activity.2.system.python.packages.27.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.27.version': '0.11.0',
 'activity.2.system.python.packages.28.name': 'debugpy',
 'activity.2.system.python.packages.28.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.28.version': '1.6.3',
 'activity.2.system.python.packages.29.name': 'decorator',
 'activity.2.system.python.packages.29.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.29.version': '5.1.1',
 'activity.2.system.python.packages.3.name': 'Pillow',
 'activity.2.system.python.packages.3.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.3.version': '9.2.0',
 'activity.2.system.python.packages.30.name': 'defusedxml',
 'activity.2.system.python.packages.30.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.30.version': '0.7.1',
 'activity.2.system.python.packages.31.name': 'docutils',
 'activity.2.system.python.packages.31.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.31.version': '0.16',
 'activity.2.system.python.packages.32.name': 'entrypoints',
 'activity.2.system.python.packages.32.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.32.version': '0.4',
 'activity.2.system.python.packages.33.name': 'eventio',
 'activity.2.system.python.packages.33.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.33.version': '1.10.0',
 'activity.2.system.python.packages.34.name': 'executing',
 'activity.2.system.python.packages.34.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.34.version': '1.1.1',
 'activity.2.system.python.packages.35.name': 'fastjsonschema',
 'activity.2.system.python.packages.35.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.35.version': '2.16.2',
 'activity.2.system.python.packages.36.name': 'fonttools',
 'activity.2.system.python.packages.36.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.36.version': '4.38.0',
 'activity.2.system.python.packages.37.name': 'graphviz',
 'activity.2.system.python.packages.37.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.37.version': '0.20.1',
 'activity.2.system.python.packages.38.name': 'h5py',
 'activity.2.system.python.packages.38.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.38.version': '3.7.0',
 'activity.2.system.python.packages.39.name': 'idna',
 'activity.2.system.python.packages.39.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.39.version': '3.4',
 'activity.2.system.python.packages.4.name': 'PyYAML',
 'activity.2.system.python.packages.4.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.4.version': '6.0',
 'activity.2.system.python.packages.40.name': 'imagesize',
 'activity.2.system.python.packages.40.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.40.version': '1.4.1',
 'activity.2.system.python.packages.41.name': 'iminuit',
 'activity.2.system.python.packages.41.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.41.version': '2.17.0',
 'activity.2.system.python.packages.42.name': 'importlib-metadata',
 'activity.2.system.python.packages.42.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.42.version': '5.0.0',
 'activity.2.system.python.packages.43.name': 'importlib-resources',
 'activity.2.system.python.packages.43.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.43.version': '5.10.0',
 'activity.2.system.python.packages.44.name': 'ipykernel',
 'activity.2.system.python.packages.44.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.44.version': '6.16.1',
 'activity.2.system.python.packages.45.name': 'ipython',
 'activity.2.system.python.packages.45.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.45.version': '8.5.0',
 'activity.2.system.python.packages.46.name': 'ipython-genutils',
 'activity.2.system.python.packages.46.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.46.version': '0.2.0',
 'activity.2.system.python.packages.47.name': 'ipywidgets',
 'activity.2.system.python.packages.47.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.47.version': '8.0.2',
 'activity.2.system.python.packages.48.name': 'jedi',
 'activity.2.system.python.packages.48.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.48.version': '0.18.1',
 'activity.2.system.python.packages.49.name': 'joblib',
 'activity.2.system.python.packages.49.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.49.version': '1.2.0',
 'activity.2.system.python.packages.5.name': 'Pygments',
 'activity.2.system.python.packages.5.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.5.version': '2.13.0',
 'activity.2.system.python.packages.50.name': 'jsonschema',
 'activity.2.system.python.packages.50.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.50.version': '4.16.0',
 'activity.2.system.python.packages.51.name': 'jupyter',
 'activity.2.system.python.packages.51.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.51.version': '1.0.0',
 'activity.2.system.python.packages.52.name': 'jupyter-client',
 'activity.2.system.python.packages.52.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.52.version': '7.4.3',
 'activity.2.system.python.packages.53.name': 'jupyter-console',
 'activity.2.system.python.packages.53.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.53.version': '6.4.4',
 'activity.2.system.python.packages.54.name': 'jupyter-core',
 'activity.2.system.python.packages.54.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.54.version': '4.11.2',
 'activity.2.system.python.packages.55.name': 'jupyter-server',
 'activity.2.system.python.packages.55.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.55.version': '1.21.0',
 'activity.2.system.python.packages.56.name': 'jupyterlab-pygments',
 'activity.2.system.python.packages.56.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.56.version': '0.2.2',
 'activity.2.system.python.packages.57.name': 'jupyterlab-widgets',
 'activity.2.system.python.packages.57.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.57.version': '3.0.3',
 'activity.2.system.python.packages.58.name': 'kiwisolver',
 'activity.2.system.python.packages.58.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.58.version': '1.4.4',
 'activity.2.system.python.packages.59.name': 'llvmlite',
 'activity.2.system.python.packages.59.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.59.version': '0.39.1',
 'activity.2.system.python.packages.6.name': 'QtPy',
 'activity.2.system.python.packages.6.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.6.version': '2.2.1',
 'activity.2.system.python.packages.60.name': 'matplotlib',
 'activity.2.system.python.packages.60.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.60.version': '3.6.1',
 'activity.2.system.python.packages.61.name': 'matplotlib-inline',
 'activity.2.system.python.packages.61.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.61.version': '0.1.6',
 'activity.2.system.python.packages.62.name': 'mistune',
 'activity.2.system.python.packages.62.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.62.version': '2.0.4',
 'activity.2.system.python.packages.63.name': 'mock',
 'activity.2.system.python.packages.63.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.63.version': '1.0.1',
 'activity.2.system.python.packages.64.name': 'nbclassic',
 'activity.2.system.python.packages.64.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.64.version': '0.4.5',
 'activity.2.system.python.packages.65.name': 'nbclient',
 'activity.2.system.python.packages.65.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.65.version': '0.7.0',
 'activity.2.system.python.packages.66.name': 'nbconvert',
 'activity.2.system.python.packages.66.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.66.version': '7.2.2',
 'activity.2.system.python.packages.67.name': 'nbformat',
 'activity.2.system.python.packages.67.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.67.version': '5.7.0',
 'activity.2.system.python.packages.68.name': 'nbsphinx',
 'activity.2.system.python.packages.68.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.68.version': '0.8.9',
 'activity.2.system.python.packages.69.name': 'nest-asyncio',
 'activity.2.system.python.packages.69.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.69.version': '1.5.6',
 'activity.2.system.python.packages.7.name': 'Send2Trash',
 'activity.2.system.python.packages.7.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.7.version': '1.8.0',
 'activity.2.system.python.packages.70.name': 'notebook',
 'activity.2.system.python.packages.70.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.70.version': '6.5.1',
 'activity.2.system.python.packages.71.name': 'notebook-shim',
 'activity.2.system.python.packages.71.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.71.version': '0.2.0',
 'activity.2.system.python.packages.72.name': 'numba',
 'activity.2.system.python.packages.72.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.72.version': '0.56.3',
 'activity.2.system.python.packages.73.name': 'numexpr',
 'activity.2.system.python.packages.73.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.73.version': '2.8.3',
 'activity.2.system.python.packages.74.name': 'numpy',
 'activity.2.system.python.packages.74.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.74.version': '1.23.4',
 'activity.2.system.python.packages.75.name': 'numpydoc',
 'activity.2.system.python.packages.75.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.75.version': '1.4.0',
 'activity.2.system.python.packages.76.name': 'packaging',
 'activity.2.system.python.packages.76.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.76.version': '21.3',
 'activity.2.system.python.packages.77.name': 'pandas',
 'activity.2.system.python.packages.77.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.77.version': '1.5.1',
 'activity.2.system.python.packages.78.name': 'pandocfilters',
 'activity.2.system.python.packages.78.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.78.version': '1.5.0',
 'activity.2.system.python.packages.79.name': 'parso',
 'activity.2.system.python.packages.79.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.79.version': '0.8.3',
 'activity.2.system.python.packages.8.name': 'Sphinx',
 'activity.2.system.python.packages.8.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.8.version': '3.5.4',
 'activity.2.system.python.packages.80.name': 'pexpect',
 'activity.2.system.python.packages.80.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.80.version': '4.8.0',
 'activity.2.system.python.packages.81.name': 'pickleshare',
 'activity.2.system.python.packages.81.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.81.version': '0.7.5',
 'activity.2.system.python.packages.82.name': 'pip',
 'activity.2.system.python.packages.82.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.82.version': '22.3',
 'activity.2.system.python.packages.83.name': 'pkgutil-resolve-name',
 'activity.2.system.python.packages.83.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.83.version': '1.3.10',
 'activity.2.system.python.packages.84.name': 'prometheus-client',
 'activity.2.system.python.packages.84.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.84.version': '0.15.0',
 'activity.2.system.python.packages.85.name': 'prompt-toolkit',
 'activity.2.system.python.packages.85.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.85.version': '3.0.31',
 'activity.2.system.python.packages.86.name': 'psutil',
 'activity.2.system.python.packages.86.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.86.version': '5.9.3',
 'activity.2.system.python.packages.87.name': 'ptyprocess',
 'activity.2.system.python.packages.87.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.87.version': '0.7.0',
 'activity.2.system.python.packages.88.name': 'pure-eval',
 'activity.2.system.python.packages.88.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.88.version': '0.2.2',
 'activity.2.system.python.packages.89.name': 'pycparser',
 'activity.2.system.python.packages.89.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.89.version': '2.21',
 'activity.2.system.python.packages.9.name': 'alabaster',
 'activity.2.system.python.packages.9.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.9.version': '0.7.12',
 'activity.2.system.python.packages.90.name': 'pyerfa',
 'activity.2.system.python.packages.90.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.90.version': '2.0.0.1',
 'activity.2.system.python.packages.91.name': 'pyparsing',
 'activity.2.system.python.packages.91.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.91.version': '3.0.9',
 'activity.2.system.python.packages.92.name': 'pyrsistent',
 'activity.2.system.python.packages.92.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.92.version': '0.18.1',
 'activity.2.system.python.packages.93.name': 'python-dateutil',
 'activity.2.system.python.packages.93.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.93.version': '2.8.2',
 'activity.2.system.python.packages.94.name': 'pytz',
 'activity.2.system.python.packages.94.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.94.version': '2022.5',
 'activity.2.system.python.packages.95.name': 'pyzmq',
 'activity.2.system.python.packages.95.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.95.version': '24.0.1',
 'activity.2.system.python.packages.96.name': 'qtconsole',
 'activity.2.system.python.packages.96.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.96.version': '5.3.2',
 'activity.2.system.python.packages.97.name': 'readthedocs-sphinx-ext',
 'activity.2.system.python.packages.97.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.97.version': '2.1.9',
 'activity.2.system.python.packages.98.name': 'recommonmark',
 'activity.2.system.python.packages.98.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.98.version': '0.5.0',
 'activity.2.system.python.packages.99.name': 'requests',
 'activity.2.system.python.packages.99.path': '/home/docs/checkouts/readthedocs.org/user_builds/ctapipe/envs/v0.17.0/lib/python3.8/site-packages',
 'activity.2.system.python.packages.99.version': '2.28.1',
 'activity.2.system.python.version': ('3', '8', '6'),
 'activity.2.system.python.version_string': '3.8.6 (default, Oct 19 2020, '
                                            '15:10:29) \n'
                                            '[GCC 7.5.0]',
 'activity.2.system.start_time_utc': '2022-10-25T09:46:16.123'}