pypa / hatch

Modern, extensible Python project management
https://hatch.pypa.io/latest/
MIT License
6.11k stars 309 forks source link

OSError: Unable to locate executables directory #372

Closed gavindsouza closed 2 years ago

gavindsouza commented 2 years ago

Steps

  1. Installed hatch via pipx / pip (tried both)
  2. Ran hatch new --init over project [ref: https://github.com/frappe/bench]
  3. pyproject.toml file generated (which is pretty sick btw)
  4. Did a couple of tweaks for the license and dependencies keys
  5. hatch build throws the following error
╭─────────────────────────────── Traceback (most recent call last) ────────────────────────────────╮
│ /home/frappe/.local/lib/python3.10/site-packages/hatch/cli/__init__.py:203 in main               │
│                                                                                                  │
│   200                                                                                            │
│   201 def main():  # no cov                                                                      │
│   202 │   try:                                                                                   │
│ ❱ 203 │   │   return hatch(windows_expand_args=False)                                            │
│   204 │   except Exception:                                                                      │
│   205 │   │   from rich.console import Console                                                   │
│   206                                                                                            │
│                                                                                                  │
│ /home/frappe/.local/lib/python3.10/site-packages/click/core.py:1130 in __call__                  │
│                                                                                                  │
│ /home/frappe/.local/lib/python3.10/site-packages/click/core.py:1055 in main                      │
│                                                                                                  │
│ /home/frappe/.local/lib/python3.10/site-packages/click/core.py:1657 in invoke                    │
│                                                                                                  │
│ /home/frappe/.local/lib/python3.10/site-packages/click/core.py:1404 in invoke                    │
│                                                                                                  │
│ /home/frappe/.local/lib/python3.10/site-packages/click/core.py:760 in invoke                     │
│                                                                                                  │
│ /home/frappe/.local/lib/python3.10/site-packages/click/decorators.py:38 in new_func              │
│                                                                                                  │
│ /home/frappe/.local/lib/python3.10/site-packages/hatch/cli/build/__init__.py:101 in build        │
│                                                                                                  │
│    98 │   │   │   │   dependencies.extend(builder.config.dependencies)                           │
│    99 │   │   │                                                                                  │
│   100 │   │   │   with app.status_waiting('Setting up build environment') as status:             │
│ ❱ 101 │   │   │   │   with environment.build_environment(dependencies) as build_environment:     │
│   102 │   │   │   │   │   status.stop()                                                          │
│   103 │   │   │   │   │                                                                          │
│   104 │   │   │   │   │   build_process = environment.get_build_process(                         │
│                                                                                                  │
│ /usr/lib/python3.10/contextlib.py:135 in __enter__                                               │
│                                                                                                  │
│   132 │   │   # they are only needed for recreation, which is not possible anymore               │
│   133 │   │   del self.args, self.kwds, self.func                                                │
│   134 │   │   try:                                                                               │
│ ❱ 135 │   │   │   return next(self.gen)                                                          │
│   136 │   │   except StopIteration:                                                              │
│   137 │   │   │   raise RuntimeError("generator didn't yield") from None                         │
│   138                                                                                            │
│                                                                                                  │
│ /home/frappe/.local/lib/python3.10/site-packages/hatch/env/virtual.py:89 in build_environment    │
│                                                                                                  │
│    86 │                                                                                          │
│    87 │   @contextmanager                                                                        │
│    88 │   def build_environment(self, dependencies):                                             │
│ ❱  89 │   │   with self.get_env_vars(), TempVirtualEnv(self.parent_python, self.platform, self   │
│    90 │   │   │   self.platform.check_command(self.construct_pip_install_command(dependencies)   │
│    91 │   │   │                                                                                  │
│    92 │   │   │   yield                                                                          │
│                                                                                                  │
│ /home/frappe/.local/lib/python3.10/site-packages/hatch/venv/core.py:115 in __enter__             │
│                                                                                                  │
│   112 │                                                                                          │
│   113 │   def __enter__(self):                                                                   │
│   114 │   │   self.create(self.parent_python)                                                    │
│ ❱ 115 │   │   return super().__enter__()                                                         │
│   116 │                                                                                          │
│   117 │   def __exit__(self, exc_type, exc_value, traceback):                                    │
│   118 │   │   super().__exit__(exc_type, exc_value, traceback)                                   │
│                                                                                                  │
│ /home/frappe/.local/lib/python3.10/site-packages/hatch/venv/core.py:94 in __enter__              │
│                                                                                                  │
│    91 │   │   return self.python_info.sys_path                                                   │
│    92 │                                                                                          │
│    93 │   def __enter__(self):                                                                   │
│ ❱  94 │   │   self.activate()                                                                    │
│    95 │   │   return self                                                                        │
│    96 │                                                                                          │
│    97 │   def __exit__(self, exc_type, exc_value, traceback):                                    │
│                                                                                                  │
│ /home/frappe/.local/lib/python3.10/site-packages/hatch/venv/core.py:31 in activate               │
│                                                                                                  │
│    28 │   │   if old_path is None:                                                               │
│    29 │   │   │   os.environ['PATH'] = str(self.executables_directory)                           │
│    30 │   │   else:                                                                              │
│ ❱  31 │   │   │   os.environ['PATH'] = f'{self.executables_directory}{os.pathsep}{old_path}'     │
│    32 │   │                                                                                      │
│    33 │   │   for env_var in self.IGNORED_ENV_VARS:                                              │
│    34 │   │   │   self._env_vars_to_restore[env_var] = os.environ.pop(env_var, None)             │
│                                                                                                  │
│ /home/frappe/.local/lib/python3.10/site-packages/hatch/venv/core.py:81 in executables_directory  │
│                                                                                                  │
│    78 │   │   │   │   else:                                                                      │
│    79 │   │   │   │   │   raise OSError('Unable to locate executables directory')                │
│    80 │   │   │   else:                                                                          │
│ ❱  81 │   │   │   │   raise OSError('Unable to locate executables directory')                    │
│    82 │   │                                                                                      │
│    83 │   │   return self._executables_directory                                                 │
│    84                                                                                            │
╰──────────────────────────────────────────────────────────────────────────────────────────────────╯
OSError: Unable to locate executables directory

Generated pyproject.toml file:

[project]
name = "frappe-bench"
description = "CLI to manage Multi-tenant deployments for Frappe apps"
readme = "README.md"
license = "GPL-3.0-only"
requires-python = ">=3.7"
authors = [
    { name = "Frappe Technologies Pvt Ltd", email = "developers@frappe.io" },
]
classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Environment :: Console",
    "License :: OSI Approved :: GNU Affero General Public License v3",
    "Natural Language :: English",
    "Operating System :: MacOS",
    "Operating System :: OS Independent",
    "Topic :: Software Development :: Build Tools",
    "Topic :: Software Development :: User Interfaces",
    "Topic :: System :: Installation/Setup",
]
dependencies = [
    "Click>=7.0",
    "GitPython~=2.1.15",
    "honcho",
    "Jinja2~=3.0.3",
    "python-crontab~=2.4.0",
    "requests",
    "semantic-version~=2.8.2",
    "setuptools>40.9.0",
    "tomli;python_version<'3.11'",
]
dynamic = [
    "version",
]

[project.scripts]
bench = "bench.cli:cli"

[project.urls]
Changelog = "https://github.com/frappe/bench/releases"
Documentation = "https://frappeframework.com/docs/user/en/bench"
Homepage = "https://frappe.io/bench"
Source = "https://github.com/frappe/bench"

[build-system]
requires = [
    "hatchling>=1.6.0",
]
build-backend = "hatchling.build"

[tool.hatch.version]
path = "bench/__init__.py"

[tool.hatch.build.targets.sdist]
include = [
    "/bench",
]

Am I missing something? Followed the docs until this point.

ofek commented 2 years ago

Can you please try changing that line to:

raise OSError(f'Unable to locate executables directory: {exe_dir}')
gavindsouza commented 2 years ago

Can you please try changing that line to:

raise OSError(f'Unable to locate executables directory: {exe_dir}')

I'm getting

OSError: Unable to locate executables directory: /tmp/tmpaesfdfz6/ix1I/bin

Dropped a breakpoint, self.__dict__ looked like:

{'_env_vars_to_restore': {'PATH': 
'/home/frappe/.pyenv/plugins/pyenv-virtualenv/shims:/home/frappe/.pyenv/shims:/home/frappe/.pyenv/bin:/home/frappe/.npm-global/bin:/home/frappe/.local/bin:/home/frappe/.nix-p
rofile/bin:/nix/var/nix/profiles/default/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/home/frappe/.antigen/bundles/
robbyrussell/oh-my-zsh/lib:/home/frappe/.antigen/bundles/robbyrussell/oh-my-zsh/plugins/git:/home/frappe/.antigen/bundles/robbyrussell/oh-my-zsh/plugins/sudo:/home/frappe/.an
tigen/bundles/robbyrussell/oh-my-zsh/plugins/pip:/home/frappe/.antigen/bundles/robbyrussell/oh-my-zsh/plugins/command-not-found:/home/frappe/.antigen/bundles/zsh-users/zsh-sy
ntax-highlighting:/home/frappe/.antigen/bundles/zsh-users/zsh-completions:/home/frappe/.antigen/bundles/zsh-users/zsh-autosuggestions',
                          'VIRTUAL_ENV': None},
 '_executables_directory': None,
 'directory': Path('/tmp/tmp7ty7an6e/TW_6'),
 'parent_dir': <TemporaryDirectory '/tmp/tmp7ty7an6e'>,
 'parent_python': '/usr/bin/python3.10',
 'platform': <hatch.utils.platform.Platform object at 0x7f1e00a23790>,
 'python_info': <hatch.utils.env.PythonInfo object at 0x7f1e0053de40>,
 'verbosity': 0}

Let me know if I can do anything else to help

ofek commented 2 years ago

Thank you! Can you see what's in parent_dir?

gavindsouza commented 2 years ago

Thank you! Can you see what's in parent_dir?

<TemporaryDirectory '/tmp/tmp3wgxc2dl'>

Click here to see the contents of `VirtualEnv.parent_dir` (found recursively) ```python ['/tmp/tmp3wgxc2dl/otNZ/.gitignore', '/tmp/tmp3wgxc2dl/otNZ/pyvenv.cfg', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/_virtualenv.pth', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip-22.1.2.virtualenv', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/distutils-precedence.pth', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/wheel-0.37.1.virtualenv', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/_virtualenv.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools-62.6.0.virtualenv', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/zipp.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/appdirs.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/jaraco/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/jaraco/functools.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/jaraco/context.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/jaraco/text/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/importlib_resources/_adapters.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/importlib_resources/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/importlib_resources/_common.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/importlib_resources/simple.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/importlib_resources/_legacy.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/importlib_resources/abc.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/importlib_resources/_itertools.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/importlib_resources/readers.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/importlib_resources/_compat.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/pyparsing/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/pyparsing/util.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/pyparsing/unicode.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/pyparsing/exceptions.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/pyparsing/testing.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/pyparsing/common.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/pyparsing/core.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/pyparsing/actions.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/pyparsing/helpers.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/pyparsing/results.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/pyparsing/diagram/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/packaging/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/packaging/_manylinux.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/packaging/specifiers.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/packaging/_musllinux.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/packaging/__about__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/packaging/requirements.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/packaging/utils.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/packaging/_structures.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/packaging/markers.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/packaging/version.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/packaging/tags.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/more_itertools/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/more_itertools/recipes.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/_vendor/more_itertools/more.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pkg_resources/extern/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/wheel/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/wheel/util.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/wheel/wheelfile.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/wheel/macosx_libfile.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/wheel/__main__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/wheel/metadata.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/wheel/pkginfo.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/wheel/bdist_wheel.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/wheel/cli/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/wheel/cli/pack.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/wheel/cli/convert.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/wheel/cli/unpack.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/wheel/vendored/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/wheel/vendored/packaging/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/wheel/vendored/packaging/_typing.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/wheel/vendored/packaging/tags.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools-62.6.0.dist-info/RECORD', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools-62.6.0.dist-info/top_level.txt', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools-62.6.0.dist-info/METADATA', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools-62.6.0.dist-info/entry_points.txt', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools-62.6.0.dist-info/WHEEL', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools-62.6.0.dist-info/LICENSE', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools-62.6.0.dist-info/INSTALLER', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/__main__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/py.typed', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/six.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/typing_extensions.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/vendor.txt', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/tenacity/tornadoweb.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/tenacity/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/tenacity/after.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/tenacity/_utils.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/tenacity/before.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/tenacity/nap.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/tenacity/stop.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/tenacity/_asyncio.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/tenacity/before_sleep.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/tenacity/retry.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/tenacity/wait.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/colorama/win32.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/colorama/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/colorama/winterm.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/colorama/initialise.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/colorama/ansi.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/colorama/ansitowin32.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/serializer.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/constants.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/html5parser.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/_utils.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/_ihatexml.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/_tokenizer.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/_inputstream.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/treebuilders/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/treebuilders/base.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/treebuilders/dom.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/treebuilders/etree.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/treebuilders/etree_lxml.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/filters/lint.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/filters/whitespace.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/filters/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/filters/base.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/filters/sanitizer.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/filters/optionaltags.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/treewalkers/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/treewalkers/base.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/treewalkers/dom.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/treewalkers/genshi.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/treewalkers/etree.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/treewalkers/etree_lxml.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/treeadapters/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/treeadapters/genshi.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/treeadapters/sax.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/_trie/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/_trie/_base.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/html5lib/_trie/py.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pkg_resources/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pkg_resources/py31compat.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/idna/intranges.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/idna/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/idna/uts46data.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/idna/package_data.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/idna/compat.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/idna/codec.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/idna/idnadata.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/idna/core.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/requests/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/requests/certs.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/requests/models.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/requests/exceptions.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/requests/status_codes.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/requests/auth.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/requests/api.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/requests/packages.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/requests/_internal_utils.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/requests/utils.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/requests/hooks.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/requests/compat.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/requests/__version__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/requests/help.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/requests/structures.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/requests/adapters.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/requests/cookies.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/requests/sessions.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/regexopt.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/util.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/console.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/lexer.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/__main__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/unistring.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/style.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/sphinxext.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/filter.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/formatter.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/token.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/plugin.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/modeline.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/cmdline.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/scanner.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/lexers/python.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/lexers/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/lexers/_mapping.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/styles/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/formatters/rtf.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/formatters/pangomarkup.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/formatters/img.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/formatters/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/formatters/html.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/formatters/terminal256.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/formatters/irc.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/formatters/svg.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/formatters/_mapping.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/formatters/bbcode.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/formatters/latex.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/formatters/other.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/formatters/terminal.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/formatters/groff.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pygments/filters/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/langturkishmodel.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/hebrewprober.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/mbcsgroupprober.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/langhebrewmodel.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/latin1prober.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/euckrfreq.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/euckrprober.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/big5freq.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/langthaimodel.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/chardistribution.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/langrussianmodel.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/big5prober.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/enums.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/universaldetector.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/sbcharsetprober.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/codingstatemachine.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/cp949prober.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/jisfreq.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/mbcharsetprober.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/gb2312prober.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/euctwfreq.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/compat.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/mbcssm.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/sjisprober.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/langhungarianmodel.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/charsetgroupprober.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/utf8prober.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/escsm.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/version.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/eucjpprober.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/langgreekmodel.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/jpcntx.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/escprober.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/sbcsgroupprober.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/langbulgarianmodel.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/euctwprober.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/gb2312freq.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/charsetprober.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/metadata/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/metadata/languages.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/cli/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/chardet/cli/chardetect.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/resolvelib/resolvers.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/resolvelib/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/resolvelib/reporters.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/resolvelib/providers.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/resolvelib/structs.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/resolvelib/compat/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/resolvelib/compat/collections_abc.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/cachecontrol/filewrapper.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/cachecontrol/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/cachecontrol/controller.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/cachecontrol/serialize.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/cachecontrol/_cmd.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/cachecontrol/wrapper.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/cachecontrol/cache.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/cachecontrol/compat.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/cachecontrol/adapter.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/cachecontrol/heuristics.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/cachecontrol/caches/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/cachecontrol/caches/redis_cache.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/cachecontrol/caches/file_cache.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/constrain.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/tree.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/_lru_cache.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/diagnose.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/json.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/_emoji_replace.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/_emoji_codes.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/_stack.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/_pick.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/prompt.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/jupyter.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/default_styles.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/status.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/region.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/_timer.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/pretty.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/padding.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/filesize.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/box.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/logging.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/console.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/palette.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/errors.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/progress.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/color_triplet.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/_windows.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/control.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/_inspect.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/__main__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/color.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/_spinners.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/ansi.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/emoji.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/screen.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/spinner.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/themes.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/panel.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/styled.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/_palettes.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/style.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/highlighter.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/_loop.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/terminal_theme.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/segment.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/abc.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/layout.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/protocol.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/containers.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/_cell_widths.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/cells.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/file_proxy.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/live_render.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/pager.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/rule.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/bar.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/measure.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/live.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/traceback.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/columns.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/_log_render.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/syntax.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/progress_bar.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/_windows_renderer.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/text.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/markup.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/_extension.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/scope.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/_win32_console.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/_wrap.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/theme.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/align.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/table.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/_ratio.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/rich/repr.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pyparsing/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pyparsing/util.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pyparsing/unicode.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pyparsing/exceptions.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pyparsing/testing.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pyparsing/common.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pyparsing/core.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pyparsing/actions.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pyparsing/helpers.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pyparsing/results.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pyparsing/diagram/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/packaging/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/packaging/_manylinux.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/packaging/specifiers.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/packaging/_musllinux.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/packaging/__about__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/packaging/requirements.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/packaging/utils.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/packaging/_structures.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/packaging/markers.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/packaging/version.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/packaging/tags.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/platformdirs/unix.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/platformdirs/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/platformdirs/api.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/platformdirs/__main__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/platformdirs/android.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/platformdirs/windows.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/platformdirs/version.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/platformdirs/macos.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/msgpack/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/msgpack/exceptions.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/msgpack/_version.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/msgpack/fallback.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/msgpack/ext.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/fields.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/exceptions.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/filepost.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/_version.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/connection.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/request.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/connectionpool.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/response.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/poolmanager.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/_collections.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/packages/six.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/packages/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/packages/backports/makefile.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/packages/backports/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/contrib/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/contrib/ntlmpool.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/contrib/securetransport.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/contrib/appengine.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/contrib/socks.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/contrib/pyopenssl.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/util/timeout.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/util/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/util/url.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/util/proxy.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/util/queue.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/util/connection.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/util/ssltransport.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/util/request.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/util/response.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/util/ssl_.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/util/retry.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/urllib3/util/wait.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/distro/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/distro/distro.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/distro/__main__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/tomli/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/tomli/_parser.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/tomli/_re.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/tomli/_types.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pep517/wrappers.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pep517/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pep517/meta.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pep517/check.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pep517/dirtools.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pep517/build.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pep517/compat.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pep517/colorlog.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pep517/envbuild.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pep517/in_process/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/pep517/in_process/_in_process.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/distlib/locators.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/distlib/wheel.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/distlib/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/distlib/util.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/distlib/index.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/distlib/t64.exe', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/distlib/resources.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/distlib/metadata.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/distlib/t64-arm.exe', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/distlib/compat.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/distlib/w64-arm.exe', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/distlib/w64.exe', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/distlib/markers.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/distlib/version.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/distlib/w32.exe', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/distlib/scripts.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/distlib/manifest.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/distlib/t32.exe', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/distlib/database.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/distlib/_backport/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/distlib/_backport/tarfile.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/distlib/_backport/sysconfig.cfg', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/distlib/_backport/sysconfig.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/distlib/_backport/shutil.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/distlib/_backport/misc.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/webencodings/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/webencodings/mklabels.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/webencodings/tests.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/webencodings/labels.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/webencodings/x_user_defined.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/certifi/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/certifi/__main__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/certifi/cacert.pem', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_vendor/certifi/core.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/self_outdated_check.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/exceptions.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/cache.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/wheel_builder.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/configuration.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/pyproject.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/build_env.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/main.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/metadata/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/metadata/base.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/metadata/pkg_resources.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/metadata/importlib/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/metadata/importlib/_dists.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/metadata/importlib/_envs.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/metadata/importlib/_compat.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/commands/wheel.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/commands/uninstall.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/commands/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/commands/index.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/commands/install.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/commands/check.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/commands/freeze.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/commands/download.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/commands/hash.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/commands/list.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/commands/search.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/commands/show.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/commands/cache.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/commands/help.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/commands/configuration.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/commands/debug.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/commands/completion.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/distributions/wheel.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/distributions/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/distributions/base.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/distributions/installed.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/distributions/sdist.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/cli/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/cli/req_command.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/cli/base_command.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/cli/parser.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/cli/command_context.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/cli/status_codes.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/cli/cmdoptions.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/cli/autocompletion.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/cli/progress_bars.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/cli/spinners.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/cli/main.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/cli/main_parser.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/models/wheel.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/models/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/models/target_python.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/models/index.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/models/search_scope.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/models/link.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/models/scheme.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/models/candidate.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/models/direct_url.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/models/selection_prefs.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/models/format_control.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/utils/egg_link.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/utils/wheel.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/utils/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/utils/models.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/utils/hashes.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/utils/compatibility_tags.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/utils/datetime.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/utils/packaging.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/utils/urls.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/utils/logging.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/utils/inject_securetransport.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/utils/_log.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/utils/misc.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/utils/temp_dir.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/utils/filesystem.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/utils/filetypes.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/utils/deprecation.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/utils/compat.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/utils/appdirs.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/utils/setuptools_build.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/utils/glibc.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/utils/direct_url_helpers.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/utils/virtualenv.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/utils/entrypoints.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/utils/distutils_args.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/utils/encoding.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/utils/unpacking.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/utils/subprocess.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/index/sources.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/index/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/index/collector.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/index/package_finder.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/network/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/network/xmlrpc.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/network/download.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/network/auth.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/network/lazy_wheel.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/network/utils.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/network/cache.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/network/session.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/operations/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/operations/prepare.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/operations/check.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/operations/freeze.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/operations/install/wheel.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/operations/install/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/operations/install/legacy.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/operations/install/editable_legacy.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/operations/build/wheel.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/operations/build/metadata_editable.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/operations/build/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/operations/build/wheel_legacy.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/operations/build/build_tracker.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/operations/build/metadata.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/operations/build/metadata_legacy.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/operations/build/wheel_editable.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/vcs/versioncontrol.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/vcs/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/vcs/git.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/vcs/subversion.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/vcs/bazaar.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/vcs/mercurial.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/req/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/req/req_uninstall.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/req/req_install.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/req/req_file.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/req/constructors.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/req/req_set.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/locations/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/locations/base.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/locations/_distutils.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/locations/_sysconfig.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/resolution/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/resolution/base.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/resolution/resolvelib/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/resolution/resolvelib/base.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/resolution/resolvelib/candidates.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/resolution/resolvelib/reporter.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/resolution/resolvelib/factory.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/resolution/resolvelib/resolver.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/resolution/resolvelib/provider.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/resolution/resolvelib/requirements.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/resolution/resolvelib/found_candidates.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/resolution/legacy/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip/_internal/resolution/legacy/resolver.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/gui-32.exe', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/wheel.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_path.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/installer.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/cli-32.exe', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/script.tmpl', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/unicode_utils.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/gui.exe', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/discovery.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/windows_support.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/monkey.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/py34compat.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_entry_points.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/msvc.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/sandbox.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/logging.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/package_index.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/errors.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_deprecation_warning.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/namespaces.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_reqs.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/dep_util.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/build_meta.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/script (dev).tmpl', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/dist.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/glob.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/gui-64.exe', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/cli-arm64.exe', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/depends.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/extension.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_imp.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/cli-64.exe', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_itertools.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_importlib.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/version.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/gui-arm64.exe', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/launch.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/archive_util.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/cli.exe', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/zipp.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/typing_extensions.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/ordered_set.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/jaraco/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/jaraco/functools.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/jaraco/context.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/jaraco/text/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/importlib_resources/_adapters.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/importlib_resources/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/importlib_resources/_common.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/importlib_resources/simple.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/importlib_resources/_legacy.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/importlib_resources/abc.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/importlib_resources/_itertools.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/importlib_resources/readers.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/importlib_resources/_compat.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/pyparsing/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/pyparsing/util.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/pyparsing/unicode.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/pyparsing/exceptions.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/pyparsing/testing.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/pyparsing/common.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/pyparsing/core.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/pyparsing/actions.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/pyparsing/helpers.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/pyparsing/results.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/pyparsing/diagram/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/packaging/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/packaging/_manylinux.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/packaging/specifiers.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/packaging/_musllinux.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/packaging/__about__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/packaging/requirements.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/packaging/utils.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/packaging/_structures.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/packaging/markers.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/packaging/version.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/packaging/tags.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/nspektr/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/nspektr/_compat.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/more_itertools/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/more_itertools/recipes.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/more_itertools/more.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/importlib_metadata/_adapters.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/importlib_metadata/_functools.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/importlib_metadata/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/importlib_metadata/_meta.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/importlib_metadata/_itertools.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/importlib_metadata/_collections.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/importlib_metadata/_text.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/importlib_metadata/_compat.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/tomli/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/tomli/_parser.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/tomli/_re.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_vendor/tomli/_types.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/_functools.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/util.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/ccompiler.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/sysconfig.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/py39compat.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/errors.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/log.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/unixccompiler.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/bcppcompiler.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/dep_util.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/filelist.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/_msvccompiler.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/spawn.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/cmd.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/dist.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/msvc9compiler.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/dir_util.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/cygwinccompiler.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/extension.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/fancy_getopt.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/file_util.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/version.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/py38compat.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/debug.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/core.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/text_file.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/config.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/archive_util.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/_collections.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/_macos_compat.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/versionpredicate.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/msvccompiler.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/command/clean.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/command/install_egg_info.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/command/bdist_dumb.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/command/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/command/py37compat.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/command/upload.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/command/install.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/command/install_data.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/command/check.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/command/build_clib.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/command/build_scripts.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/command/install_scripts.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/command/build.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/command/bdist.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/command/build_py.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/command/install_lib.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/command/bdist_msi.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/command/bdist_rpm.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/command/config.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/command/install_headers.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/command/register.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/command/bdist_wininst.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/command/sdist.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/_distutils/command/build_ext.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/command/install_egg_info.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/command/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/command/saveopts.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/command/easy_install.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/command/upload.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/command/install.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/command/build_clib.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/command/install_scripts.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/command/test.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/command/upload_docs.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/command/dist_info.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/command/build.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/command/py36compat.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/command/build_py.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/command/install_lib.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/command/alias.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/command/bdist_rpm.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/command/rotate.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/command/launcher manifest.xml', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/command/bdist_egg.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/command/egg_info.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/command/setopt.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/command/register.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/command/develop.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/command/sdist.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/command/build_ext.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/extern/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/config/pyprojecttoml.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/config/expand.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/config/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/config/_apply_pyprojecttoml.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/config/setupcfg.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/config/_validate_pyproject/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/config/_validate_pyproject/extra_validations.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/config/_validate_pyproject/formats.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/config/_validate_pyproject/error_reporting.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/wheel-0.37.1.dist-info/RECORD', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/wheel-0.37.1.dist-info/top_level.txt', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/wheel-0.37.1.dist-info/METADATA', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/wheel-0.37.1.dist-info/entry_points.txt', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/wheel-0.37.1.dist-info/WHEEL', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/wheel-0.37.1.dist-info/LICENSE.txt', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/wheel-0.37.1.dist-info/INSTALLER', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/_distutils_hack/__init__.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/_distutils_hack/override.py', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip-22.1.2.dist-info/RECORD', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip-22.1.2.dist-info/top_level.txt', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip-22.1.2.dist-info/METADATA', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip-22.1.2.dist-info/entry_points.txt', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip-22.1.2.dist-info/WHEEL', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip-22.1.2.dist-info/LICENSE.txt', '/tmp/tmp3wgxc2dl/otNZ/local/lib/python3.10/dist-packages/pip-22.1.2.dist-info/INSTALLER', '/tmp/tmp3wgxc2dl/otNZ/local/bin/pip-3.10', '/tmp/tmp3wgxc2dl/otNZ/local/bin/activate.csh', '/tmp/tmp3wgxc2dl/otNZ/local/bin/wheel', '/tmp/tmp3wgxc2dl/otNZ/local/bin/pip', '/tmp/tmp3wgxc2dl/otNZ/local/bin/wheel3', '/tmp/tmp3wgxc2dl/otNZ/local/bin/pip3.10', '/tmp/tmp3wgxc2dl/otNZ/local/bin/wheel-3.10', '/tmp/tmp3wgxc2dl/otNZ/local/bin/python3.10', '/tmp/tmp3wgxc2dl/otNZ/local/bin/activate', '/tmp/tmp3wgxc2dl/otNZ/local/bin/wheel3.10', '/tmp/tmp3wgxc2dl/otNZ/local/bin/python3', '/tmp/tmp3wgxc2dl/otNZ/local/bin/activate.nu', '/tmp/tmp3wgxc2dl/otNZ/local/bin/activate.ps1', '/tmp/tmp3wgxc2dl/otNZ/local/bin/deactivate.nu', '/tmp/tmp3wgxc2dl/otNZ/local/bin/activate_this.py', '/tmp/tmp3wgxc2dl/otNZ/local/bin/python', '/tmp/tmp3wgxc2dl/otNZ/local/bin/pip3', '/tmp/tmp3wgxc2dl/otNZ/local/bin/activate.fish'] ```
ofek commented 2 years ago

I cannot reproduce.

cc @gaborbernat Do you know why virtualenv is creating that extra local directory? Hatch looks for <venv>/{bin,Scripts} not <venv>/local/{bin,Scripts}

gavindsouza commented 2 years ago

I tried passing similar args as hatch to virtualenv's cli_run (20.16.2) and got an env with a similar structure: <venv>/local/{bin,lib}

ofek commented 2 years ago

from @uranusjr in Discord:

Sounds like Debian? They hard-code local in the scheme so using sysconfig outside a virtual environment with a custom {base} etc. is totally broken https://salsa.debian.org/cpython-team/python3/-/blob/master/debian/patches/sysconfig-debian-schemes.diff#L22

Similar: https://github.com/python-poetry/poetry/issues/5925

gavindsouza commented 2 years ago

Thanks for this @ofek 🚀

ofek commented 2 years ago

Anytime, and thanks for debugging!

doolio commented 1 year ago

license = "GPL-3.0-only" "License :: OSI Approved :: GNU Affero General Public License v3",

I came across this issue during a search and noted the above lines in your generated pyproject.toml. Are these two lines not in conflict. The first refers to the GPLv3 but the second to AGPLv3, no?