Add files using upload-large-folder tool
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/INSTALLER +1 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/METADATA +111 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/RECORD +879 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/REQUESTED +0 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/WHEEL +4 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/direct_url.json +1 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/entry_points.txt +4 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/AUTHORS.txt +860 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/LICENSE.txt +20 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/certifi/LICENSE +20 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt +284 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/distro/LICENSE +202 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md +31 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/msgpack/COPYING +14 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE +3 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE +177 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD +23 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE +17 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE +21 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pygments/LICENSE +25 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE +21 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/requests/LICENSE +175 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE +13 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/rich/LICENSE +19 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli/LICENSE +21 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE +21 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/truststore/LICENSE +21 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt +21 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/resolution/legacy/resolver.py +598 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/base.py +142 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/candidates.py +591 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/factory.py +856 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +166 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/provider.py +285 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/reporter.py +98 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/requirements.py +251 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/resolver.py +332 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/utils/__init__.py +0 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/utils/_log.py +38 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/utils/appdirs.py +52 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/utils/compat.py +85 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/utils/compatibility_tags.py +201 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/utils/datetime.py +28 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/utils/deprecation.py +126 -0
- miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/utils/direct_url_helpers.py +87 -0
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/INSTALLER
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
conda
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/METADATA
ADDED
|
@@ -0,0 +1,111 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Metadata-Version: 2.4
|
| 2 |
+
Name: pip
|
| 3 |
+
Version: 26.0.1
|
| 4 |
+
Summary: The PyPA recommended tool for installing Python packages.
|
| 5 |
+
Author-email: The pip developers <distutils-sig@python.org>
|
| 6 |
+
Requires-Python: >=3.9
|
| 7 |
+
Description-Content-Type: text/x-rst
|
| 8 |
+
License-Expression: MIT
|
| 9 |
+
Classifier: Development Status :: 5 - Production/Stable
|
| 10 |
+
Classifier: Intended Audience :: Developers
|
| 11 |
+
Classifier: Topic :: Software Development :: Build Tools
|
| 12 |
+
Classifier: Programming Language :: Python
|
| 13 |
+
Classifier: Programming Language :: Python :: 3
|
| 14 |
+
Classifier: Programming Language :: Python :: 3 :: Only
|
| 15 |
+
Classifier: Programming Language :: Python :: 3.9
|
| 16 |
+
Classifier: Programming Language :: Python :: 3.10
|
| 17 |
+
Classifier: Programming Language :: Python :: 3.11
|
| 18 |
+
Classifier: Programming Language :: Python :: 3.12
|
| 19 |
+
Classifier: Programming Language :: Python :: 3.13
|
| 20 |
+
Classifier: Programming Language :: Python :: 3.14
|
| 21 |
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
| 22 |
+
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
| 23 |
+
License-File: AUTHORS.txt
|
| 24 |
+
License-File: LICENSE.txt
|
| 25 |
+
License-File: src/pip/_vendor/cachecontrol/LICENSE.txt
|
| 26 |
+
License-File: src/pip/_vendor/certifi/LICENSE
|
| 27 |
+
License-File: src/pip/_vendor/dependency_groups/LICENSE.txt
|
| 28 |
+
License-File: src/pip/_vendor/distlib/LICENSE.txt
|
| 29 |
+
License-File: src/pip/_vendor/distro/LICENSE
|
| 30 |
+
License-File: src/pip/_vendor/idna/LICENSE.md
|
| 31 |
+
License-File: src/pip/_vendor/msgpack/COPYING
|
| 32 |
+
License-File: src/pip/_vendor/packaging/LICENSE
|
| 33 |
+
License-File: src/pip/_vendor/packaging/LICENSE.APACHE
|
| 34 |
+
License-File: src/pip/_vendor/packaging/LICENSE.BSD
|
| 35 |
+
License-File: src/pip/_vendor/pkg_resources/LICENSE
|
| 36 |
+
License-File: src/pip/_vendor/platformdirs/LICENSE
|
| 37 |
+
License-File: src/pip/_vendor/pygments/LICENSE
|
| 38 |
+
License-File: src/pip/_vendor/pyproject_hooks/LICENSE
|
| 39 |
+
License-File: src/pip/_vendor/requests/LICENSE
|
| 40 |
+
License-File: src/pip/_vendor/resolvelib/LICENSE
|
| 41 |
+
License-File: src/pip/_vendor/rich/LICENSE
|
| 42 |
+
License-File: src/pip/_vendor/tomli/LICENSE
|
| 43 |
+
License-File: src/pip/_vendor/tomli_w/LICENSE
|
| 44 |
+
License-File: src/pip/_vendor/truststore/LICENSE
|
| 45 |
+
License-File: src/pip/_vendor/urllib3/LICENSE.txt
|
| 46 |
+
Project-URL: Changelog, https://pip.pypa.io/en/stable/news/
|
| 47 |
+
Project-URL: Documentation, https://pip.pypa.io
|
| 48 |
+
Project-URL: Homepage, https://pip.pypa.io/
|
| 49 |
+
Project-URL: Source, https://github.com/pypa/pip
|
| 50 |
+
|
| 51 |
+
pip - The Python Package Installer
|
| 52 |
+
==================================
|
| 53 |
+
|
| 54 |
+
.. |pypi-version| image:: https://img.shields.io/pypi/v/pip.svg
|
| 55 |
+
:target: https://pypi.org/project/pip/
|
| 56 |
+
:alt: PyPI
|
| 57 |
+
|
| 58 |
+
.. |python-versions| image:: https://img.shields.io/pypi/pyversions/pip
|
| 59 |
+
:target: https://pypi.org/project/pip
|
| 60 |
+
:alt: PyPI - Python Version
|
| 61 |
+
|
| 62 |
+
.. |docs-badge| image:: https://readthedocs.org/projects/pip/badge/?version=latest
|
| 63 |
+
:target: https://pip.pypa.io/en/latest
|
| 64 |
+
:alt: Documentation
|
| 65 |
+
|
| 66 |
+
|pypi-version| |python-versions| |docs-badge|
|
| 67 |
+
|
| 68 |
+
pip is the `package installer`_ for Python. You can use pip to install packages from the `Python Package Index`_ and other indexes.
|
| 69 |
+
|
| 70 |
+
Please take a look at our documentation for how to install and use pip:
|
| 71 |
+
|
| 72 |
+
* `Installation`_
|
| 73 |
+
* `Usage`_
|
| 74 |
+
|
| 75 |
+
We release updates regularly, with a new version every 3 months. Find more details in our documentation:
|
| 76 |
+
|
| 77 |
+
* `Release notes`_
|
| 78 |
+
* `Release process`_
|
| 79 |
+
|
| 80 |
+
If you find bugs, need help, or want to talk to the developers, please use our mailing lists or chat rooms:
|
| 81 |
+
|
| 82 |
+
* `Issue tracking`_
|
| 83 |
+
* `Discourse channel`_
|
| 84 |
+
* `User IRC`_
|
| 85 |
+
|
| 86 |
+
If you want to get involved, head over to GitHub to get the source code, look at our development documentation and feel free to jump on the developer mailing lists and chat rooms:
|
| 87 |
+
|
| 88 |
+
* `GitHub page`_
|
| 89 |
+
* `Development documentation`_
|
| 90 |
+
* `Development IRC`_
|
| 91 |
+
|
| 92 |
+
Code of Conduct
|
| 93 |
+
---------------
|
| 94 |
+
|
| 95 |
+
Everyone interacting in the pip project's codebases, issue trackers, chat
|
| 96 |
+
rooms, and mailing lists is expected to follow the `PSF Code of Conduct`_.
|
| 97 |
+
|
| 98 |
+
.. _package installer: https://packaging.python.org/guides/tool-recommendations/
|
| 99 |
+
.. _Python Package Index: https://pypi.org
|
| 100 |
+
.. _Installation: https://pip.pypa.io/en/stable/installation/
|
| 101 |
+
.. _Usage: https://pip.pypa.io/en/stable/
|
| 102 |
+
.. _Release notes: https://pip.pypa.io/en/stable/news.html
|
| 103 |
+
.. _Release process: https://pip.pypa.io/en/latest/development/release-process/
|
| 104 |
+
.. _GitHub page: https://github.com/pypa/pip
|
| 105 |
+
.. _Development documentation: https://pip.pypa.io/en/latest/development
|
| 106 |
+
.. _Issue tracking: https://github.com/pypa/pip/issues
|
| 107 |
+
.. _Discourse channel: https://discuss.python.org/c/packaging
|
| 108 |
+
.. _User IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa
|
| 109 |
+
.. _Development IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa-dev
|
| 110 |
+
.. _PSF Code of Conduct: https://github.com/pypa/.github/blob/main/CODE_OF_CONDUCT.md
|
| 111 |
+
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/RECORD
ADDED
|
@@ -0,0 +1,879 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
../../../bin/pip,sha256=MvKETmUGeoi_0-TT9qYZvQGfY6HadtDctusGe1nIlis,452
|
| 2 |
+
../../../bin/pip3,sha256=MvKETmUGeoi_0-TT9qYZvQGfY6HadtDctusGe1nIlis,452
|
| 3 |
+
../../../bin/pip3.14,sha256=MvKETmUGeoi_0-TT9qYZvQGfY6HadtDctusGe1nIlis,452
|
| 4 |
+
pip-26.0.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
| 5 |
+
pip-26.0.1.dist-info/METADATA,sha256=ZqIZuNGsG6l2gHiKlQjVQghFQhgSWfhEDHuCVPW3aN8,4675
|
| 6 |
+
pip-26.0.1.dist-info/RECORD,,
|
| 7 |
+
pip-26.0.1.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 8 |
+
pip-26.0.1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
| 9 |
+
pip-26.0.1.dist-info/direct_url.json,sha256=_O_Uz3DTKmUItFu3Hr0AfvnehDtMBHFCGmqwW1MPbGQ,89
|
| 10 |
+
pip-26.0.1.dist-info/entry_points.txt,sha256=Vhf8s0IYgX37mtd4vGL73BPcxdKnqeCFPzB5-d30x8o,84
|
| 11 |
+
pip-26.0.1.dist-info/licenses/AUTHORS.txt,sha256=grSl9YDNOpOFFJTX8ZYKSdgfouXi_DzlRyYGE2-u5aI,11731
|
| 12 |
+
pip-26.0.1.dist-info/licenses/LICENSE.txt,sha256=Y0MApmnUmurmWxLGxIySTFGkzfPR_whtw0VtyLyqIQQ,1093
|
| 13 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt,sha256=hu7uh74qQ_P_H1ZJb0UfaSQ5JvAl_tuwM2ZsMExMFhs,558
|
| 14 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/certifi/LICENSE,sha256=6TcW2mucDVpKHfYP5pWzcPBpVgPSH2-D8FPkLPwQyvc,989
|
| 15 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/dependency_groups/LICENSE.txt,sha256=GrNuPipLqGMWJThPh-ngkdsfrtA0xbIzJbMjmr8sxSU,1099
|
| 16 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt,sha256=gI4QyKarjesUn_mz-xn0R6gICUYG1xKpylf-rTVSWZ0,14531
|
| 17 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/distro/LICENSE,sha256=y16Ofl9KOYjhBjwULGDcLfdWBfTEZRXnduOspt-XbhQ,11325
|
| 18 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md,sha256=t6M2q_OwThgOwGXN0W5wXQeeHMehT5EKpukYfza5zYc,1541
|
| 19 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/msgpack/COPYING,sha256=SS3tuoXaWHL3jmCRvNH-pHTWYNNay03ulkuKqz8AdCc,614
|
| 20 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE,sha256=ytHvW9NA1z4HS6YU0m996spceUDD2MNIUuZcSQlobEg,197
|
| 21 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174
|
| 22 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD,sha256=tw5-m3QvHMb5SLNMFqo5_-zpQZY2S8iP8NIYDwAo-sU,1344
|
| 23 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE,sha256=htoPAa6uRjSKPD1GUZXcHOzN55956HdppkuNoEsqR0E,1023
|
| 24 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE,sha256=KeD9YukphQ6G6yjD_czwzv30-pSHkBHP-z0NS-1tTbY,1089
|
| 25 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/pygments/LICENSE,sha256=qdZvHVJt8C4p3Oc0NtNOVuhjL0bCdbvf_HBWnogvnxc,1331
|
| 26 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE,sha256=GyKwSbUmfW38I6Z79KhNjsBLn9-xpR02DkK0NCyLQVQ,1081
|
| 27 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/requests/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
| 28 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE,sha256=84j9OMrRMRLB3A9mm76A5_hFQe26-3LzAw0sp2QsPJ0,751
|
| 29 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/rich/LICENSE,sha256=3u18F6QxgVgZCj6iOcyHmlpQJxzruYrnAl9I--WNyhU,1056
|
| 30 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli/LICENSE,sha256=uAgWsNUwuKzLTCIReDeQmEpuO2GSLCte6S8zcqsnQv4,1072
|
| 31 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE,sha256=uAgWsNUwuKzLTCIReDeQmEpuO2GSLCte6S8zcqsnQv4,1072
|
| 32 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/truststore/LICENSE,sha256=M757fo-k_Rmxdg4ajtimaL2rhSyRtpLdQUJLy3Jan8o,1086
|
| 33 |
+
pip-26.0.1.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt,sha256=w3vxhuJ8-dvpYZ5V7f486nswCRzrPaY8fay-Dm13kHs,1115
|
| 34 |
+
pip/__init__.py,sha256=3EhKF2588Ab15tmBszgD3Bp0N26sJx7VhS2Akn_qY38,355
|
| 35 |
+
pip/__main__.py,sha256=WzbhHXTbSE6gBY19mNN9m4s5o_365LOvTYSgqgbdBhE,854
|
| 36 |
+
pip/__pip-runner__.py,sha256=JOoEZTwrtv7jRaXBkgSQKAE04yNyfFmGHxqpHiGHvL0,1450
|
| 37 |
+
pip/__pycache__/__init__.cpython-314.pyc,,
|
| 38 |
+
pip/__pycache__/__main__.cpython-314.pyc,,
|
| 39 |
+
pip/__pycache__/__pip-runner__.cpython-314.pyc,,
|
| 40 |
+
pip/_internal/__init__.py,sha256=S7i9Dn9aSZS0MG-2Wrve3dV9TImPzvQn5jjhp9t_uf0,511
|
| 41 |
+
pip/_internal/__pycache__/__init__.cpython-314.pyc,,
|
| 42 |
+
pip/_internal/__pycache__/build_env.cpython-314.pyc,,
|
| 43 |
+
pip/_internal/__pycache__/cache.cpython-314.pyc,,
|
| 44 |
+
pip/_internal/__pycache__/configuration.cpython-314.pyc,,
|
| 45 |
+
pip/_internal/__pycache__/exceptions.cpython-314.pyc,,
|
| 46 |
+
pip/_internal/__pycache__/main.cpython-314.pyc,,
|
| 47 |
+
pip/_internal/__pycache__/pyproject.cpython-314.pyc,,
|
| 48 |
+
pip/_internal/__pycache__/self_outdated_check.cpython-314.pyc,,
|
| 49 |
+
pip/_internal/__pycache__/wheel_builder.cpython-314.pyc,,
|
| 50 |
+
pip/_internal/build_env.py,sha256=XpgOIlTQLgz3PvDT2n7j2NzX_rVFZLCIG7t7b2ddhcM,21911
|
| 51 |
+
pip/_internal/cache.py,sha256=nMh48Yv3yu1HS1yCdscouu6B6B5zYBWdV6bhqs7gL-E,10345
|
| 52 |
+
pip/_internal/cli/__init__.py,sha256=Iqg_tKA771XuMO1P4t_sDHnSKPzkUb9D0DqunAmw_ko,131
|
| 53 |
+
pip/_internal/cli/__pycache__/__init__.cpython-314.pyc,,
|
| 54 |
+
pip/_internal/cli/__pycache__/autocompletion.cpython-314.pyc,,
|
| 55 |
+
pip/_internal/cli/__pycache__/base_command.cpython-314.pyc,,
|
| 56 |
+
pip/_internal/cli/__pycache__/cmdoptions.cpython-314.pyc,,
|
| 57 |
+
pip/_internal/cli/__pycache__/command_context.cpython-314.pyc,,
|
| 58 |
+
pip/_internal/cli/__pycache__/index_command.cpython-314.pyc,,
|
| 59 |
+
pip/_internal/cli/__pycache__/main.cpython-314.pyc,,
|
| 60 |
+
pip/_internal/cli/__pycache__/main_parser.cpython-314.pyc,,
|
| 61 |
+
pip/_internal/cli/__pycache__/parser.cpython-314.pyc,,
|
| 62 |
+
pip/_internal/cli/__pycache__/progress_bars.cpython-314.pyc,,
|
| 63 |
+
pip/_internal/cli/__pycache__/req_command.cpython-314.pyc,,
|
| 64 |
+
pip/_internal/cli/__pycache__/spinners.cpython-314.pyc,,
|
| 65 |
+
pip/_internal/cli/__pycache__/status_codes.cpython-314.pyc,,
|
| 66 |
+
pip/_internal/cli/autocompletion.py,sha256=ZG2cM03nlcNrs-WG_SFTW46isx9s2Go5lUD_8-iv70o,7193
|
| 67 |
+
pip/_internal/cli/base_command.py,sha256=6OW75PSGzkH8Fz761WZ3OSz1TsuO3-suc6iap-sQjTM,9168
|
| 68 |
+
pip/_internal/cli/cmdoptions.py,sha256=hfA9B29Nnq2vYMWhFVg7EcWjdlfdPBPU4WwWT2Lkq4A,36164
|
| 69 |
+
pip/_internal/cli/command_context.py,sha256=kmu3EWZbfBega1oDamnGJTA_UaejhIQNuMj2CVmMXu0,817
|
| 70 |
+
pip/_internal/cli/index_command.py,sha256=s3x75lpDXWJtCkBacTQ3qAAprldHMJCniEQ5qkQ0FiI,6484
|
| 71 |
+
pip/_internal/cli/main.py,sha256=ljDQBkvBtC8xTjOdb6rDJzJUNi1s-PnVR_W5C-Mq0Dk,3137
|
| 72 |
+
pip/_internal/cli/main_parser.py,sha256=YjzJAjqf78ARNsLlnJT9l6fNbpyDPJA-arOIXYsK5Ik,4403
|
| 73 |
+
pip/_internal/cli/parser.py,sha256=EIFExrWX_1nrl1Ib--GOor70WYqLtduHByenb1u9xH4,13827
|
| 74 |
+
pip/_internal/cli/progress_bars.py,sha256=IW1PH5n2FPqUBTP7ULQ5Yu-wyNNO9XGY3g1PT4RMu44,4706
|
| 75 |
+
pip/_internal/cli/req_command.py,sha256=QjDXId0hFdopwE8hNx2eustumxUNbnOCvG_ORmUC7vM,16482
|
| 76 |
+
pip/_internal/cli/spinners.py,sha256=EJzZIZNyUtJljp3-WjcsyIrqxW-HUsfWzhuW84n_Tqw,7362
|
| 77 |
+
pip/_internal/cli/status_codes.py,sha256=sEFHUaUJbqv8iArL3HAtcztWZmGOFX01hTesSytDEh0,116
|
| 78 |
+
pip/_internal/commands/__init__.py,sha256=aNeCbQurGWihfhQq7BqaLXHqWDQ0i3I04OS7kxK6plQ,4026
|
| 79 |
+
pip/_internal/commands/__pycache__/__init__.cpython-314.pyc,,
|
| 80 |
+
pip/_internal/commands/__pycache__/cache.cpython-314.pyc,,
|
| 81 |
+
pip/_internal/commands/__pycache__/check.cpython-314.pyc,,
|
| 82 |
+
pip/_internal/commands/__pycache__/completion.cpython-314.pyc,,
|
| 83 |
+
pip/_internal/commands/__pycache__/configuration.cpython-314.pyc,,
|
| 84 |
+
pip/_internal/commands/__pycache__/debug.cpython-314.pyc,,
|
| 85 |
+
pip/_internal/commands/__pycache__/download.cpython-314.pyc,,
|
| 86 |
+
pip/_internal/commands/__pycache__/freeze.cpython-314.pyc,,
|
| 87 |
+
pip/_internal/commands/__pycache__/hash.cpython-314.pyc,,
|
| 88 |
+
pip/_internal/commands/__pycache__/help.cpython-314.pyc,,
|
| 89 |
+
pip/_internal/commands/__pycache__/index.cpython-314.pyc,,
|
| 90 |
+
pip/_internal/commands/__pycache__/inspect.cpython-314.pyc,,
|
| 91 |
+
pip/_internal/commands/__pycache__/install.cpython-314.pyc,,
|
| 92 |
+
pip/_internal/commands/__pycache__/list.cpython-314.pyc,,
|
| 93 |
+
pip/_internal/commands/__pycache__/lock.cpython-314.pyc,,
|
| 94 |
+
pip/_internal/commands/__pycache__/search.cpython-314.pyc,,
|
| 95 |
+
pip/_internal/commands/__pycache__/show.cpython-314.pyc,,
|
| 96 |
+
pip/_internal/commands/__pycache__/uninstall.cpython-314.pyc,,
|
| 97 |
+
pip/_internal/commands/__pycache__/wheel.cpython-314.pyc,,
|
| 98 |
+
pip/_internal/commands/cache.py,sha256=XjT7kjY8GSISMksFHsLvjS9Ogfi5extNlUUv-dUoWCM,9142
|
| 99 |
+
pip/_internal/commands/check.py,sha256=hVFBQezQ3zj4EydoWbFQj_afPUppMt7r9JPAlY22U6Y,2244
|
| 100 |
+
pip/_internal/commands/completion.py,sha256=LjvRIZ6QUiDXJL3IOMFeD-_J97HfjMGgEk0j2tWGu1U,4565
|
| 101 |
+
pip/_internal/commands/configuration.py,sha256=6gNOGrVWnOLU15zUnAiNuOMhf76RRIZvCdVD0degPRk,10105
|
| 102 |
+
pip/_internal/commands/debug.py,sha256=_8IqM8Fx1_lY2STu_qspr63tufF7zyFJCyYAXtxz0N4,6805
|
| 103 |
+
pip/_internal/commands/download.py,sha256=LUNVobuvCdagjLBuPBaxHeBiHEiIe03fTO2m6ahC8qw,5178
|
| 104 |
+
pip/_internal/commands/freeze.py,sha256=fxoW8AAc-bAqB_fXdNq2VnZ3JfWkFMg-bR6LcdDVO7A,3099
|
| 105 |
+
pip/_internal/commands/hash.py,sha256=GO9pRN3wXC2kQaovK57TaLYBMc3IltOH92O6QEw6YE0,1679
|
| 106 |
+
pip/_internal/commands/help.py,sha256=Bz3LcjNQXkz4Cu__pL4CZ86o4-HNLZj1NZWdlJhjuu0,1108
|
| 107 |
+
pip/_internal/commands/index.py,sha256=kDpx2MO6ZxTt5PpeY4jqcssVbYhzxpkpreDe_6PPhks,5520
|
| 108 |
+
pip/_internal/commands/inspect.py,sha256=ogm4UT7LRo8bIQcWUS1IiA25QdD4VHLa7JaPAodDttM,3177
|
| 109 |
+
pip/_internal/commands/install.py,sha256=L6X1qi49ROVTGABhwwxDgBBTijlOpVn6XSDVZ7QW1Kc,30588
|
| 110 |
+
pip/_internal/commands/list.py,sha256=L5nWuwawqSrBNsuxfyHLAagfz7XJP86tC9nK3L9YiI8,13497
|
| 111 |
+
pip/_internal/commands/lock.py,sha256=145ihjUK_-7gP8O65XPDi_xMhlh5hne1ptkHdfnbAnQ,6027
|
| 112 |
+
pip/_internal/commands/search.py,sha256=zbMsX_YASj6kXA6XIBgTDv0bGK51xG-CV3IynZJcE-c,5782
|
| 113 |
+
pip/_internal/commands/show.py,sha256=oLVJIfKWmDKm0SsQGEi3pozNiqrXjTras_fbBSYKpBA,8066
|
| 114 |
+
pip/_internal/commands/uninstall.py,sha256=CsOihqvb6ZA6O67L70oXeoLHeOfNzMM88H9g-9aocgw,3868
|
| 115 |
+
pip/_internal/commands/wheel.py,sha256=L9vEzJ_E42scF_Hgh5X4Hk39nqJDKxGg4u7glDYbNWc,5880
|
| 116 |
+
pip/_internal/configuration.py,sha256=WxwwSwY_Bm6QzDgf32BsujEyO8dgRedegCpgbUfDvM8,14568
|
| 117 |
+
pip/_internal/distributions/__init__.py,sha256=Hq6kt6gXBgjNit5hTTWLAzeCNOKoB-N0pGYSqehrli8,858
|
| 118 |
+
pip/_internal/distributions/__pycache__/__init__.cpython-314.pyc,,
|
| 119 |
+
pip/_internal/distributions/__pycache__/base.cpython-314.pyc,,
|
| 120 |
+
pip/_internal/distributions/__pycache__/installed.cpython-314.pyc,,
|
| 121 |
+
pip/_internal/distributions/__pycache__/sdist.cpython-314.pyc,,
|
| 122 |
+
pip/_internal/distributions/__pycache__/wheel.cpython-314.pyc,,
|
| 123 |
+
pip/_internal/distributions/base.py,sha256=l-OTCAIs25lsapejA6IYpPZxSM5-BET4sdZDkql8jiY,1830
|
| 124 |
+
pip/_internal/distributions/installed.py,sha256=kgIEE_1NzjZxLBSC-v5s64uOFZlVEt3aPrjTtL6x2XY,929
|
| 125 |
+
pip/_internal/distributions/sdist.py,sha256=RYwQIbuxpKy6OjlBZCAefxpMDaoocUQ4dFtheGsiTOQ,6627
|
| 126 |
+
pip/_internal/distributions/wheel.py,sha256=_HbG0OehF8dwj4UX-xV__tXLwgPus9OjMEf2NTRqBbE,1364
|
| 127 |
+
pip/_internal/exceptions.py,sha256=JdPCrQ9iTLvE-GBebzBEeGP3hoTffWEKqbYEsa6cEZc,32165
|
| 128 |
+
pip/_internal/index/__init__.py,sha256=tzwMH_fhQeubwMqHdSivasg1cRgTSbNg2CiMVnzMmyU,29
|
| 129 |
+
pip/_internal/index/__pycache__/__init__.cpython-314.pyc,,
|
| 130 |
+
pip/_internal/index/__pycache__/collector.cpython-314.pyc,,
|
| 131 |
+
pip/_internal/index/__pycache__/package_finder.cpython-314.pyc,,
|
| 132 |
+
pip/_internal/index/__pycache__/sources.cpython-314.pyc,,
|
| 133 |
+
pip/_internal/index/collector.py,sha256=R7Gcx_4GEoSEI-iazfAZVEPG3Lp6mbZT4lbAD6NjAc0,16144
|
| 134 |
+
pip/_internal/index/package_finder.py,sha256=a3_L4FDNsuDf3y8Af9J7sfsHR1ahs8o13Ths-WYwFh0,41776
|
| 135 |
+
pip/_internal/index/sources.py,sha256=nXJkOjhLy-O2FsrKU9RIqCOqgY2PsoKWybtZjjRgqU0,8639
|
| 136 |
+
pip/_internal/locations/__init__.py,sha256=Sd67ap1LIemvXArUDFqm8U-HuZvj9i3ApEuiIwUc9UE,14157
|
| 137 |
+
pip/_internal/locations/__pycache__/__init__.cpython-314.pyc,,
|
| 138 |
+
pip/_internal/locations/__pycache__/_distutils.cpython-314.pyc,,
|
| 139 |
+
pip/_internal/locations/__pycache__/_sysconfig.cpython-314.pyc,,
|
| 140 |
+
pip/_internal/locations/__pycache__/base.cpython-314.pyc,,
|
| 141 |
+
pip/_internal/locations/_distutils.py,sha256=jpFj4V00rD9IR3vA9TqrGkwcdNVFc58LsChZavge9JY,5975
|
| 142 |
+
pip/_internal/locations/_sysconfig.py,sha256=8CpTjtxaCzHSCrKpaxWnHE7aKcJrRJRmntR1ZLVysLk,7779
|
| 143 |
+
pip/_internal/locations/base.py,sha256=AImjYJWxOtDkc0KKc6Y4Gz677cg91caMA4L94B9FZEg,2550
|
| 144 |
+
pip/_internal/main.py,sha256=1cHqjsfFCrMFf3B5twzocxTJUdHMLoXUpy5lJoFqUi8,338
|
| 145 |
+
pip/_internal/metadata/__init__.py,sha256=vp-JAxiWg_-l5F8AT0Jcey72uUnh8CDwwol9-KktHZ8,5824
|
| 146 |
+
pip/_internal/metadata/__pycache__/__init__.cpython-314.pyc,,
|
| 147 |
+
pip/_internal/metadata/__pycache__/_json.cpython-314.pyc,,
|
| 148 |
+
pip/_internal/metadata/__pycache__/base.cpython-314.pyc,,
|
| 149 |
+
pip/_internal/metadata/__pycache__/pkg_resources.cpython-314.pyc,,
|
| 150 |
+
pip/_internal/metadata/_json.py,sha256=hNvnMHOXLAyNlzirWhPL9Nx2CvCqa1iRma6Osq1YfV8,2711
|
| 151 |
+
pip/_internal/metadata/base.py,sha256=BGuMenlcQT8i7j9iclrfdC3vSwgvhr8gjn955cCy16s,25420
|
| 152 |
+
pip/_internal/metadata/importlib/__init__.py,sha256=jUUidoxnHcfITHHaAWG1G2i5fdBYklv_uJcjo2x7VYE,135
|
| 153 |
+
pip/_internal/metadata/importlib/__pycache__/__init__.cpython-314.pyc,,
|
| 154 |
+
pip/_internal/metadata/importlib/__pycache__/_compat.cpython-314.pyc,,
|
| 155 |
+
pip/_internal/metadata/importlib/__pycache__/_dists.cpython-314.pyc,,
|
| 156 |
+
pip/_internal/metadata/importlib/__pycache__/_envs.cpython-314.pyc,,
|
| 157 |
+
pip/_internal/metadata/importlib/_compat.py,sha256=sneVh4_6WxQZK4ljdl3ylVuP-q0ttSqbgl9mWt0HnOg,2804
|
| 158 |
+
pip/_internal/metadata/importlib/_dists.py,sha256=znZD7MN4RC73-87KXAn6tKZv9lAQRI0AxxK2bubDvPw,8420
|
| 159 |
+
pip/_internal/metadata/importlib/_envs.py,sha256=H3qVLXVh4LWvrPvu_ekXf3dfbtwnlhNJQP2pxXpccfU,5333
|
| 160 |
+
pip/_internal/metadata/pkg_resources.py,sha256=NO76ZrfR2-LKJTyaXrmQoGhmJMArALvacrlZHViSDT8,10544
|
| 161 |
+
pip/_internal/models/__init__.py,sha256=AjmCEBxX_MH9f_jVjIGNCFJKYCYeSEe18yyvNx4uRKQ,62
|
| 162 |
+
pip/_internal/models/__pycache__/__init__.cpython-314.pyc,,
|
| 163 |
+
pip/_internal/models/__pycache__/candidate.cpython-314.pyc,,
|
| 164 |
+
pip/_internal/models/__pycache__/direct_url.cpython-314.pyc,,
|
| 165 |
+
pip/_internal/models/__pycache__/format_control.cpython-314.pyc,,
|
| 166 |
+
pip/_internal/models/__pycache__/index.cpython-314.pyc,,
|
| 167 |
+
pip/_internal/models/__pycache__/installation_report.cpython-314.pyc,,
|
| 168 |
+
pip/_internal/models/__pycache__/link.cpython-314.pyc,,
|
| 169 |
+
pip/_internal/models/__pycache__/release_control.cpython-314.pyc,,
|
| 170 |
+
pip/_internal/models/__pycache__/scheme.cpython-314.pyc,,
|
| 171 |
+
pip/_internal/models/__pycache__/search_scope.cpython-314.pyc,,
|
| 172 |
+
pip/_internal/models/__pycache__/selection_prefs.cpython-314.pyc,,
|
| 173 |
+
pip/_internal/models/__pycache__/target_python.cpython-314.pyc,,
|
| 174 |
+
pip/_internal/models/__pycache__/wheel.cpython-314.pyc,,
|
| 175 |
+
pip/_internal/models/candidate.py,sha256=zzgFRuw_kWPjKpGw7LC0ZUMD2CQ2EberUIYs8izjdCA,753
|
| 176 |
+
pip/_internal/models/direct_url.py,sha256=4NMWacu_QzPPWREC1te7v6Wfv-2HkI4tvSJF-CBgLh4,6555
|
| 177 |
+
pip/_internal/models/format_control.py,sha256=PwemYG1L27BM0f1KP61rm24wShENFyxqlD1TWu34alc,2471
|
| 178 |
+
pip/_internal/models/index.py,sha256=tYnL8oxGi4aSNWur0mG8DAP7rC6yuha_MwJO8xw0crI,1030
|
| 179 |
+
pip/_internal/models/installation_report.py,sha256=cqfWJ93ThCxjcacqSWryOCD2XtIn1CZrgzZxAv5FQZ0,2839
|
| 180 |
+
pip/_internal/models/link.py,sha256=zti5UCx1hT03etYqm6MCqFd714clmTgX8rTZT9CKZDQ,21992
|
| 181 |
+
pip/_internal/models/release_control.py,sha256=XD14Hy_XLh9xWR1p7JHqPZPEv3Nnb1BZGMpClk76sLs,3403
|
| 182 |
+
pip/_internal/models/scheme.py,sha256=PakmHJM3e8OOWSZFtfz1Az7f1meONJnkGuQxFlt3wBE,575
|
| 183 |
+
pip/_internal/models/search_scope.py,sha256=1hxU2IVsAaLZVjp0CbzJbYaYzCxv72_Qbg3JL0qhXo0,4507
|
| 184 |
+
pip/_internal/models/selection_prefs.py,sha256=IDOA3euRtyqWUyIK7lX2bzIZasYiEvunKA6H3Mngk-M,2221
|
| 185 |
+
pip/_internal/models/target_python.py,sha256=I0eFS-eia3kwhrOvgsphFZtNAB2IwXZ9Sr9fp6IjBP4,4243
|
| 186 |
+
pip/_internal/models/wheel.py,sha256=1SdfDvN7ALTsbyZ9EOsNy1GPirP1n6EjHyzPrZyLSh8,2920
|
| 187 |
+
pip/_internal/network/__init__.py,sha256=FMy06P__y6jMjUc8z3ZcQdKF-pmZ2zM14_vBeHPGhUI,49
|
| 188 |
+
pip/_internal/network/__pycache__/__init__.cpython-314.pyc,,
|
| 189 |
+
pip/_internal/network/__pycache__/auth.cpython-314.pyc,,
|
| 190 |
+
pip/_internal/network/__pycache__/cache.cpython-314.pyc,,
|
| 191 |
+
pip/_internal/network/__pycache__/download.cpython-314.pyc,,
|
| 192 |
+
pip/_internal/network/__pycache__/lazy_wheel.cpython-314.pyc,,
|
| 193 |
+
pip/_internal/network/__pycache__/session.cpython-314.pyc,,
|
| 194 |
+
pip/_internal/network/__pycache__/utils.cpython-314.pyc,,
|
| 195 |
+
pip/_internal/network/__pycache__/xmlrpc.cpython-314.pyc,,
|
| 196 |
+
pip/_internal/network/auth.py,sha256=azFp14I9cyWAAzkxF2VM0Q_xtHnbNz3_NQXszy87KQo,20806
|
| 197 |
+
pip/_internal/network/cache.py,sha256=kmRXKQrG9E26xQRj211LHeEGpDg_SlYU9Dn1fJ-AMeI,4862
|
| 198 |
+
pip/_internal/network/download.py,sha256=8sVwIc9MWwpGlMPYCkO1S9U-FD8TA2utw42tj00skjM,12667
|
| 199 |
+
pip/_internal/network/lazy_wheel.py,sha256=y9gVksdJCSjnLfYzs_m3DYUAtl3hc_k-xFPDBd9DgOs,7646
|
| 200 |
+
pip/_internal/network/session.py,sha256=7zK7EeQCSRFipu4ZzcWl1V3AMKkiXdtGqFr7GvU2LrY,19555
|
| 201 |
+
pip/_internal/network/utils.py,sha256=ACsXd1msqNCidHVXsu7LHUSr8NgaypcOKQ4KG-Z_wJM,4091
|
| 202 |
+
pip/_internal/network/xmlrpc.py,sha256=_-Rnk3vOff8uF9hAGmT6SLALflY1gMBcbGwS12fb_Y4,1830
|
| 203 |
+
pip/_internal/operations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 204 |
+
pip/_internal/operations/__pycache__/__init__.cpython-314.pyc,,
|
| 205 |
+
pip/_internal/operations/__pycache__/check.cpython-314.pyc,,
|
| 206 |
+
pip/_internal/operations/__pycache__/freeze.cpython-314.pyc,,
|
| 207 |
+
pip/_internal/operations/__pycache__/prepare.cpython-314.pyc,,
|
| 208 |
+
pip/_internal/operations/build/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 209 |
+
pip/_internal/operations/build/__pycache__/__init__.cpython-314.pyc,,
|
| 210 |
+
pip/_internal/operations/build/__pycache__/build_tracker.cpython-314.pyc,,
|
| 211 |
+
pip/_internal/operations/build/__pycache__/metadata.cpython-314.pyc,,
|
| 212 |
+
pip/_internal/operations/build/__pycache__/metadata_editable.cpython-314.pyc,,
|
| 213 |
+
pip/_internal/operations/build/__pycache__/wheel.cpython-314.pyc,,
|
| 214 |
+
pip/_internal/operations/build/__pycache__/wheel_editable.cpython-314.pyc,,
|
| 215 |
+
pip/_internal/operations/build/build_tracker.py,sha256=W3b5cmkMWPaE6QIwfzsTayJo7-OlxFHWDxfPuax1KcE,4771
|
| 216 |
+
pip/_internal/operations/build/metadata.py,sha256=INHaeiRfOiLYCXApfDNRo9Cw2xI4VwTc0KItvfdfOjk,1421
|
| 217 |
+
pip/_internal/operations/build/metadata_editable.py,sha256=oWudMsnjy4loO_Jy7g4N9nxsnaEX_iDlVRgCy7pu1rs,1509
|
| 218 |
+
pip/_internal/operations/build/wheel.py,sha256=3bP-nNiJ4S8JvMaBnyessXQUBhxTqt1GBx6DQ1iPJDY,1136
|
| 219 |
+
pip/_internal/operations/build/wheel_editable.py,sha256=q3kfElclM6FutVbFwE87JOTpVWt5ixDf3_UkHAIVfz4,1478
|
| 220 |
+
pip/_internal/operations/check.py,sha256=yC2XWth6iehGGE_fj7XRJLjVKBsTIG3ZoWRkFi3rOwc,5894
|
| 221 |
+
pip/_internal/operations/freeze.py,sha256=PDdY-y_ZtZZJLAKcaWPIGRKAGW7DXR48f0aMRU0j7BA,9854
|
| 222 |
+
pip/_internal/operations/install/__init__.py,sha256=ak-UETcQPKlFZaWoYKWu5QVXbpFBvg0sXc3i0O4vSYY,50
|
| 223 |
+
pip/_internal/operations/install/__pycache__/__init__.cpython-314.pyc,,
|
| 224 |
+
pip/_internal/operations/install/__pycache__/wheel.cpython-314.pyc,,
|
| 225 |
+
pip/_internal/operations/install/wheel.py,sha256=FQIl2AnNadHV5YGGOVEmOHtUUNO8lpzj3Icoo4S2xis,27923
|
| 226 |
+
pip/_internal/operations/prepare.py,sha256=ptVsmQf0Mo6jirk1Q5Djdse_wJw5Zdh1Fla2iL9HAJM,28830
|
| 227 |
+
pip/_internal/pyproject.py,sha256=J-sTWqC-XfsKQgz9m1bypMWZPHItsSHzIN_NWeIRmhM,4555
|
| 228 |
+
pip/_internal/req/__init__.py,sha256=WcY9z7D3rlIKX1QY8_tRnAsS_poebiGGdtQ7EJ5JQQo,3041
|
| 229 |
+
pip/_internal/req/__pycache__/__init__.cpython-314.pyc,,
|
| 230 |
+
pip/_internal/req/__pycache__/constructors.cpython-314.pyc,,
|
| 231 |
+
pip/_internal/req/__pycache__/pep723.cpython-314.pyc,,
|
| 232 |
+
pip/_internal/req/__pycache__/req_dependency_group.cpython-314.pyc,,
|
| 233 |
+
pip/_internal/req/__pycache__/req_file.cpython-314.pyc,,
|
| 234 |
+
pip/_internal/req/__pycache__/req_install.cpython-314.pyc,,
|
| 235 |
+
pip/_internal/req/__pycache__/req_set.cpython-314.pyc,,
|
| 236 |
+
pip/_internal/req/__pycache__/req_uninstall.cpython-314.pyc,,
|
| 237 |
+
pip/_internal/req/constructors.py,sha256=R-6n8irjnaa2DMMXlR4YMouXzykFBlzUFjhOZ1NcUUg,18688
|
| 238 |
+
pip/_internal/req/pep723.py,sha256=olZL3tLmHWJhyLNfbD6U9UuikuzTcLDB06qd9WavTjs,1225
|
| 239 |
+
pip/_internal/req/req_dependency_group.py,sha256=0yEQCUaO5Bza66Y3D5o9JRf0qII5QgCRugn1x5aRivA,2618
|
| 240 |
+
pip/_internal/req/req_file.py,sha256=e32ZQ3kJaL_Sdtf32twGKqIau_AqR43MeSycl0iS2Mw,20685
|
| 241 |
+
pip/_internal/req/req_install.py,sha256=vv5cbs3P5gf43e_1v72gwSQ2N_D_qpsfuXOyerMhDuI,31273
|
| 242 |
+
pip/_internal/req/req_set.py,sha256=awkqIXnYA4Prmsj0Qb3zhqdbYUmXd-1o0P-KZ3mvRQs,2828
|
| 243 |
+
pip/_internal/req/req_uninstall.py,sha256=dCmOHt-9RaJBq921L4tMH3PmIBDetGplnbjRKXmGt00,24099
|
| 244 |
+
pip/_internal/resolution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 245 |
+
pip/_internal/resolution/__pycache__/__init__.cpython-314.pyc,,
|
| 246 |
+
pip/_internal/resolution/__pycache__/base.cpython-314.pyc,,
|
| 247 |
+
pip/_internal/resolution/base.py,sha256=RIsqSP79olPdOgtPKW-oOQ364ICVopehA6RfGkRfe2s,577
|
| 248 |
+
pip/_internal/resolution/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 249 |
+
pip/_internal/resolution/legacy/__pycache__/__init__.cpython-314.pyc,,
|
| 250 |
+
pip/_internal/resolution/legacy/__pycache__/resolver.cpython-314.pyc,,
|
| 251 |
+
pip/_internal/resolution/legacy/resolver.py,sha256=bwUqE66etz2bcPabqxed18-iyqqb-kx3Er2aT6GeUJY,24060
|
| 252 |
+
pip/_internal/resolution/resolvelib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 253 |
+
pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-314.pyc,,
|
| 254 |
+
pip/_internal/resolution/resolvelib/__pycache__/base.cpython-314.pyc,,
|
| 255 |
+
pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-314.pyc,,
|
| 256 |
+
pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-314.pyc,,
|
| 257 |
+
pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-314.pyc,,
|
| 258 |
+
pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-314.pyc,,
|
| 259 |
+
pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-314.pyc,,
|
| 260 |
+
pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-314.pyc,,
|
| 261 |
+
pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-314.pyc,,
|
| 262 |
+
pip/_internal/resolution/resolvelib/base.py,sha256=_AoP0ZWlaSct8CRDn2ol3CbNn4zDtnh_0zQGjXASDKI,5047
|
| 263 |
+
pip/_internal/resolution/resolvelib/candidates.py,sha256=50AN7BfB-pCfEmbKNlFZSXtdC0C8ms1waJrF2arknQE,20454
|
| 264 |
+
pip/_internal/resolution/resolvelib/factory.py,sha256=82mLwnPlig37mMrDwcgKHJTE9mPczVuJIxeaUb7CQ0Y,34028
|
| 265 |
+
pip/_internal/resolution/resolvelib/found_candidates.py,sha256=8bZYDCZLXSdLHy_s1o5f4r15HmKvqFUhzBUQOF21Lr4,6018
|
| 266 |
+
pip/_internal/resolution/resolvelib/provider.py,sha256=tbVPfFv4Vg780yZ2_XGoGFP5LVo0U2bFnZov3jpSAIk,11441
|
| 267 |
+
pip/_internal/resolution/resolvelib/reporter.py,sha256=faSgjqme0k_uzv1fvM5T0ZatPQ2eEktNvKBqfvXeGjc,3909
|
| 268 |
+
pip/_internal/resolution/resolvelib/requirements.py,sha256=Izl9n8nc188lA1BSPS8QxfudfDQPHgngw-ij6hXt0nQ,8239
|
| 269 |
+
pip/_internal/resolution/resolvelib/resolver.py,sha256=wQ94Hkep-7kWEHAc-NbMJhmzeEzgEAtxeBxyKVzZoeo,13437
|
| 270 |
+
pip/_internal/self_outdated_check.py,sha256=zDKsyLMufFHuEZY16WRu129FBbBp-ADuxyWMIN4ihPE,8284
|
| 271 |
+
pip/_internal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 272 |
+
pip/_internal/utils/__pycache__/__init__.cpython-314.pyc,,
|
| 273 |
+
pip/_internal/utils/__pycache__/_jaraco_text.cpython-314.pyc,,
|
| 274 |
+
pip/_internal/utils/__pycache__/_log.cpython-314.pyc,,
|
| 275 |
+
pip/_internal/utils/__pycache__/appdirs.cpython-314.pyc,,
|
| 276 |
+
pip/_internal/utils/__pycache__/compat.cpython-314.pyc,,
|
| 277 |
+
pip/_internal/utils/__pycache__/compatibility_tags.cpython-314.pyc,,
|
| 278 |
+
pip/_internal/utils/__pycache__/datetime.cpython-314.pyc,,
|
| 279 |
+
pip/_internal/utils/__pycache__/deprecation.cpython-314.pyc,,
|
| 280 |
+
pip/_internal/utils/__pycache__/direct_url_helpers.cpython-314.pyc,,
|
| 281 |
+
pip/_internal/utils/__pycache__/egg_link.cpython-314.pyc,,
|
| 282 |
+
pip/_internal/utils/__pycache__/entrypoints.cpython-314.pyc,,
|
| 283 |
+
pip/_internal/utils/__pycache__/filesystem.cpython-314.pyc,,
|
| 284 |
+
pip/_internal/utils/__pycache__/filetypes.cpython-314.pyc,,
|
| 285 |
+
pip/_internal/utils/__pycache__/glibc.cpython-314.pyc,,
|
| 286 |
+
pip/_internal/utils/__pycache__/hashes.cpython-314.pyc,,
|
| 287 |
+
pip/_internal/utils/__pycache__/logging.cpython-314.pyc,,
|
| 288 |
+
pip/_internal/utils/__pycache__/misc.cpython-314.pyc,,
|
| 289 |
+
pip/_internal/utils/__pycache__/packaging.cpython-314.pyc,,
|
| 290 |
+
pip/_internal/utils/__pycache__/pylock.cpython-314.pyc,,
|
| 291 |
+
pip/_internal/utils/__pycache__/retry.cpython-314.pyc,,
|
| 292 |
+
pip/_internal/utils/__pycache__/subprocess.cpython-314.pyc,,
|
| 293 |
+
pip/_internal/utils/__pycache__/temp_dir.cpython-314.pyc,,
|
| 294 |
+
pip/_internal/utils/__pycache__/unpacking.cpython-314.pyc,,
|
| 295 |
+
pip/_internal/utils/__pycache__/urls.cpython-314.pyc,,
|
| 296 |
+
pip/_internal/utils/__pycache__/virtualenv.cpython-314.pyc,,
|
| 297 |
+
pip/_internal/utils/__pycache__/wheel.cpython-314.pyc,,
|
| 298 |
+
pip/_internal/utils/_jaraco_text.py,sha256=M15uUPIh5NpP1tdUGBxRau6q1ZAEtI8-XyLEETscFfE,3350
|
| 299 |
+
pip/_internal/utils/_log.py,sha256=-jHLOE_THaZz5BFcCnoSL9EYAtJ0nXem49s9of4jvKw,1015
|
| 300 |
+
pip/_internal/utils/appdirs.py,sha256=LrzDPZMKVh0rubtCx9vu3XlZbLCSug6VSj4Qsvt66BA,1681
|
| 301 |
+
pip/_internal/utils/compat.py,sha256=C9LHXJAKkwAH8Hn3nPkz9EYK3rqPBeO_IXkOG2zzsdQ,2514
|
| 302 |
+
pip/_internal/utils/compatibility_tags.py,sha256=DiNSLqpuruXUamGQwOJ2WZByDGLTGaXi9O-Xf8fOi34,6630
|
| 303 |
+
pip/_internal/utils/datetime.py,sha256=kuJOf1mW8G5tRFN6jWardddS-9qSaR53lK1jmx3NTZY,868
|
| 304 |
+
pip/_internal/utils/deprecation.py,sha256=HVhvyO5qiRFcG88PhZlp_87qdKQNwPTUIIHWtsTR2yI,3696
|
| 305 |
+
pip/_internal/utils/direct_url_helpers.py,sha256=ttKv4GMUqlRwPPog9_CUopy6SDgoxVILzeBJzgfn2tg,3200
|
| 306 |
+
pip/_internal/utils/egg_link.py,sha256=YWfsrbmfcrfWgqQYy6OuIjsyb9IfL1q_2v4zsms1WjI,2459
|
| 307 |
+
pip/_internal/utils/entrypoints.py,sha256=uPjAyShKObdotjQjJUzprQ6r3xQvDIZwUYfHHqZ7Dok,3324
|
| 308 |
+
pip/_internal/utils/filesystem.py,sha256=mJ_PP8z1V1x4HMhydWIWDyEmWikLX0f-NXPCXEcjiLo,6892
|
| 309 |
+
pip/_internal/utils/filetypes.py,sha256=sEMa38qaqjvx1Zid3OCAUja31BOBU-USuSMPBvU3yjo,689
|
| 310 |
+
pip/_internal/utils/glibc.py,sha256=sEh8RJJLYSdRvTqAO4THVPPA-YSDVLD4SI9So-bxX1U,3726
|
| 311 |
+
pip/_internal/utils/hashes.py,sha256=d32UI1en8nyqZzdZQvxUVdfeBoe4ADWx7HtrIM4-XQ4,4998
|
| 312 |
+
pip/_internal/utils/logging.py,sha256=6lJWMC6c7_aD_i4sdgaaeb-Tm3kWpYg0hba_V1-OLnE,13414
|
| 313 |
+
pip/_internal/utils/misc.py,sha256=phFIbHm2kmliHDXJ0eNPxgGP423ZpvZoMKKtJ1_Zvjs,23722
|
| 314 |
+
pip/_internal/utils/packaging.py,sha256=s5tpUmFumwV0H9JSTzryrIY4JwQM8paGt7Sm7eNwt2Y,1601
|
| 315 |
+
pip/_internal/utils/pylock.py,sha256=nKQknZgyswWgzi--hRQX_DLUYQ3g5wGTCwVNQNdoJ54,3817
|
| 316 |
+
pip/_internal/utils/retry.py,sha256=83wReEB2rcntMZ5VLd7ascaYSjn_kLdlQCqxILxWkPM,1461
|
| 317 |
+
pip/_internal/utils/subprocess.py,sha256=r4-Ba_Yc3uZXQpi0K4pZFsCT_QqdSvtF3XJ-204QWaA,8983
|
| 318 |
+
pip/_internal/utils/temp_dir.py,sha256=D9c8D7WOProOO8GGDqpBeVSj10NGFmunG0o2TodjjIU,9307
|
| 319 |
+
pip/_internal/utils/unpacking.py,sha256=4hNg6dqHOn_KzGCzSC76nChG97d_UjtF9AnLSof672o,12972
|
| 320 |
+
pip/_internal/utils/urls.py,sha256=aF_eg9ul5d8bMCxfSSSxQcfs-OpJdbStYqZHoy2K1RE,1601
|
| 321 |
+
pip/_internal/utils/virtualenv.py,sha256=mX-UPyw1MPxhwUxKhbqWWX70J6PHXAJjVVrRnG0h9mc,3455
|
| 322 |
+
pip/_internal/utils/wheel.py,sha256=YdRuj6MicG-Q9Mg03FbUv1WTLam6Lc7AgijY4voVyis,4468
|
| 323 |
+
pip/_internal/vcs/__init__.py,sha256=UAqvzpbi0VbZo3Ub6skEeZAw-ooIZR-zX_WpCbxyCoU,596
|
| 324 |
+
pip/_internal/vcs/__pycache__/__init__.cpython-314.pyc,,
|
| 325 |
+
pip/_internal/vcs/__pycache__/bazaar.cpython-314.pyc,,
|
| 326 |
+
pip/_internal/vcs/__pycache__/git.cpython-314.pyc,,
|
| 327 |
+
pip/_internal/vcs/__pycache__/mercurial.cpython-314.pyc,,
|
| 328 |
+
pip/_internal/vcs/__pycache__/subversion.cpython-314.pyc,,
|
| 329 |
+
pip/_internal/vcs/__pycache__/versioncontrol.cpython-314.pyc,,
|
| 330 |
+
pip/_internal/vcs/bazaar.py,sha256=3W1eHjkYx2vc6boeb2NBh4I_rlGAXM-vrzfNhLm1Rxg,3734
|
| 331 |
+
pip/_internal/vcs/git.py,sha256=TTeqDuzS-_BFSNuUStVWmE2nGDpKuvUhBBJk_CCQXV0,19144
|
| 332 |
+
pip/_internal/vcs/mercurial.py,sha256=w1ZJWLKqNP1onEjkfjlwBVnMqPZNSIER8ayjQcnTq4w,5575
|
| 333 |
+
pip/_internal/vcs/subversion.py,sha256=uUgdPvxmvEB8Qwtjr0Hc0XgFjbiNi5cbvI4vARLOJXo,11787
|
| 334 |
+
pip/_internal/vcs/versioncontrol.py,sha256=Ma_HMZBVveSkeYvxacvqeujnkSIaF1XjxTsS3BwcJ8E,22599
|
| 335 |
+
pip/_internal/wheel_builder.py,sha256=yvEULStZtty9Kplp89tDis3hGdyKQ-2BUbFLmJ_5ink,9010
|
| 336 |
+
pip/_vendor/README.rst,sha256=pKKBwCWhu3M3qQ9dDnsmxb3KdsRr-nWmMq2srbH_Bi0,9394
|
| 337 |
+
pip/_vendor/__init__.py,sha256=WzusPTGWIMeQQWSVJ0h2rafGkVTa9WKJ2HT-2-EoZrU,4907
|
| 338 |
+
pip/_vendor/__pycache__/__init__.cpython-314.pyc,,
|
| 339 |
+
pip/_vendor/cachecontrol/LICENSE.txt,sha256=hu7uh74qQ_P_H1ZJb0UfaSQ5JvAl_tuwM2ZsMExMFhs,558
|
| 340 |
+
pip/_vendor/cachecontrol/__init__.py,sha256=GxwRkm_TQBtPZpfpVK9r6S9dAy2DVnVgDVHJKTiPZ1k,820
|
| 341 |
+
pip/_vendor/cachecontrol/__pycache__/__init__.cpython-314.pyc,,
|
| 342 |
+
pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-314.pyc,,
|
| 343 |
+
pip/_vendor/cachecontrol/__pycache__/adapter.cpython-314.pyc,,
|
| 344 |
+
pip/_vendor/cachecontrol/__pycache__/cache.cpython-314.pyc,,
|
| 345 |
+
pip/_vendor/cachecontrol/__pycache__/controller.cpython-314.pyc,,
|
| 346 |
+
pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-314.pyc,,
|
| 347 |
+
pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-314.pyc,,
|
| 348 |
+
pip/_vendor/cachecontrol/__pycache__/serialize.cpython-314.pyc,,
|
| 349 |
+
pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-314.pyc,,
|
| 350 |
+
pip/_vendor/cachecontrol/_cmd.py,sha256=iist2EpzJvDVIhMAxXq8iFnTBsiZAd6iplxfmNboNyk,1737
|
| 351 |
+
pip/_vendor/cachecontrol/adapter.py,sha256=W-HW-l01gyCsnxkOyCbqx7sxrWYoBbKrDsKkVVQN6NE,6586
|
| 352 |
+
pip/_vendor/cachecontrol/cache.py,sha256=OXwv7Fn2AwnKNiahJHnjtvaKLndvVLv_-zO-ltlV9qI,1953
|
| 353 |
+
pip/_vendor/cachecontrol/caches/__init__.py,sha256=dtrrroK5BnADR1GWjCZ19aZ0tFsMfvFBtLQQU1sp_ag,303
|
| 354 |
+
pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-314.pyc,,
|
| 355 |
+
pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-314.pyc,,
|
| 356 |
+
pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-314.pyc,,
|
| 357 |
+
pip/_vendor/cachecontrol/caches/file_cache.py,sha256=d8upFmy_zwaCmlbWEVBlLXFddt8Zw8c5SFpxeOZsdfw,4117
|
| 358 |
+
pip/_vendor/cachecontrol/caches/redis_cache.py,sha256=9rmqwtYu_ljVkW6_oLqbC7EaX_a8YT_yLuna-eS0dgo,1386
|
| 359 |
+
pip/_vendor/cachecontrol/controller.py,sha256=xBauC-vUSu5GsJsxD4-W-JaKqqbBz0MN6Zv8PA2N8hI,19102
|
| 360 |
+
pip/_vendor/cachecontrol/filewrapper.py,sha256=DhxC_rSk-beKdbsYhfvBUDovQHX9r3gHH_jP9-q_mKk,4354
|
| 361 |
+
pip/_vendor/cachecontrol/heuristics.py,sha256=gqMXU8w0gQuEQiSdu3Yg-0vd9kW7nrWKbLca75rheGE,4881
|
| 362 |
+
pip/_vendor/cachecontrol/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 363 |
+
pip/_vendor/cachecontrol/serialize.py,sha256=HQd2IllQ05HzPkVLMXTF2uX5mjEQjDBkxCqUJUODpZk,5163
|
| 364 |
+
pip/_vendor/cachecontrol/wrapper.py,sha256=hsGc7g8QGQTT-4f8tgz3AM5qwScg6FO0BSdLSRdEvpU,1417
|
| 365 |
+
pip/_vendor/certifi/LICENSE,sha256=6TcW2mucDVpKHfYP5pWzcPBpVgPSH2-D8FPkLPwQyvc,989
|
| 366 |
+
pip/_vendor/certifi/__init__.py,sha256=969deMMS7Uchipr0oO4dbRBUvRi0uNYCn07VmG1aTrg,94
|
| 367 |
+
pip/_vendor/certifi/__main__.py,sha256=1k3Cr95vCxxGRGDljrW3wMdpZdL3Nhf0u1n-k2qdsCY,255
|
| 368 |
+
pip/_vendor/certifi/__pycache__/__init__.cpython-314.pyc,,
|
| 369 |
+
pip/_vendor/certifi/__pycache__/__main__.cpython-314.pyc,,
|
| 370 |
+
pip/_vendor/certifi/__pycache__/core.cpython-314.pyc,,
|
| 371 |
+
pip/_vendor/certifi/cacert.pem,sha256=Tzl1_zCrvzVEO0hgZK6Ly0Hf9wf_31dsdtKS-0WKoKk,270954
|
| 372 |
+
pip/_vendor/certifi/core.py,sha256=gu_ECVI1m3Rq0ytpsNE61hgQGcKaOAt9Rs9G8KsTCOI,3442
|
| 373 |
+
pip/_vendor/certifi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 374 |
+
pip/_vendor/dependency_groups/LICENSE.txt,sha256=GrNuPipLqGMWJThPh-ngkdsfrtA0xbIzJbMjmr8sxSU,1099
|
| 375 |
+
pip/_vendor/dependency_groups/__init__.py,sha256=C3OFu0NGwDzQ4LOmmSOFPsRSvkbBn-mdd4j_5YqJw-s,250
|
| 376 |
+
pip/_vendor/dependency_groups/__main__.py,sha256=UNTM7P5mfVtT7wDi9kOTXWgV3fu3e8bTrt1Qp1jvjKo,1709
|
| 377 |
+
pip/_vendor/dependency_groups/__pycache__/__init__.cpython-314.pyc,,
|
| 378 |
+
pip/_vendor/dependency_groups/__pycache__/__main__.cpython-314.pyc,,
|
| 379 |
+
pip/_vendor/dependency_groups/__pycache__/_implementation.cpython-314.pyc,,
|
| 380 |
+
pip/_vendor/dependency_groups/__pycache__/_lint_dependency_groups.cpython-314.pyc,,
|
| 381 |
+
pip/_vendor/dependency_groups/__pycache__/_pip_wrapper.cpython-314.pyc,,
|
| 382 |
+
pip/_vendor/dependency_groups/__pycache__/_toml_compat.cpython-314.pyc,,
|
| 383 |
+
pip/_vendor/dependency_groups/_implementation.py,sha256=Gqb2DlQELRakeHlKf6QtQSW0M-bcEomxHw4JsvID1ls,8041
|
| 384 |
+
pip/_vendor/dependency_groups/_lint_dependency_groups.py,sha256=yp-DDqKXtbkDTNa0ifa-FmOA8ra24lPZEXftW-R5AuI,1710
|
| 385 |
+
pip/_vendor/dependency_groups/_pip_wrapper.py,sha256=nuVW_w_ntVxpE26ELEvngMY0N04sFLsijXRyZZROFG8,1865
|
| 386 |
+
pip/_vendor/dependency_groups/_toml_compat.py,sha256=BHnXnFacm3DeolsA35GjI6qkDApvua-1F20kv3BfZWE,285
|
| 387 |
+
pip/_vendor/dependency_groups/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 388 |
+
pip/_vendor/distlib/LICENSE.txt,sha256=gI4QyKarjesUn_mz-xn0R6gICUYG1xKpylf-rTVSWZ0,14531
|
| 389 |
+
pip/_vendor/distlib/__init__.py,sha256=Deo3uo98aUyIfdKJNqofeSEFWwDzrV2QeGLXLsgq0Ag,625
|
| 390 |
+
pip/_vendor/distlib/__pycache__/__init__.cpython-314.pyc,,
|
| 391 |
+
pip/_vendor/distlib/__pycache__/compat.cpython-314.pyc,,
|
| 392 |
+
pip/_vendor/distlib/__pycache__/resources.cpython-314.pyc,,
|
| 393 |
+
pip/_vendor/distlib/__pycache__/scripts.cpython-314.pyc,,
|
| 394 |
+
pip/_vendor/distlib/__pycache__/util.cpython-314.pyc,,
|
| 395 |
+
pip/_vendor/distlib/compat.py,sha256=2jRSjRI4o-vlXeTK2BCGIUhkc6e9ZGhSsacRM5oseTw,41467
|
| 396 |
+
pip/_vendor/distlib/resources.py,sha256=LwbPksc0A1JMbi6XnuPdMBUn83X7BPuFNWqPGEKI698,10820
|
| 397 |
+
pip/_vendor/distlib/scripts.py,sha256=Qvp76E9Jc3IgyYubnpqI9fS7eseGOe4FjpeVKqKt9Iw,18612
|
| 398 |
+
pip/_vendor/distlib/t32.exe,sha256=a0GV5kCoWsMutvliiCKmIgV98eRZ33wXoS-XrqvJQVs,97792
|
| 399 |
+
pip/_vendor/distlib/t64-arm.exe,sha256=68TAa32V504xVBnufojh0PcenpR3U4wAqTqf-MZqbPw,182784
|
| 400 |
+
pip/_vendor/distlib/t64.exe,sha256=gaYY8hy4fbkHYTTnA4i26ct8IQZzkBG2pRdy0iyuBrc,108032
|
| 401 |
+
pip/_vendor/distlib/util.py,sha256=vMPGvsS4j9hF6Y9k3Tyom1aaHLb0rFmZAEyzeAdel9w,66682
|
| 402 |
+
pip/_vendor/distlib/w32.exe,sha256=R4csx3-OGM9kL4aPIzQKRo5TfmRSHZo6QWyLhDhNBks,91648
|
| 403 |
+
pip/_vendor/distlib/w64-arm.exe,sha256=xdyYhKj0WDcVUOCb05blQYvzdYIKMbmJn2SZvzkcey4,168448
|
| 404 |
+
pip/_vendor/distlib/w64.exe,sha256=ejGf-rojoBfXseGLpya6bFTFPWRG21X5KvU8J5iU-K0,101888
|
| 405 |
+
pip/_vendor/distro/LICENSE,sha256=y16Ofl9KOYjhBjwULGDcLfdWBfTEZRXnduOspt-XbhQ,11325
|
| 406 |
+
pip/_vendor/distro/__init__.py,sha256=2fHjF-SfgPvjyNZ1iHh_wjqWdR_Yo5ODHwZC0jLBPhc,981
|
| 407 |
+
pip/_vendor/distro/__main__.py,sha256=bu9d3TifoKciZFcqRBuygV3GSuThnVD_m2IK4cz96Vs,64
|
| 408 |
+
pip/_vendor/distro/__pycache__/__init__.cpython-314.pyc,,
|
| 409 |
+
pip/_vendor/distro/__pycache__/__main__.cpython-314.pyc,,
|
| 410 |
+
pip/_vendor/distro/__pycache__/distro.cpython-314.pyc,,
|
| 411 |
+
pip/_vendor/distro/distro.py,sha256=XqbefacAhDT4zr_trnbA15eY8vdK4GTghgmvUGrEM_4,49430
|
| 412 |
+
pip/_vendor/distro/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 413 |
+
pip/_vendor/idna/LICENSE.md,sha256=t6M2q_OwThgOwGXN0W5wXQeeHMehT5EKpukYfza5zYc,1541
|
| 414 |
+
pip/_vendor/idna/__init__.py,sha256=MPqNDLZbXqGaNdXxAFhiqFPKEQXju2jNQhCey6-5eJM,868
|
| 415 |
+
pip/_vendor/idna/__pycache__/__init__.cpython-314.pyc,,
|
| 416 |
+
pip/_vendor/idna/__pycache__/codec.cpython-314.pyc,,
|
| 417 |
+
pip/_vendor/idna/__pycache__/compat.cpython-314.pyc,,
|
| 418 |
+
pip/_vendor/idna/__pycache__/core.cpython-314.pyc,,
|
| 419 |
+
pip/_vendor/idna/__pycache__/idnadata.cpython-314.pyc,,
|
| 420 |
+
pip/_vendor/idna/__pycache__/intranges.cpython-314.pyc,,
|
| 421 |
+
pip/_vendor/idna/__pycache__/package_data.cpython-314.pyc,,
|
| 422 |
+
pip/_vendor/idna/__pycache__/uts46data.cpython-314.pyc,,
|
| 423 |
+
pip/_vendor/idna/codec.py,sha256=M2SGWN7cs_6B32QmKTyTN6xQGZeYQgQ2wiX3_DR6loE,3438
|
| 424 |
+
pip/_vendor/idna/compat.py,sha256=RzLy6QQCdl9784aFhb2EX9EKGCJjg0P3PilGdeXXcx8,316
|
| 425 |
+
pip/_vendor/idna/core.py,sha256=P26_XVycuMTZ1R2mNK1ZREVzM5mvTzdabBXfyZVU1Lc,13246
|
| 426 |
+
pip/_vendor/idna/idnadata.py,sha256=SG8jhaGE53iiD6B49pt2pwTv_UvClciWE-N54oR2p4U,79623
|
| 427 |
+
pip/_vendor/idna/intranges.py,sha256=amUtkdhYcQG8Zr-CoMM_kVRacxkivC1WgxN1b63KKdU,1898
|
| 428 |
+
pip/_vendor/idna/package_data.py,sha256=_CUavOxobnbyNG2FLyHoN8QHP3QM9W1tKuw7eq9QwBk,21
|
| 429 |
+
pip/_vendor/idna/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 430 |
+
pip/_vendor/idna/uts46data.py,sha256=H9J35VkD0F9L9mKOqjeNGd2A-Va6FlPoz6Jz4K7h-ps,243725
|
| 431 |
+
pip/_vendor/msgpack/COPYING,sha256=SS3tuoXaWHL3jmCRvNH-pHTWYNNay03ulkuKqz8AdCc,614
|
| 432 |
+
pip/_vendor/msgpack/__init__.py,sha256=RA8gcqK17YpkxBnNwXJVa1oa2LygWDgfF1nA1NPw3mo,1109
|
| 433 |
+
pip/_vendor/msgpack/__pycache__/__init__.cpython-314.pyc,,
|
| 434 |
+
pip/_vendor/msgpack/__pycache__/exceptions.cpython-314.pyc,,
|
| 435 |
+
pip/_vendor/msgpack/__pycache__/ext.cpython-314.pyc,,
|
| 436 |
+
pip/_vendor/msgpack/__pycache__/fallback.cpython-314.pyc,,
|
| 437 |
+
pip/_vendor/msgpack/exceptions.py,sha256=dCTWei8dpkrMsQDcjQk74ATl9HsIBH0ybt8zOPNqMYc,1081
|
| 438 |
+
pip/_vendor/msgpack/ext.py,sha256=kteJv03n9tYzd5oo3xYopVTo4vRaAxonBQQJhXohZZo,5726
|
| 439 |
+
pip/_vendor/msgpack/fallback.py,sha256=0g1Pzp0vtmBEmJ5w9F3s_-JMVURP8RS4G1cc5TRaAsI,32390
|
| 440 |
+
pip/_vendor/packaging/LICENSE,sha256=ytHvW9NA1z4HS6YU0m996spceUDD2MNIUuZcSQlobEg,197
|
| 441 |
+
pip/_vendor/packaging/LICENSE.APACHE,sha256=DVQuDIgE45qn836wDaWnYhSdxoLXgpRRKH4RuTjpRZQ,10174
|
| 442 |
+
pip/_vendor/packaging/LICENSE.BSD,sha256=tw5-m3QvHMb5SLNMFqo5_-zpQZY2S8iP8NIYDwAo-sU,1344
|
| 443 |
+
pip/_vendor/packaging/__init__.py,sha256=y4lVbpeBzCGk-IPDw5BGBZ_b0P3ukEEJZAbGYc6Ey8c,494
|
| 444 |
+
pip/_vendor/packaging/__pycache__/__init__.cpython-314.pyc,,
|
| 445 |
+
pip/_vendor/packaging/__pycache__/_elffile.cpython-314.pyc,,
|
| 446 |
+
pip/_vendor/packaging/__pycache__/_manylinux.cpython-314.pyc,,
|
| 447 |
+
pip/_vendor/packaging/__pycache__/_musllinux.cpython-314.pyc,,
|
| 448 |
+
pip/_vendor/packaging/__pycache__/_parser.cpython-314.pyc,,
|
| 449 |
+
pip/_vendor/packaging/__pycache__/_structures.cpython-314.pyc,,
|
| 450 |
+
pip/_vendor/packaging/__pycache__/_tokenizer.cpython-314.pyc,,
|
| 451 |
+
pip/_vendor/packaging/__pycache__/markers.cpython-314.pyc,,
|
| 452 |
+
pip/_vendor/packaging/__pycache__/metadata.cpython-314.pyc,,
|
| 453 |
+
pip/_vendor/packaging/__pycache__/pylock.cpython-314.pyc,,
|
| 454 |
+
pip/_vendor/packaging/__pycache__/requirements.cpython-314.pyc,,
|
| 455 |
+
pip/_vendor/packaging/__pycache__/specifiers.cpython-314.pyc,,
|
| 456 |
+
pip/_vendor/packaging/__pycache__/tags.cpython-314.pyc,,
|
| 457 |
+
pip/_vendor/packaging/__pycache__/utils.cpython-314.pyc,,
|
| 458 |
+
pip/_vendor/packaging/__pycache__/version.cpython-314.pyc,,
|
| 459 |
+
pip/_vendor/packaging/_elffile.py,sha256=-sKkptYqzYw2-x3QByJa5mB4rfPWu1pxkZHRx1WAFCY,3211
|
| 460 |
+
pip/_vendor/packaging/_manylinux.py,sha256=Hf6nB0cOrayEs96-p3oIXAgGnFquv20DO5l-o2_Xnv0,9559
|
| 461 |
+
pip/_vendor/packaging/_musllinux.py,sha256=Z6swjH3MA7XS3qXnmMN7QPhqP3fnoYI0eQ18e9-HgAE,2707
|
| 462 |
+
pip/_vendor/packaging/_parser.py,sha256=U_DajsEx2VoC_F46fSVV3hDKNCWoQYkPkasO3dld0ig,10518
|
| 463 |
+
pip/_vendor/packaging/_structures.py,sha256=Hn49Ta8zV9Wo8GiCL8Nl2ARZY983Un3pruZGVNldPwE,1514
|
| 464 |
+
pip/_vendor/packaging/_tokenizer.py,sha256=M8EwNIdXeL9NMFuFrQtiOKwjka_xFx8KjRQnfE8O_z8,5421
|
| 465 |
+
pip/_vendor/packaging/licenses/__init__.py,sha256=TwXLHZCXwSgdFwRLPxW602T6mSieunSFHM6fp8pgW78,5819
|
| 466 |
+
pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-314.pyc,,
|
| 467 |
+
pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-314.pyc,,
|
| 468 |
+
pip/_vendor/packaging/licenses/_spdx.py,sha256=WW7DXiyg68up_YND_wpRYlr1SHhiV4FfJLQffghhMxQ,51122
|
| 469 |
+
pip/_vendor/packaging/markers.py,sha256=ZX-cLvW1S3cZcEc0fHI4z7zSx5U2T19yMpDP_mE-CYw,12771
|
| 470 |
+
pip/_vendor/packaging/metadata.py,sha256=CWVZpN_HfoYMSSDuCP7igOvGgqA9AOmpW8f3qTisfnc,39360
|
| 471 |
+
pip/_vendor/packaging/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 472 |
+
pip/_vendor/packaging/pylock.py,sha256=-R1uNfJ4PaLto7Mg62YsGOHgvskuiIEqPwxOywl42Jk,22537
|
| 473 |
+
pip/_vendor/packaging/requirements.py,sha256=PMCAWD8aNMnVD-6uZMedhBuAVX2573eZ4yPBLXmz04I,2870
|
| 474 |
+
pip/_vendor/packaging/specifiers.py,sha256=tF2nC-jwW94FYe6So9dNGenQx1Hdif7ErmWlVp1QiXE,40821
|
| 475 |
+
pip/_vendor/packaging/tags.py,sha256=cXLV1pJD3UtJlDg7Wz3zrfdQhRZqr8jumSAKKAAd2xE,22856
|
| 476 |
+
pip/_vendor/packaging/utils.py,sha256=N4c6oZzFJy6klTZ3AnkNz7sSkJesuFWPp68LA3B5dAo,5040
|
| 477 |
+
pip/_vendor/packaging/version.py,sha256=RVRKq8_GD5Bcak6E1kGG8K7siNZYW9n_XK8M2ZLl0H8,23284
|
| 478 |
+
pip/_vendor/pkg_resources/LICENSE,sha256=htoPAa6uRjSKPD1GUZXcHOzN55956HdppkuNoEsqR0E,1023
|
| 479 |
+
pip/_vendor/pkg_resources/__init__.py,sha256=vbTJ0_ruUgGxQjlEqsruFmiNPVyh2t9q-zyTDT053xI,124451
|
| 480 |
+
pip/_vendor/pkg_resources/__pycache__/__init__.cpython-314.pyc,,
|
| 481 |
+
pip/_vendor/platformdirs/LICENSE,sha256=KeD9YukphQ6G6yjD_czwzv30-pSHkBHP-z0NS-1tTbY,1089
|
| 482 |
+
pip/_vendor/platformdirs/__init__.py,sha256=UfeSHWl8AeTtbOBOoHAxK4dODOWkZtfy-m_i7cWdJ8c,22344
|
| 483 |
+
pip/_vendor/platformdirs/__main__.py,sha256=jBJ8zb7Mpx5ebcqF83xrpO94MaeCpNGHVf9cvDN2JLg,1505
|
| 484 |
+
pip/_vendor/platformdirs/__pycache__/__init__.cpython-314.pyc,,
|
| 485 |
+
pip/_vendor/platformdirs/__pycache__/__main__.cpython-314.pyc,,
|
| 486 |
+
pip/_vendor/platformdirs/__pycache__/android.cpython-314.pyc,,
|
| 487 |
+
pip/_vendor/platformdirs/__pycache__/api.cpython-314.pyc,,
|
| 488 |
+
pip/_vendor/platformdirs/__pycache__/macos.cpython-314.pyc,,
|
| 489 |
+
pip/_vendor/platformdirs/__pycache__/unix.cpython-314.pyc,,
|
| 490 |
+
pip/_vendor/platformdirs/__pycache__/version.cpython-314.pyc,,
|
| 491 |
+
pip/_vendor/platformdirs/__pycache__/windows.cpython-314.pyc,,
|
| 492 |
+
pip/_vendor/platformdirs/android.py,sha256=r0DshVBf-RO1jXJGX8C4Til7F1XWt-bkdWMgmvEiaYg,9013
|
| 493 |
+
pip/_vendor/platformdirs/api.py,sha256=wPHOlwOsfz2oqQZ6A2FcCu5kEAj-JondzoNOHYFQ0h8,9281
|
| 494 |
+
pip/_vendor/platformdirs/macos.py,sha256=0XoOgin1NK7Qki7iskD-oS8xKxw6bXgoKEgdqpCRAFQ,6322
|
| 495 |
+
pip/_vendor/platformdirs/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 496 |
+
pip/_vendor/platformdirs/unix.py,sha256=WZmkUA--L3JNRGmz32s35YfoD3ica6xKIPdCV_HhLcs,10458
|
| 497 |
+
pip/_vendor/platformdirs/version.py,sha256=BI_dKLSMwlkl57vlxZnT8oVjPiUC2W_sdx_8_h99HeQ,704
|
| 498 |
+
pip/_vendor/platformdirs/windows.py,sha256=XvCfklGUMVxJbXit51jpYMN-lNeScPB82qS1CAeplL0,10362
|
| 499 |
+
pip/_vendor/pygments/LICENSE,sha256=qdZvHVJt8C4p3Oc0NtNOVuhjL0bCdbvf_HBWnogvnxc,1331
|
| 500 |
+
pip/_vendor/pygments/__init__.py,sha256=8uNqJCCwXqbEx5aSsBr0FykUQOBDKBihO5mPqiw1aqo,2983
|
| 501 |
+
pip/_vendor/pygments/__main__.py,sha256=WrndpSe6i1ckX_SQ1KaxD9CTKGzD0EuCOFxcbwFpoLU,353
|
| 502 |
+
pip/_vendor/pygments/__pycache__/__init__.cpython-314.pyc,,
|
| 503 |
+
pip/_vendor/pygments/__pycache__/__main__.cpython-314.pyc,,
|
| 504 |
+
pip/_vendor/pygments/__pycache__/console.cpython-314.pyc,,
|
| 505 |
+
pip/_vendor/pygments/__pycache__/filter.cpython-314.pyc,,
|
| 506 |
+
pip/_vendor/pygments/__pycache__/formatter.cpython-314.pyc,,
|
| 507 |
+
pip/_vendor/pygments/__pycache__/lexer.cpython-314.pyc,,
|
| 508 |
+
pip/_vendor/pygments/__pycache__/modeline.cpython-314.pyc,,
|
| 509 |
+
pip/_vendor/pygments/__pycache__/plugin.cpython-314.pyc,,
|
| 510 |
+
pip/_vendor/pygments/__pycache__/regexopt.cpython-314.pyc,,
|
| 511 |
+
pip/_vendor/pygments/__pycache__/scanner.cpython-314.pyc,,
|
| 512 |
+
pip/_vendor/pygments/__pycache__/sphinxext.cpython-314.pyc,,
|
| 513 |
+
pip/_vendor/pygments/__pycache__/style.cpython-314.pyc,,
|
| 514 |
+
pip/_vendor/pygments/__pycache__/token.cpython-314.pyc,,
|
| 515 |
+
pip/_vendor/pygments/__pycache__/unistring.cpython-314.pyc,,
|
| 516 |
+
pip/_vendor/pygments/__pycache__/util.cpython-314.pyc,,
|
| 517 |
+
pip/_vendor/pygments/console.py,sha256=AagDWqwea2yBWf10KC9ptBgMpMjxKp8yABAmh-NQOVk,1718
|
| 518 |
+
pip/_vendor/pygments/filter.py,sha256=YLtpTnZiu07nY3oK9nfR6E9Y1FBHhP5PX8gvkJWcfag,1910
|
| 519 |
+
pip/_vendor/pygments/filters/__init__.py,sha256=4U4jtA0X3iP83uQnB9-TI-HDSw8E8y8zMYHa0UjbbaI,40392
|
| 520 |
+
pip/_vendor/pygments/filters/__pycache__/__init__.cpython-314.pyc,,
|
| 521 |
+
pip/_vendor/pygments/formatter.py,sha256=KZQMmyo_xkOIkQG8g66LYEkBh1bx7a0HyGCBcvhI9Ew,4390
|
| 522 |
+
pip/_vendor/pygments/formatters/__init__.py,sha256=KTwBmnXlaopJhQDOemVHYHskiDghuq-08YtP6xPNJPg,5385
|
| 523 |
+
pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-314.pyc,,
|
| 524 |
+
pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-314.pyc,,
|
| 525 |
+
pip/_vendor/pygments/formatters/_mapping.py,sha256=1Cw37FuQlNacnxRKmtlPX4nyLoX9_ttko5ZwscNUZZ4,4176
|
| 526 |
+
pip/_vendor/pygments/lexer.py,sha256=_kBrOJ_NT5Tl0IVM0rA9c8eysP6_yrlGzEQI0eVYB-A,35349
|
| 527 |
+
pip/_vendor/pygments/lexers/__init__.py,sha256=wbIME35GH7bI1B9rNPJFqWT-ij_RApZDYPUlZycaLzA,12115
|
| 528 |
+
pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-314.pyc,,
|
| 529 |
+
pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-314.pyc,,
|
| 530 |
+
pip/_vendor/pygments/lexers/__pycache__/python.cpython-314.pyc,,
|
| 531 |
+
pip/_vendor/pygments/lexers/_mapping.py,sha256=l4tCXM8e9aPC2BD6sjIr0deT-J-z5tHgCwL-p1fS0PE,77602
|
| 532 |
+
pip/_vendor/pygments/lexers/python.py,sha256=vxjn1cOHclIKJKxoyiBsQTY65GHbkZtZRuKQ2AVCKaw,53853
|
| 533 |
+
pip/_vendor/pygments/modeline.py,sha256=K5eSkR8GS1r5OkXXTHOcV0aM_6xpk9eWNEIAW-OOJ2g,1005
|
| 534 |
+
pip/_vendor/pygments/plugin.py,sha256=tPx0rJCTIZ9ioRgLNYG4pifCbAwTRUZddvLw-NfAk2w,1891
|
| 535 |
+
pip/_vendor/pygments/regexopt.py,sha256=wXaP9Gjp_hKAdnICqoDkRxAOQJSc4v3X6mcxx3z-TNs,3072
|
| 536 |
+
pip/_vendor/pygments/scanner.py,sha256=nNcETRR1tRuiTaHmHSTTECVYFPcLf6mDZu1e4u91A9E,3092
|
| 537 |
+
pip/_vendor/pygments/sphinxext.py,sha256=5x7Zh9YlU6ISJ31dMwduiaanb5dWZnKg3MyEQsseNnQ,7981
|
| 538 |
+
pip/_vendor/pygments/style.py,sha256=PlOZqlsnTVd58RGy50vkA2cXQ_lP5bF5EGMEBTno6DA,6420
|
| 539 |
+
pip/_vendor/pygments/styles/__init__.py,sha256=x9ebctfyvCAFpMTlMJ5YxwcNYBzjgq6zJaKkNm78r4M,2042
|
| 540 |
+
pip/_vendor/pygments/styles/__pycache__/__init__.cpython-314.pyc,,
|
| 541 |
+
pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-314.pyc,,
|
| 542 |
+
pip/_vendor/pygments/styles/_mapping.py,sha256=6lovFUE29tz6EsV3XYY4hgozJ7q1JL7cfO3UOlgnS8w,3312
|
| 543 |
+
pip/_vendor/pygments/token.py,sha256=WbdWGhYm_Vosb0DDxW9lHNPgITXfWTsQmHt6cy9RbcM,6226
|
| 544 |
+
pip/_vendor/pygments/unistring.py,sha256=al-_rBemRuGvinsrM6atNsHTmJ6DUbw24q2O2Ru1cBc,63208
|
| 545 |
+
pip/_vendor/pygments/util.py,sha256=oRtSpiAo5jM9ulntkvVbgXUdiAW57jnuYGB7t9fYuhc,10031
|
| 546 |
+
pip/_vendor/pyproject_hooks/LICENSE,sha256=GyKwSbUmfW38I6Z79KhNjsBLn9-xpR02DkK0NCyLQVQ,1081
|
| 547 |
+
pip/_vendor/pyproject_hooks/__init__.py,sha256=cPB_a9LXz5xvsRbX1o2qyAdjLatZJdQ_Lc5McNX-X7Y,691
|
| 548 |
+
pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-314.pyc,,
|
| 549 |
+
pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-314.pyc,,
|
| 550 |
+
pip/_vendor/pyproject_hooks/_impl.py,sha256=jY-raxnmyRyB57ruAitrJRUzEexuAhGTpgMygqx67Z4,14936
|
| 551 |
+
pip/_vendor/pyproject_hooks/_in_process/__init__.py,sha256=MJNPpfIxcO-FghxpBbxkG1rFiQf6HOUbV4U5mq0HFns,557
|
| 552 |
+
pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-314.pyc,,
|
| 553 |
+
pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-314.pyc,,
|
| 554 |
+
pip/_vendor/pyproject_hooks/_in_process/_in_process.py,sha256=qcXMhmx__MIJq10gGHW3mA4Tl8dy8YzHMccwnNoKlw0,12216
|
| 555 |
+
pip/_vendor/pyproject_hooks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 556 |
+
pip/_vendor/requests/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
| 557 |
+
pip/_vendor/requests/__init__.py,sha256=HlB_HzhrzGtfD_aaYUwUh1zWXLZ75_YCLyit75d0Vz8,5057
|
| 558 |
+
pip/_vendor/requests/__pycache__/__init__.cpython-314.pyc,,
|
| 559 |
+
pip/_vendor/requests/__pycache__/__version__.cpython-314.pyc,,
|
| 560 |
+
pip/_vendor/requests/__pycache__/_internal_utils.cpython-314.pyc,,
|
| 561 |
+
pip/_vendor/requests/__pycache__/adapters.cpython-314.pyc,,
|
| 562 |
+
pip/_vendor/requests/__pycache__/api.cpython-314.pyc,,
|
| 563 |
+
pip/_vendor/requests/__pycache__/auth.cpython-314.pyc,,
|
| 564 |
+
pip/_vendor/requests/__pycache__/certs.cpython-314.pyc,,
|
| 565 |
+
pip/_vendor/requests/__pycache__/compat.cpython-314.pyc,,
|
| 566 |
+
pip/_vendor/requests/__pycache__/cookies.cpython-314.pyc,,
|
| 567 |
+
pip/_vendor/requests/__pycache__/exceptions.cpython-314.pyc,,
|
| 568 |
+
pip/_vendor/requests/__pycache__/help.cpython-314.pyc,,
|
| 569 |
+
pip/_vendor/requests/__pycache__/hooks.cpython-314.pyc,,
|
| 570 |
+
pip/_vendor/requests/__pycache__/models.cpython-314.pyc,,
|
| 571 |
+
pip/_vendor/requests/__pycache__/packages.cpython-314.pyc,,
|
| 572 |
+
pip/_vendor/requests/__pycache__/sessions.cpython-314.pyc,,
|
| 573 |
+
pip/_vendor/requests/__pycache__/status_codes.cpython-314.pyc,,
|
| 574 |
+
pip/_vendor/requests/__pycache__/structures.cpython-314.pyc,,
|
| 575 |
+
pip/_vendor/requests/__pycache__/utils.cpython-314.pyc,,
|
| 576 |
+
pip/_vendor/requests/__version__.py,sha256=QKDceK8K_ujqwDDc3oYrR0odOBYgKVOQQ5vFap_G_cg,435
|
| 577 |
+
pip/_vendor/requests/_internal_utils.py,sha256=nMQymr4hs32TqVo5AbCrmcJEhvPUh7xXlluyqwslLiQ,1495
|
| 578 |
+
pip/_vendor/requests/adapters.py,sha256=2MLFOK9GpYNhiTd6zLDUrAgSkIB-76i6pmSuUJjHC2w,26429
|
| 579 |
+
pip/_vendor/requests/api.py,sha256=_Zb9Oa7tzVIizTKwFrPjDEY9ejtm_OnSRERnADxGsQs,6449
|
| 580 |
+
pip/_vendor/requests/auth.py,sha256=kF75tqnLctZ9Mf_hm9TZIj4cQWnN5uxRz8oWsx5wmR0,10186
|
| 581 |
+
pip/_vendor/requests/certs.py,sha256=kHDlkK_beuHXeMPc5jta2wgl8gdKeUWt5f2nTDVrvt8,441
|
| 582 |
+
pip/_vendor/requests/compat.py,sha256=QfbmdTFiZzjSHMXiMrd4joCRU6RabtQ9zIcPoVaHIus,1822
|
| 583 |
+
pip/_vendor/requests/cookies.py,sha256=bNi-iqEj4NPZ00-ob-rHvzkvObzN3lEpgw3g6paS3Xw,18590
|
| 584 |
+
pip/_vendor/requests/exceptions.py,sha256=D1wqzYWne1mS2rU43tP9CeN1G7QAy7eqL9o1god6Ejw,4272
|
| 585 |
+
pip/_vendor/requests/help.py,sha256=hRKaf9u0G7fdwrqMHtF3oG16RKktRf6KiwtSq2Fo1_0,3813
|
| 586 |
+
pip/_vendor/requests/hooks.py,sha256=CiuysiHA39V5UfcCBXFIx83IrDpuwfN9RcTUgv28ftQ,733
|
| 587 |
+
pip/_vendor/requests/models.py,sha256=taljlg6vJ4b-xMu2TaMNFFkaiwMex_VsEQ6qUTN3wzY,35575
|
| 588 |
+
pip/_vendor/requests/packages.py,sha256=_ZQDCJTJ8SP3kVWunSqBsRZNPzj2c1WFVqbdr08pz3U,1057
|
| 589 |
+
pip/_vendor/requests/sessions.py,sha256=Cl1dpEnOfwrzzPbku-emepNeN4Rt_0_58Iy2x-JGTm8,30503
|
| 590 |
+
pip/_vendor/requests/status_codes.py,sha256=iJUAeA25baTdw-6PfD0eF4qhpINDJRJI-yaMqxs4LEI,4322
|
| 591 |
+
pip/_vendor/requests/structures.py,sha256=-IbmhVz06S-5aPSZuUthZ6-6D9XOjRuTXHOabY041XM,2912
|
| 592 |
+
pip/_vendor/requests/utils.py,sha256=WS3wHSQaaEfceu1syiFo5jf4e_CWKUTep_IabOVI_J0,33225
|
| 593 |
+
pip/_vendor/resolvelib/LICENSE,sha256=84j9OMrRMRLB3A9mm76A5_hFQe26-3LzAw0sp2QsPJ0,751
|
| 594 |
+
pip/_vendor/resolvelib/__init__.py,sha256=yoX-d4STvwGGCiQRE5cJC9Cter69SgVgqClxOCvSP7M,541
|
| 595 |
+
pip/_vendor/resolvelib/__pycache__/__init__.cpython-314.pyc,,
|
| 596 |
+
pip/_vendor/resolvelib/__pycache__/providers.cpython-314.pyc,,
|
| 597 |
+
pip/_vendor/resolvelib/__pycache__/reporters.cpython-314.pyc,,
|
| 598 |
+
pip/_vendor/resolvelib/__pycache__/structs.cpython-314.pyc,,
|
| 599 |
+
pip/_vendor/resolvelib/providers.py,sha256=pIWJbIdJJ9GFtNbtwTH0Ia43Vj6hYCEJj2DOLue15FM,8914
|
| 600 |
+
pip/_vendor/resolvelib/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 601 |
+
pip/_vendor/resolvelib/reporters.py,sha256=pNJf4nFxLpAeKxlBUi2GEj0a2Ij1nikY0UabTKXesT4,2037
|
| 602 |
+
pip/_vendor/resolvelib/resolvers/__init__.py,sha256=728M3EvmnPbVXS7ExXlv2kMu6b7wEsoPutEfl-uVk_I,640
|
| 603 |
+
pip/_vendor/resolvelib/resolvers/__pycache__/__init__.cpython-314.pyc,,
|
| 604 |
+
pip/_vendor/resolvelib/resolvers/__pycache__/abstract.cpython-314.pyc,,
|
| 605 |
+
pip/_vendor/resolvelib/resolvers/__pycache__/criterion.cpython-314.pyc,,
|
| 606 |
+
pip/_vendor/resolvelib/resolvers/__pycache__/exceptions.cpython-314.pyc,,
|
| 607 |
+
pip/_vendor/resolvelib/resolvers/__pycache__/resolution.cpython-314.pyc,,
|
| 608 |
+
pip/_vendor/resolvelib/resolvers/abstract.py,sha256=CNeQPnpAudY77nmzOkONSmAgRlzIf06X-X9mvRYODms,1543
|
| 609 |
+
pip/_vendor/resolvelib/resolvers/criterion.py,sha256=lcmZGv5sKHOnFD_RzZwvlGSj19MeA-5rCMpdf2Sgw7Y,1768
|
| 610 |
+
pip/_vendor/resolvelib/resolvers/exceptions.py,sha256=ln_jaQtgLlRUSFY627yiHG2gD7AgaXzRKaElFVh7fDQ,1768
|
| 611 |
+
pip/_vendor/resolvelib/resolvers/resolution.py,sha256=3J_zkW-sD3EY-BlNXjyln__njpyH5n0UZJT6uV7CheA,24212
|
| 612 |
+
pip/_vendor/resolvelib/structs.py,sha256=pu-EJiR2IBITr2SQeNPRa0rXhjlStfmO_GEgAhr3004,6420
|
| 613 |
+
pip/_vendor/rich/LICENSE,sha256=3u18F6QxgVgZCj6iOcyHmlpQJxzruYrnAl9I--WNyhU,1056
|
| 614 |
+
pip/_vendor/rich/__init__.py,sha256=dRxjIL-SbFVY0q3IjSMrfgBTHrm1LZDgLOygVBwiYZc,6090
|
| 615 |
+
pip/_vendor/rich/__main__.py,sha256=e_aVC-tDzarWQW9SuZMuCgBr6ODV_iDNV2Wh2xkxOlw,7896
|
| 616 |
+
pip/_vendor/rich/__pycache__/__init__.cpython-314.pyc,,
|
| 617 |
+
pip/_vendor/rich/__pycache__/__main__.cpython-314.pyc,,
|
| 618 |
+
pip/_vendor/rich/__pycache__/_cell_widths.cpython-314.pyc,,
|
| 619 |
+
pip/_vendor/rich/__pycache__/_emoji_codes.cpython-314.pyc,,
|
| 620 |
+
pip/_vendor/rich/__pycache__/_emoji_replace.cpython-314.pyc,,
|
| 621 |
+
pip/_vendor/rich/__pycache__/_export_format.cpython-314.pyc,,
|
| 622 |
+
pip/_vendor/rich/__pycache__/_extension.cpython-314.pyc,,
|
| 623 |
+
pip/_vendor/rich/__pycache__/_fileno.cpython-314.pyc,,
|
| 624 |
+
pip/_vendor/rich/__pycache__/_inspect.cpython-314.pyc,,
|
| 625 |
+
pip/_vendor/rich/__pycache__/_log_render.cpython-314.pyc,,
|
| 626 |
+
pip/_vendor/rich/__pycache__/_loop.cpython-314.pyc,,
|
| 627 |
+
pip/_vendor/rich/__pycache__/_null_file.cpython-314.pyc,,
|
| 628 |
+
pip/_vendor/rich/__pycache__/_palettes.cpython-314.pyc,,
|
| 629 |
+
pip/_vendor/rich/__pycache__/_pick.cpython-314.pyc,,
|
| 630 |
+
pip/_vendor/rich/__pycache__/_ratio.cpython-314.pyc,,
|
| 631 |
+
pip/_vendor/rich/__pycache__/_spinners.cpython-314.pyc,,
|
| 632 |
+
pip/_vendor/rich/__pycache__/_stack.cpython-314.pyc,,
|
| 633 |
+
pip/_vendor/rich/__pycache__/_timer.cpython-314.pyc,,
|
| 634 |
+
pip/_vendor/rich/__pycache__/_win32_console.cpython-314.pyc,,
|
| 635 |
+
pip/_vendor/rich/__pycache__/_windows.cpython-314.pyc,,
|
| 636 |
+
pip/_vendor/rich/__pycache__/_windows_renderer.cpython-314.pyc,,
|
| 637 |
+
pip/_vendor/rich/__pycache__/_wrap.cpython-314.pyc,,
|
| 638 |
+
pip/_vendor/rich/__pycache__/abc.cpython-314.pyc,,
|
| 639 |
+
pip/_vendor/rich/__pycache__/align.cpython-314.pyc,,
|
| 640 |
+
pip/_vendor/rich/__pycache__/ansi.cpython-314.pyc,,
|
| 641 |
+
pip/_vendor/rich/__pycache__/bar.cpython-314.pyc,,
|
| 642 |
+
pip/_vendor/rich/__pycache__/box.cpython-314.pyc,,
|
| 643 |
+
pip/_vendor/rich/__pycache__/cells.cpython-314.pyc,,
|
| 644 |
+
pip/_vendor/rich/__pycache__/color.cpython-314.pyc,,
|
| 645 |
+
pip/_vendor/rich/__pycache__/color_triplet.cpython-314.pyc,,
|
| 646 |
+
pip/_vendor/rich/__pycache__/columns.cpython-314.pyc,,
|
| 647 |
+
pip/_vendor/rich/__pycache__/console.cpython-314.pyc,,
|
| 648 |
+
pip/_vendor/rich/__pycache__/constrain.cpython-314.pyc,,
|
| 649 |
+
pip/_vendor/rich/__pycache__/containers.cpython-314.pyc,,
|
| 650 |
+
pip/_vendor/rich/__pycache__/control.cpython-314.pyc,,
|
| 651 |
+
pip/_vendor/rich/__pycache__/default_styles.cpython-314.pyc,,
|
| 652 |
+
pip/_vendor/rich/__pycache__/diagnose.cpython-314.pyc,,
|
| 653 |
+
pip/_vendor/rich/__pycache__/emoji.cpython-314.pyc,,
|
| 654 |
+
pip/_vendor/rich/__pycache__/errors.cpython-314.pyc,,
|
| 655 |
+
pip/_vendor/rich/__pycache__/file_proxy.cpython-314.pyc,,
|
| 656 |
+
pip/_vendor/rich/__pycache__/filesize.cpython-314.pyc,,
|
| 657 |
+
pip/_vendor/rich/__pycache__/highlighter.cpython-314.pyc,,
|
| 658 |
+
pip/_vendor/rich/__pycache__/json.cpython-314.pyc,,
|
| 659 |
+
pip/_vendor/rich/__pycache__/jupyter.cpython-314.pyc,,
|
| 660 |
+
pip/_vendor/rich/__pycache__/layout.cpython-314.pyc,,
|
| 661 |
+
pip/_vendor/rich/__pycache__/live.cpython-314.pyc,,
|
| 662 |
+
pip/_vendor/rich/__pycache__/live_render.cpython-314.pyc,,
|
| 663 |
+
pip/_vendor/rich/__pycache__/logging.cpython-314.pyc,,
|
| 664 |
+
pip/_vendor/rich/__pycache__/markup.cpython-314.pyc,,
|
| 665 |
+
pip/_vendor/rich/__pycache__/measure.cpython-314.pyc,,
|
| 666 |
+
pip/_vendor/rich/__pycache__/padding.cpython-314.pyc,,
|
| 667 |
+
pip/_vendor/rich/__pycache__/pager.cpython-314.pyc,,
|
| 668 |
+
pip/_vendor/rich/__pycache__/palette.cpython-314.pyc,,
|
| 669 |
+
pip/_vendor/rich/__pycache__/panel.cpython-314.pyc,,
|
| 670 |
+
pip/_vendor/rich/__pycache__/pretty.cpython-314.pyc,,
|
| 671 |
+
pip/_vendor/rich/__pycache__/progress.cpython-314.pyc,,
|
| 672 |
+
pip/_vendor/rich/__pycache__/progress_bar.cpython-314.pyc,,
|
| 673 |
+
pip/_vendor/rich/__pycache__/prompt.cpython-314.pyc,,
|
| 674 |
+
pip/_vendor/rich/__pycache__/protocol.cpython-314.pyc,,
|
| 675 |
+
pip/_vendor/rich/__pycache__/region.cpython-314.pyc,,
|
| 676 |
+
pip/_vendor/rich/__pycache__/repr.cpython-314.pyc,,
|
| 677 |
+
pip/_vendor/rich/__pycache__/rule.cpython-314.pyc,,
|
| 678 |
+
pip/_vendor/rich/__pycache__/scope.cpython-314.pyc,,
|
| 679 |
+
pip/_vendor/rich/__pycache__/screen.cpython-314.pyc,,
|
| 680 |
+
pip/_vendor/rich/__pycache__/segment.cpython-314.pyc,,
|
| 681 |
+
pip/_vendor/rich/__pycache__/spinner.cpython-314.pyc,,
|
| 682 |
+
pip/_vendor/rich/__pycache__/status.cpython-314.pyc,,
|
| 683 |
+
pip/_vendor/rich/__pycache__/style.cpython-314.pyc,,
|
| 684 |
+
pip/_vendor/rich/__pycache__/styled.cpython-314.pyc,,
|
| 685 |
+
pip/_vendor/rich/__pycache__/syntax.cpython-314.pyc,,
|
| 686 |
+
pip/_vendor/rich/__pycache__/table.cpython-314.pyc,,
|
| 687 |
+
pip/_vendor/rich/__pycache__/terminal_theme.cpython-314.pyc,,
|
| 688 |
+
pip/_vendor/rich/__pycache__/text.cpython-314.pyc,,
|
| 689 |
+
pip/_vendor/rich/__pycache__/theme.cpython-314.pyc,,
|
| 690 |
+
pip/_vendor/rich/__pycache__/themes.cpython-314.pyc,,
|
| 691 |
+
pip/_vendor/rich/__pycache__/traceback.cpython-314.pyc,,
|
| 692 |
+
pip/_vendor/rich/__pycache__/tree.cpython-314.pyc,,
|
| 693 |
+
pip/_vendor/rich/_cell_widths.py,sha256=fbmeyetEdHjzE_Vx2l1uK7tnPOhMs2X1lJfO3vsKDpA,10209
|
| 694 |
+
pip/_vendor/rich/_emoji_codes.py,sha256=hu1VL9nbVdppJrVoijVshRlcRRe_v3dju3Mmd2sKZdY,140235
|
| 695 |
+
pip/_vendor/rich/_emoji_replace.py,sha256=n-kcetsEUx2ZUmhQrfeMNc-teeGhpuSQ5F8VPBsyvDo,1064
|
| 696 |
+
pip/_vendor/rich/_export_format.py,sha256=RI08pSrm5tBSzPMvnbTqbD9WIalaOoN5d4M1RTmLq1Y,2128
|
| 697 |
+
pip/_vendor/rich/_extension.py,sha256=Xt47QacCKwYruzjDi-gOBq724JReDj9Cm9xUi5fr-34,265
|
| 698 |
+
pip/_vendor/rich/_fileno.py,sha256=HWZxP5C2ajMbHryvAQZseflVfQoGzsKOHzKGsLD8ynQ,799
|
| 699 |
+
pip/_vendor/rich/_inspect.py,sha256=ROT0PLC2GMWialWZkqJIjmYq7INRijQQkoSokWTaAiI,9656
|
| 700 |
+
pip/_vendor/rich/_log_render.py,sha256=1ByI0PA1ZpxZY3CGJOK54hjlq4X-Bz_boIjIqCd8Kns,3225
|
| 701 |
+
pip/_vendor/rich/_loop.py,sha256=hV_6CLdoPm0va22Wpw4zKqM0RYsz3TZxXj0PoS-9eDQ,1236
|
| 702 |
+
pip/_vendor/rich/_null_file.py,sha256=ADGKp1yt-k70FMKV6tnqCqecB-rSJzp-WQsD7LPL-kg,1394
|
| 703 |
+
pip/_vendor/rich/_palettes.py,sha256=cdev1JQKZ0JvlguV9ipHgznTdnvlIzUFDBb0It2PzjI,7063
|
| 704 |
+
pip/_vendor/rich/_pick.py,sha256=evDt8QN4lF5CiwrUIXlOJCntitBCOsI3ZLPEIAVRLJU,423
|
| 705 |
+
pip/_vendor/rich/_ratio.py,sha256=IOtl78sQCYZsmHyxhe45krkb68u9xVz7zFsXVJD-b2Y,5325
|
| 706 |
+
pip/_vendor/rich/_spinners.py,sha256=U2r1_g_1zSjsjiUdAESc2iAMc3i4ri_S8PYP6kQ5z1I,19919
|
| 707 |
+
pip/_vendor/rich/_stack.py,sha256=-C8OK7rxn3sIUdVwxZBBpeHhIzX0eI-VM3MemYfaXm0,351
|
| 708 |
+
pip/_vendor/rich/_timer.py,sha256=zelxbT6oPFZnNrwWPpc1ktUeAT-Vc4fuFcRZLQGLtMI,417
|
| 709 |
+
pip/_vendor/rich/_win32_console.py,sha256=BSaDRIMwBLITn_m0mTRLPqME5q-quGdSMuYMpYeYJwc,22755
|
| 710 |
+
pip/_vendor/rich/_windows.py,sha256=aBwaD_S56SbgopIvayVmpk0Y28uwY2C5Bab1wl3Bp-I,1925
|
| 711 |
+
pip/_vendor/rich/_windows_renderer.py,sha256=t74ZL3xuDCP3nmTp9pH1L5LiI2cakJuQRQleHCJerlk,2783
|
| 712 |
+
pip/_vendor/rich/_wrap.py,sha256=FlSsom5EX0LVkA3KWy34yHnCfLtqX-ZIepXKh-70rpc,3404
|
| 713 |
+
pip/_vendor/rich/abc.py,sha256=ON-E-ZqSSheZ88VrKX2M3PXpFbGEUUZPMa_Af0l-4f0,890
|
| 714 |
+
pip/_vendor/rich/align.py,sha256=dg-7uY0ukMLLlUEsBDRLva22_sQgIJD4BK0dmZHFHug,10324
|
| 715 |
+
pip/_vendor/rich/ansi.py,sha256=Avs1LHbSdcyOvDOdpELZUoULcBiYewY76eNBp6uFBhs,6921
|
| 716 |
+
pip/_vendor/rich/bar.py,sha256=ldbVHOzKJOnflVNuv1xS7g6dLX2E3wMnXkdPbpzJTcs,3263
|
| 717 |
+
pip/_vendor/rich/box.py,sha256=kmavBc_dn73L_g_8vxWSwYJD2uzBXOUFTtJOfpbczcM,10686
|
| 718 |
+
pip/_vendor/rich/cells.py,sha256=KrQkj5-LghCCpJLSNQIyAZjndc4bnEqOEmi5YuZ9UCY,5130
|
| 719 |
+
pip/_vendor/rich/color.py,sha256=3HSULVDj7qQkXUdFWv78JOiSZzfy5y1nkcYhna296V0,18211
|
| 720 |
+
pip/_vendor/rich/color_triplet.py,sha256=3lhQkdJbvWPoLDO-AnYImAWmJvV5dlgYNCVZ97ORaN4,1054
|
| 721 |
+
pip/_vendor/rich/columns.py,sha256=HUX0KcMm9dsKNi11fTbiM_h2iDtl8ySCaVcxlalEzq8,7131
|
| 722 |
+
pip/_vendor/rich/console.py,sha256=t9azZpmRMVU5cphVBZSShNsmBxd2-IAWcTTlhor-E1s,100849
|
| 723 |
+
pip/_vendor/rich/constrain.py,sha256=1VIPuC8AgtKWrcncQrjBdYqA3JVWysu6jZo1rrh7c7Q,1288
|
| 724 |
+
pip/_vendor/rich/containers.py,sha256=c_56TxcedGYqDepHBMTuZdUIijitAQgnox-Qde0Z1qo,5502
|
| 725 |
+
pip/_vendor/rich/control.py,sha256=EUTSUFLQbxY6Zmo_sdM-5Ls323vIHTBfN8TPulqeHUY,6487
|
| 726 |
+
pip/_vendor/rich/default_styles.py,sha256=khQFqqaoDs3bprMqWpHw8nO5UpG2DN6QtuTd6LzZwYc,8257
|
| 727 |
+
pip/_vendor/rich/diagnose.py,sha256=fJl1TItRn19gGwouqTg-8zPUW3YqQBqGltrfPQs1H9w,1025
|
| 728 |
+
pip/_vendor/rich/emoji.py,sha256=Wd4bQubZdSy6-PyrRQNuMHtn2VkljK9uPZPVlu2cmx0,2367
|
| 729 |
+
pip/_vendor/rich/errors.py,sha256=5pP3Kc5d4QJ_c0KFsxrfyhjiPVe7J1zOqSFbFAzcV-Y,642
|
| 730 |
+
pip/_vendor/rich/file_proxy.py,sha256=Tl9THMDZ-Pk5Wm8sI1gGg_U5DhusmxD-FZ0fUbcU0W0,1683
|
| 731 |
+
pip/_vendor/rich/filesize.py,sha256=_iz9lIpRgvW7MNSeCZnLg-HwzbP4GETg543WqD8SFs0,2484
|
| 732 |
+
pip/_vendor/rich/highlighter.py,sha256=G_sn-8DKjM1sEjLG_oc4ovkWmiUpWvj8bXi0yed2LnY,9586
|
| 733 |
+
pip/_vendor/rich/json.py,sha256=vVEoKdawoJRjAFayPwXkMBPLy7RSTs-f44wSQDR2nJ0,5031
|
| 734 |
+
pip/_vendor/rich/jupyter.py,sha256=QyoKoE_8IdCbrtiSHp9TsTSNyTHY0FO5whE7jOTd9UE,3252
|
| 735 |
+
pip/_vendor/rich/layout.py,sha256=ajkSFAtEVv9EFTcFs-w4uZfft7nEXhNzL7ZVdgrT5rI,14004
|
| 736 |
+
pip/_vendor/rich/live.py,sha256=tF3ukAAJZ_N2ZbGclqZ-iwLoIoZ8f0HHUz79jAyJqj8,15180
|
| 737 |
+
pip/_vendor/rich/live_render.py,sha256=It_39YdzrBm8o3LL0kaGorPFg-BfZWAcrBjLjFokbx4,3521
|
| 738 |
+
pip/_vendor/rich/logging.py,sha256=5KaPPSMP9FxcXPBcKM4cGd_zW78PMgf-YbMVnvfSw0o,12468
|
| 739 |
+
pip/_vendor/rich/markup.py,sha256=3euGKP5s41NCQwaSjTnJxus5iZMHjxpIM0W6fCxra38,8451
|
| 740 |
+
pip/_vendor/rich/measure.py,sha256=HmrIJX8sWRTHbgh8MxEay_83VkqNW_70s8aKP5ZcYI8,5305
|
| 741 |
+
pip/_vendor/rich/padding.py,sha256=KVEI3tOwo9sgK1YNSuH__M1_jUWmLZwRVV_KmOtVzyM,4908
|
| 742 |
+
pip/_vendor/rich/pager.py,sha256=SO_ETBFKbg3n_AgOzXm41Sv36YxXAyI3_R-KOY2_uSc,828
|
| 743 |
+
pip/_vendor/rich/palette.py,sha256=lInvR1ODDT2f3UZMfL1grq7dY_pDdKHw4bdUgOGaM4Y,3396
|
| 744 |
+
pip/_vendor/rich/panel.py,sha256=9sQl00hPIqH5G2gALQo4NepFwpP0k9wT-s_gOms5pIc,11157
|
| 745 |
+
pip/_vendor/rich/pretty.py,sha256=gy3S72u4FRg2ytoo7N1ZDWDIvB4unbzd5iUGdgm-8fc,36391
|
| 746 |
+
pip/_vendor/rich/progress.py,sha256=CUc2lkU-X59mVdGfjMCBkZeiGPL3uxdONjhNJF2T7wY,60408
|
| 747 |
+
pip/_vendor/rich/progress_bar.py,sha256=mZTPpJUwcfcdgQCTTz3kyY-fc79ddLwtx6Ghhxfo064,8162
|
| 748 |
+
pip/_vendor/rich/prompt.py,sha256=l0RhQU-0UVTV9e08xW1BbIj0Jq2IXyChX4lC0lFNzt4,12447
|
| 749 |
+
pip/_vendor/rich/protocol.py,sha256=5hHHDDNHckdk8iWH5zEbi-zuIVSF5hbU2jIo47R7lTE,1391
|
| 750 |
+
pip/_vendor/rich/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 751 |
+
pip/_vendor/rich/region.py,sha256=rNT9xZrVZTYIXZC0NYn41CJQwYNbR-KecPOxTgQvB8Y,166
|
| 752 |
+
pip/_vendor/rich/repr.py,sha256=5MZJZmONgC6kud-QW-_m1okXwL2aR6u6y-pUcUCJz28,4431
|
| 753 |
+
pip/_vendor/rich/rule.py,sha256=0fNaS_aERa3UMRc3T5WMpN_sumtDxfaor2y3of1ftBk,4602
|
| 754 |
+
pip/_vendor/rich/scope.py,sha256=TMUU8qo17thyqQCPqjDLYpg_UU1k5qVd-WwiJvnJVas,2843
|
| 755 |
+
pip/_vendor/rich/screen.py,sha256=YoeReESUhx74grqb0mSSb9lghhysWmFHYhsbMVQjXO8,1591
|
| 756 |
+
pip/_vendor/rich/segment.py,sha256=otnKeKGEV-WRlQVosfJVeFDcDxAKHpvJ_hLzSu5lumM,24743
|
| 757 |
+
pip/_vendor/rich/spinner.py,sha256=onIhpKlljRHppTZasxO8kXgtYyCHUkpSgKglRJ3o51g,4214
|
| 758 |
+
pip/_vendor/rich/status.py,sha256=kkPph3YeAZBo-X-4wPp8gTqZyU466NLwZBA4PZTTewo,4424
|
| 759 |
+
pip/_vendor/rich/style.py,sha256=W9Ccy8Py8lNICtlfcp-ryzMTuQaGxAU3av7-g5fHu0s,26990
|
| 760 |
+
pip/_vendor/rich/styled.py,sha256=eZNnzGrI4ki_54pgY3Oj0T-x3lxdXTYh4_ryDB24wBU,1258
|
| 761 |
+
pip/_vendor/rich/syntax.py,sha256=eDKIRwl--eZ0Lwo2da2RRtfutXGavrJO61Cl5OkS59U,36371
|
| 762 |
+
pip/_vendor/rich/table.py,sha256=ZmT7V7MMCOYKw7TGY9SZLyYDf6JdM-WVf07FdVuVhTI,40049
|
| 763 |
+
pip/_vendor/rich/terminal_theme.py,sha256=1j5-ufJfnvlAo5Qsi_ACZiXDmwMXzqgmFByObT9-yJY,3370
|
| 764 |
+
pip/_vendor/rich/text.py,sha256=AO7JPCz6-gaN1thVLXMBntEmDPVYFgFNG1oM61_sanU,47552
|
| 765 |
+
pip/_vendor/rich/theme.py,sha256=oNyhXhGagtDlbDye3tVu3esWOWk0vNkuxFw-_unlaK0,3771
|
| 766 |
+
pip/_vendor/rich/themes.py,sha256=0xgTLozfabebYtcJtDdC5QkX5IVUEaviqDUJJh4YVFk,102
|
| 767 |
+
pip/_vendor/rich/traceback.py,sha256=c0WmB_L04_UfZbLaoH982_U_s7eosxKMUiAVmDPdRYU,35861
|
| 768 |
+
pip/_vendor/rich/tree.py,sha256=yWnQ6rAvRGJ3qZGqBrxS2SW2TKBTNrP0SdY8QxOFPuw,9451
|
| 769 |
+
pip/_vendor/tomli/LICENSE,sha256=uAgWsNUwuKzLTCIReDeQmEpuO2GSLCte6S8zcqsnQv4,1072
|
| 770 |
+
pip/_vendor/tomli/__init__.py,sha256=qzEGl8QHhqgQPCuLzfKyPIuH3KKPspf-UVPbZ0ppBD4,314
|
| 771 |
+
pip/_vendor/tomli/__pycache__/__init__.cpython-314.pyc,,
|
| 772 |
+
pip/_vendor/tomli/__pycache__/_parser.cpython-314.pyc,,
|
| 773 |
+
pip/_vendor/tomli/__pycache__/_re.cpython-314.pyc,,
|
| 774 |
+
pip/_vendor/tomli/__pycache__/_types.cpython-314.pyc,,
|
| 775 |
+
pip/_vendor/tomli/_parser.py,sha256=bO8tUYmnyA2K6m4TnbQbfUqmIFcDv7mG1KuC9gqRVmA,25778
|
| 776 |
+
pip/_vendor/tomli/_re.py,sha256=n8-Io8ZK1U-F6jzlg7Pabc40hLFJsawE2uNLKH9w7iU,3235
|
| 777 |
+
pip/_vendor/tomli/_types.py,sha256=-GTG2VUqkpxwMqzmVO4F7ybKddIbAnuAHXfmWQcTi3Q,254
|
| 778 |
+
pip/_vendor/tomli/py.typed,sha256=8PjyZ1aVoQpRVvt71muvuq5qE-jTFZkK-GLHkhdebmc,26
|
| 779 |
+
pip/_vendor/tomli_w/LICENSE,sha256=uAgWsNUwuKzLTCIReDeQmEpuO2GSLCte6S8zcqsnQv4,1072
|
| 780 |
+
pip/_vendor/tomli_w/__init__.py,sha256=0F8yDtXx3Uunhm874KrAcP76srsM98y7WyHQwCulZbo,169
|
| 781 |
+
pip/_vendor/tomli_w/__pycache__/__init__.cpython-314.pyc,,
|
| 782 |
+
pip/_vendor/tomli_w/__pycache__/_writer.cpython-314.pyc,,
|
| 783 |
+
pip/_vendor/tomli_w/_writer.py,sha256=dsifFS2xYf1i76mmRyfz9y125xC7Z_HQ845ZKhJsYXs,6961
|
| 784 |
+
pip/_vendor/tomli_w/py.typed,sha256=8PjyZ1aVoQpRVvt71muvuq5qE-jTFZkK-GLHkhdebmc,26
|
| 785 |
+
pip/_vendor/truststore/LICENSE,sha256=M757fo-k_Rmxdg4ajtimaL2rhSyRtpLdQUJLy3Jan8o,1086
|
| 786 |
+
pip/_vendor/truststore/__init__.py,sha256=Bu7kqkmpunhLsj5xCu8gT_25ktoPXcSnwe8VHk1GmJo,1320
|
| 787 |
+
pip/_vendor/truststore/__pycache__/__init__.cpython-314.pyc,,
|
| 788 |
+
pip/_vendor/truststore/__pycache__/_api.cpython-314.pyc,,
|
| 789 |
+
pip/_vendor/truststore/__pycache__/_macos.cpython-314.pyc,,
|
| 790 |
+
pip/_vendor/truststore/__pycache__/_openssl.cpython-314.pyc,,
|
| 791 |
+
pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-314.pyc,,
|
| 792 |
+
pip/_vendor/truststore/__pycache__/_windows.cpython-314.pyc,,
|
| 793 |
+
pip/_vendor/truststore/_api.py,sha256=CYJCV5BTfttZYfqY3movdMBE-8az7uhET_LYbKT2Nn4,11413
|
| 794 |
+
pip/_vendor/truststore/_macos.py,sha256=nZlLkOmszUE0g6ryRwBVGY5COzPyudcsiJtDWarM5LQ,20503
|
| 795 |
+
pip/_vendor/truststore/_openssl.py,sha256=zB-SQvJydks7tQ0yIwrP6GD3fQNSSaPiq7zw4yF5T40,2412
|
| 796 |
+
pip/_vendor/truststore/_ssl_constants.py,sha256=NUD4fVKdSD02ri7-db0tnO0VqLP9aHuzmStcW7tAl08,1130
|
| 797 |
+
pip/_vendor/truststore/_windows.py,sha256=rAHyKYD8M7t-bXfG8VgOVa3TpfhVhbt4rZQlO45YuP8,17993
|
| 798 |
+
pip/_vendor/truststore/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 799 |
+
pip/_vendor/urllib3/LICENSE.txt,sha256=w3vxhuJ8-dvpYZ5V7f486nswCRzrPaY8fay-Dm13kHs,1115
|
| 800 |
+
pip/_vendor/urllib3/__init__.py,sha256=iXLcYiJySn0GNbWOOZDDApgBL1JgP44EZ8i1760S8Mc,3333
|
| 801 |
+
pip/_vendor/urllib3/__pycache__/__init__.cpython-314.pyc,,
|
| 802 |
+
pip/_vendor/urllib3/__pycache__/_collections.cpython-314.pyc,,
|
| 803 |
+
pip/_vendor/urllib3/__pycache__/_version.cpython-314.pyc,,
|
| 804 |
+
pip/_vendor/urllib3/__pycache__/connection.cpython-314.pyc,,
|
| 805 |
+
pip/_vendor/urllib3/__pycache__/connectionpool.cpython-314.pyc,,
|
| 806 |
+
pip/_vendor/urllib3/__pycache__/exceptions.cpython-314.pyc,,
|
| 807 |
+
pip/_vendor/urllib3/__pycache__/fields.cpython-314.pyc,,
|
| 808 |
+
pip/_vendor/urllib3/__pycache__/filepost.cpython-314.pyc,,
|
| 809 |
+
pip/_vendor/urllib3/__pycache__/poolmanager.cpython-314.pyc,,
|
| 810 |
+
pip/_vendor/urllib3/__pycache__/request.cpython-314.pyc,,
|
| 811 |
+
pip/_vendor/urllib3/__pycache__/response.cpython-314.pyc,,
|
| 812 |
+
pip/_vendor/urllib3/_collections.py,sha256=pyASJJhW7wdOpqJj9QJA8FyGRfr8E8uUUhqUvhF0728,11372
|
| 813 |
+
pip/_vendor/urllib3/_version.py,sha256=t9wGB6ooOTXXgiY66K1m6BZS1CJyXHAU8EoWDTe6Shk,64
|
| 814 |
+
pip/_vendor/urllib3/connection.py,sha256=ttIA909BrbTUzwkqEe_TzZVh4JOOj7g61Ysei2mrwGg,20314
|
| 815 |
+
pip/_vendor/urllib3/connectionpool.py,sha256=e2eiAwNbFNCKxj4bwDKNK-w7HIdSz3OmMxU_TIt-evQ,40408
|
| 816 |
+
pip/_vendor/urllib3/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 817 |
+
pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-314.pyc,,
|
| 818 |
+
pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-314.pyc,,
|
| 819 |
+
pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-314.pyc,,
|
| 820 |
+
pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-314.pyc,,
|
| 821 |
+
pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-314.pyc,,
|
| 822 |
+
pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-314.pyc,,
|
| 823 |
+
pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-314.pyc,,
|
| 824 |
+
pip/_vendor/urllib3/contrib/_appengine_environ.py,sha256=bDbyOEhW2CKLJcQqAKAyrEHN-aklsyHFKq6vF8ZFsmk,957
|
| 825 |
+
pip/_vendor/urllib3/contrib/_securetransport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 826 |
+
pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-314.pyc,,
|
| 827 |
+
pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-314.pyc,,
|
| 828 |
+
pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-314.pyc,,
|
| 829 |
+
pip/_vendor/urllib3/contrib/_securetransport/bindings.py,sha256=4Xk64qIkPBt09A5q-RIFUuDhNc9mXilVapm7WnYnzRw,17632
|
| 830 |
+
pip/_vendor/urllib3/contrib/_securetransport/low_level.py,sha256=B2JBB2_NRP02xK6DCa1Pa9IuxrPwxzDzZbixQkb7U9M,13922
|
| 831 |
+
pip/_vendor/urllib3/contrib/appengine.py,sha256=VR68eAVE137lxTgjBDwCna5UiBZTOKa01Aj_-5BaCz4,11036
|
| 832 |
+
pip/_vendor/urllib3/contrib/ntlmpool.py,sha256=NlfkW7WMdW8ziqudopjHoW299og1BTWi0IeIibquFwk,4528
|
| 833 |
+
pip/_vendor/urllib3/contrib/pyopenssl.py,sha256=hDJh4MhyY_p-oKlFcYcQaVQRDv6GMmBGuW9yjxyeejM,17081
|
| 834 |
+
pip/_vendor/urllib3/contrib/securetransport.py,sha256=Fef1IIUUFHqpevzXiDPbIGkDKchY2FVKeVeLGR1Qq3g,34446
|
| 835 |
+
pip/_vendor/urllib3/contrib/socks.py,sha256=aRi9eWXo9ZEb95XUxef4Z21CFlnnjbEiAo9HOseoMt4,7097
|
| 836 |
+
pip/_vendor/urllib3/exceptions.py,sha256=0Mnno3KHTNfXRfY7638NufOPkUb6mXOm-Lqj-4x2w8A,8217
|
| 837 |
+
pip/_vendor/urllib3/fields.py,sha256=kvLDCg_JmH1lLjUUEY_FLS8UhY7hBvDPuVETbY8mdrM,8579
|
| 838 |
+
pip/_vendor/urllib3/filepost.py,sha256=5b_qqgRHVlL7uLtdAYBzBh-GHmU5AfJVt_2N0XS3PeY,2440
|
| 839 |
+
pip/_vendor/urllib3/packages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 840 |
+
pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-314.pyc,,
|
| 841 |
+
pip/_vendor/urllib3/packages/__pycache__/six.cpython-314.pyc,,
|
| 842 |
+
pip/_vendor/urllib3/packages/backports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
| 843 |
+
pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-314.pyc,,
|
| 844 |
+
pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-314.pyc,,
|
| 845 |
+
pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-314.pyc,,
|
| 846 |
+
pip/_vendor/urllib3/packages/backports/makefile.py,sha256=nbzt3i0agPVP07jqqgjhaYjMmuAi_W5E0EywZivVO8E,1417
|
| 847 |
+
pip/_vendor/urllib3/packages/backports/weakref_finalize.py,sha256=tRCal5OAhNSRyb0DhHp-38AtIlCsRP8BxF3NX-6rqIA,5343
|
| 848 |
+
pip/_vendor/urllib3/packages/six.py,sha256=b9LM0wBXv7E7SrbCjAm4wwN-hrH-iNxv18LgWNMMKPo,34665
|
| 849 |
+
pip/_vendor/urllib3/poolmanager.py,sha256=aWyhXRtNO4JUnCSVVqKTKQd8EXTvUm1VN9pgs2bcONo,19990
|
| 850 |
+
pip/_vendor/urllib3/request.py,sha256=YTWFNr7QIwh7E1W9dde9LM77v2VWTJ5V78XuTTw7D1A,6691
|
| 851 |
+
pip/_vendor/urllib3/response.py,sha256=fmDJAFkG71uFTn-sVSTh2Iw0WmcXQYqkbRjihvwBjU8,30641
|
| 852 |
+
pip/_vendor/urllib3/util/__init__.py,sha256=JEmSmmqqLyaw8P51gUImZh8Gwg9i1zSe-DoqAitn2nc,1155
|
| 853 |
+
pip/_vendor/urllib3/util/__pycache__/__init__.cpython-314.pyc,,
|
| 854 |
+
pip/_vendor/urllib3/util/__pycache__/connection.cpython-314.pyc,,
|
| 855 |
+
pip/_vendor/urllib3/util/__pycache__/proxy.cpython-314.pyc,,
|
| 856 |
+
pip/_vendor/urllib3/util/__pycache__/queue.cpython-314.pyc,,
|
| 857 |
+
pip/_vendor/urllib3/util/__pycache__/request.cpython-314.pyc,,
|
| 858 |
+
pip/_vendor/urllib3/util/__pycache__/response.cpython-314.pyc,,
|
| 859 |
+
pip/_vendor/urllib3/util/__pycache__/retry.cpython-314.pyc,,
|
| 860 |
+
pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-314.pyc,,
|
| 861 |
+
pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-314.pyc,,
|
| 862 |
+
pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-314.pyc,,
|
| 863 |
+
pip/_vendor/urllib3/util/__pycache__/timeout.cpython-314.pyc,,
|
| 864 |
+
pip/_vendor/urllib3/util/__pycache__/url.cpython-314.pyc,,
|
| 865 |
+
pip/_vendor/urllib3/util/__pycache__/wait.cpython-314.pyc,,
|
| 866 |
+
pip/_vendor/urllib3/util/connection.py,sha256=5Lx2B1PW29KxBn2T0xkN1CBgRBa3gGVJBKoQoRogEVk,4901
|
| 867 |
+
pip/_vendor/urllib3/util/proxy.py,sha256=zUvPPCJrp6dOF0N4GAVbOcl6o-4uXKSrGiTkkr5vUS4,1605
|
| 868 |
+
pip/_vendor/urllib3/util/queue.py,sha256=nRgX8_eX-_VkvxoX096QWoz8Ps0QHUAExILCY_7PncM,498
|
| 869 |
+
pip/_vendor/urllib3/util/request.py,sha256=C0OUt2tcU6LRiQJ7YYNP9GvPrSvl7ziIBekQ-5nlBZk,3997
|
| 870 |
+
pip/_vendor/urllib3/util/response.py,sha256=GJpg3Egi9qaJXRwBh5wv-MNuRWan5BIu40oReoxWP28,3510
|
| 871 |
+
pip/_vendor/urllib3/util/retry.py,sha256=6ENvOZ8PBDzh8kgixpql9lIrb2dxH-k7ZmBanJF2Ng4,22050
|
| 872 |
+
pip/_vendor/urllib3/util/ssl_.py,sha256=QDuuTxPSCj1rYtZ4xpD7Ux-r20TD50aHyqKyhQ7Bq4A,17460
|
| 873 |
+
pip/_vendor/urllib3/util/ssl_match_hostname.py,sha256=Ir4cZVEjmAk8gUAIHWSi7wtOO83UCYABY2xFD1Ql_WA,5758
|
| 874 |
+
pip/_vendor/urllib3/util/ssltransport.py,sha256=NA-u5rMTrDFDFC8QzRKUEKMG0561hOD4qBTr3Z4pv6E,6895
|
| 875 |
+
pip/_vendor/urllib3/util/timeout.py,sha256=cwq4dMk87mJHSBktK1miYJ-85G-3T3RmT20v7SFCpno,10168
|
| 876 |
+
pip/_vendor/urllib3/util/url.py,sha256=lCAE7M5myA8EDdW0sJuyyZhVB9K_j38ljWhHAnFaWoE,14296
|
| 877 |
+
pip/_vendor/urllib3/util/wait.py,sha256=fOX0_faozG2P7iVojQoE1mbydweNyTcm-hXEfFrTtLI,5403
|
| 878 |
+
pip/_vendor/vendor.txt,sha256=f2msFLZ-chXWIZSKW31NLGyMWmt_-Vfy7sY5dHYgmnw,342
|
| 879 |
+
pip/py.typed,sha256=EBVvvPRTn_eIpz5e5QztSCdrMX7Qwd7VP93RSoIlZ2I,286
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/REQUESTED
ADDED
|
File without changes
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/WHEEL
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Wheel-Version: 1.0
|
| 2 |
+
Generator: flit 3.12.0
|
| 3 |
+
Root-Is-Purelib: true
|
| 4 |
+
Tag: py3-none-any
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/direct_url.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"dir_info": {}, "url": "file:///home/task_177071101768311/croot/pip_1770711076895/work"}
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/entry_points.txt
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[console_scripts]
|
| 2 |
+
pip=pip._internal.cli.main:main
|
| 3 |
+
pip3=pip._internal.cli.main:main
|
| 4 |
+
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/AUTHORS.txt
ADDED
|
@@ -0,0 +1,860 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@Switch01
|
| 2 |
+
A_Rog
|
| 3 |
+
Aakanksha Agrawal
|
| 4 |
+
Aarni Koskela
|
| 5 |
+
Abhinav Sagar
|
| 6 |
+
ABHYUDAY PRATAP SINGH
|
| 7 |
+
abs51295
|
| 8 |
+
AceGentile
|
| 9 |
+
Adam Chainz
|
| 10 |
+
Adam Tse
|
| 11 |
+
Adam Turner
|
| 12 |
+
Adam Wentz
|
| 13 |
+
admin
|
| 14 |
+
Adolfo Ochagavía
|
| 15 |
+
Adrien Morison
|
| 16 |
+
Agus
|
| 17 |
+
ahayrapetyan
|
| 18 |
+
Ahilya
|
| 19 |
+
AinsworthK
|
| 20 |
+
Akash Srivastava
|
| 21 |
+
Alan Yee
|
| 22 |
+
Albert Tugushev
|
| 23 |
+
Albert-Guan
|
| 24 |
+
albertg
|
| 25 |
+
Alberto Sottile
|
| 26 |
+
Aleks Bunin
|
| 27 |
+
Ales Erjavec
|
| 28 |
+
Alessandro Molina
|
| 29 |
+
Alethea Flowers
|
| 30 |
+
Alex Gaynor
|
| 31 |
+
Alex Grönholm
|
| 32 |
+
Alex Hedges
|
| 33 |
+
Alex Loosley
|
| 34 |
+
Alex Morega
|
| 35 |
+
Alex Stachowiak
|
| 36 |
+
Alexander Regueiro
|
| 37 |
+
Alexander Shtyrov
|
| 38 |
+
Alexandre Conrad
|
| 39 |
+
Alexey Popravka
|
| 40 |
+
Aleš Erjavec
|
| 41 |
+
Alli
|
| 42 |
+
Aman
|
| 43 |
+
Ami Fischman
|
| 44 |
+
Ananya Maiti
|
| 45 |
+
Anatoly Techtonik
|
| 46 |
+
Anders Kaseorg
|
| 47 |
+
Andre Aguiar
|
| 48 |
+
Andreas Lutro
|
| 49 |
+
Andrei Geacar
|
| 50 |
+
Andrew Gaul
|
| 51 |
+
Andrew Shymanel
|
| 52 |
+
Andrey Bienkowski
|
| 53 |
+
Andrey Bulgakov
|
| 54 |
+
Andrés Delfino
|
| 55 |
+
Andy Freeland
|
| 56 |
+
Andy Kluger
|
| 57 |
+
Ani Hayrapetyan
|
| 58 |
+
Aniruddha Basak
|
| 59 |
+
Anish Tambe
|
| 60 |
+
Anrs Hu
|
| 61 |
+
Anthony Sottile
|
| 62 |
+
Antoine Lambert
|
| 63 |
+
Antoine Musso
|
| 64 |
+
Anton Ovchinnikov
|
| 65 |
+
Anton Patrushev
|
| 66 |
+
Anton Zelenov
|
| 67 |
+
Antonio Alvarado Hernandez
|
| 68 |
+
Antony Lee
|
| 69 |
+
Antti Kaihola
|
| 70 |
+
Anubhav Patel
|
| 71 |
+
Anudit Nagar
|
| 72 |
+
Anuj Godase
|
| 73 |
+
AQNOUCH Mohammed
|
| 74 |
+
AraHaan
|
| 75 |
+
arena
|
| 76 |
+
arenasys
|
| 77 |
+
Arindam Choudhury
|
| 78 |
+
Armin Ronacher
|
| 79 |
+
Arnon Yaari
|
| 80 |
+
Artem
|
| 81 |
+
Arun Babu Neelicattu
|
| 82 |
+
Ashley Manton
|
| 83 |
+
Ashwin Ramaswami
|
| 84 |
+
atse
|
| 85 |
+
Atsushi Odagiri
|
| 86 |
+
Avinash Karhana
|
| 87 |
+
Avner Cohen
|
| 88 |
+
Awit (Ah-Wit) Ghirmai
|
| 89 |
+
Baptiste Mispelon
|
| 90 |
+
Barney Gale
|
| 91 |
+
barneygale
|
| 92 |
+
Bartek Ogryczak
|
| 93 |
+
Bastian Venthur
|
| 94 |
+
Ben Bodenmiller
|
| 95 |
+
Ben Darnell
|
| 96 |
+
Ben Hoyt
|
| 97 |
+
Ben Mares
|
| 98 |
+
Ben Rosser
|
| 99 |
+
Bence Nagy
|
| 100 |
+
Benjamin Peterson
|
| 101 |
+
Benjamin VanEvery
|
| 102 |
+
Benoit Pierre
|
| 103 |
+
Berker Peksag
|
| 104 |
+
Bernard
|
| 105 |
+
Bernard Tyers
|
| 106 |
+
Bernardo B. Marques
|
| 107 |
+
Bernhard M. Wiedemann
|
| 108 |
+
Bertil Hatt
|
| 109 |
+
Bhavam Vidyarthi
|
| 110 |
+
Blazej Michalik
|
| 111 |
+
Bogdan Opanchuk
|
| 112 |
+
BorisZZZ
|
| 113 |
+
Brad Erickson
|
| 114 |
+
Bradley Ayers
|
| 115 |
+
Bradley Reynolds
|
| 116 |
+
Branch Vincent
|
| 117 |
+
Brandon L. Reiss
|
| 118 |
+
Brandt Bucher
|
| 119 |
+
Brannon Dorsey
|
| 120 |
+
Brett Randall
|
| 121 |
+
Brett Rosen
|
| 122 |
+
Brian Cristante
|
| 123 |
+
Brian Rosner
|
| 124 |
+
briantracy
|
| 125 |
+
BrownTruck
|
| 126 |
+
Bruno Oliveira
|
| 127 |
+
Bruno Renié
|
| 128 |
+
Bruno S
|
| 129 |
+
Bstrdsmkr
|
| 130 |
+
Buck Golemon
|
| 131 |
+
burrows
|
| 132 |
+
Bussonnier Matthias
|
| 133 |
+
bwoodsend
|
| 134 |
+
c22
|
| 135 |
+
Caleb Brown
|
| 136 |
+
Caleb Martinez
|
| 137 |
+
Calvin Smith
|
| 138 |
+
Carl Meyer
|
| 139 |
+
Carlos Liam
|
| 140 |
+
Carol Willing
|
| 141 |
+
Carter Thayer
|
| 142 |
+
Cass
|
| 143 |
+
Chandrasekhar Atina
|
| 144 |
+
Charlie Marsh
|
| 145 |
+
charwick
|
| 146 |
+
Chih-Hsuan Yen
|
| 147 |
+
Chris Brinker
|
| 148 |
+
Chris Hunt
|
| 149 |
+
Chris Jerdonek
|
| 150 |
+
Chris Kuehl
|
| 151 |
+
Chris Markiewicz
|
| 152 |
+
Chris McDonough
|
| 153 |
+
Chris Pawley
|
| 154 |
+
Chris Pryer
|
| 155 |
+
Chris Wolfe
|
| 156 |
+
Christian Clauss
|
| 157 |
+
Christian Heimes
|
| 158 |
+
Christian Oudard
|
| 159 |
+
Christoph Reiter
|
| 160 |
+
Christopher Hunt
|
| 161 |
+
Christopher Snyder
|
| 162 |
+
chrysle
|
| 163 |
+
cjc7373
|
| 164 |
+
Clark Boylan
|
| 165 |
+
Claudio Jolowicz
|
| 166 |
+
Clay McClure
|
| 167 |
+
Cody
|
| 168 |
+
Cody Soyland
|
| 169 |
+
Colin Watson
|
| 170 |
+
Collin Anderson
|
| 171 |
+
Connor Osborn
|
| 172 |
+
Cooper Lees
|
| 173 |
+
Cooper Ry Lees
|
| 174 |
+
Cory Benfield
|
| 175 |
+
Cory Wright
|
| 176 |
+
Craig Kerstiens
|
| 177 |
+
Cristian Sorinel
|
| 178 |
+
Cristina
|
| 179 |
+
Cristina Muñoz
|
| 180 |
+
ctg123
|
| 181 |
+
Curtis Doty
|
| 182 |
+
cytolentino
|
| 183 |
+
Daan De Meyer
|
| 184 |
+
Dale
|
| 185 |
+
Damian
|
| 186 |
+
Damian Quiroga
|
| 187 |
+
Damian Shaw
|
| 188 |
+
Dan Black
|
| 189 |
+
Dan Savilonis
|
| 190 |
+
Dan Sully
|
| 191 |
+
Dane Hillard
|
| 192 |
+
daniel
|
| 193 |
+
Daniel Collins
|
| 194 |
+
Daniel Hahler
|
| 195 |
+
Daniel Hollas
|
| 196 |
+
Daniel Holth
|
| 197 |
+
Daniel Jost
|
| 198 |
+
Daniel Katz
|
| 199 |
+
Daniel Shaulov
|
| 200 |
+
Daniele Esposti
|
| 201 |
+
Daniele Nicolodi
|
| 202 |
+
Daniele Procida
|
| 203 |
+
Daniil Konovalenko
|
| 204 |
+
Danny Hermes
|
| 205 |
+
Danny McClanahan
|
| 206 |
+
Darren Kavanagh
|
| 207 |
+
Dav Clark
|
| 208 |
+
Dave Abrahams
|
| 209 |
+
Dave Jones
|
| 210 |
+
David Aguilar
|
| 211 |
+
David Black
|
| 212 |
+
David Bordeynik
|
| 213 |
+
David Caro
|
| 214 |
+
David D Lowe
|
| 215 |
+
David Evans
|
| 216 |
+
David Hewitt
|
| 217 |
+
David Linke
|
| 218 |
+
David Poggi
|
| 219 |
+
David Poznik
|
| 220 |
+
David Pursehouse
|
| 221 |
+
David Runge
|
| 222 |
+
David Tucker
|
| 223 |
+
David Wales
|
| 224 |
+
Davidovich
|
| 225 |
+
ddelange
|
| 226 |
+
Deepak Sharma
|
| 227 |
+
Deepyaman Datta
|
| 228 |
+
Denis Roussel (ACSONE)
|
| 229 |
+
Denise Yu
|
| 230 |
+
dependabot[bot]
|
| 231 |
+
derwolfe
|
| 232 |
+
Desetude
|
| 233 |
+
developer
|
| 234 |
+
Devesh Kumar
|
| 235 |
+
Devesh Kumar Singh
|
| 236 |
+
devsagul
|
| 237 |
+
Diego Caraballo
|
| 238 |
+
Diego Ramirez
|
| 239 |
+
DiegoCaraballo
|
| 240 |
+
Dimitri Merejkowsky
|
| 241 |
+
Dimitri Papadopoulos
|
| 242 |
+
Dimitri Papadopoulos Orfanos
|
| 243 |
+
Dirk Stolle
|
| 244 |
+
dkjsone
|
| 245 |
+
Dmitry Gladkov
|
| 246 |
+
Dmitry Volodin
|
| 247 |
+
Domen Kožar
|
| 248 |
+
Dominic Davis-Foster
|
| 249 |
+
Donald Stufft
|
| 250 |
+
Dongweiming
|
| 251 |
+
doron zarhi
|
| 252 |
+
Dos Moonen
|
| 253 |
+
Douglas Thor
|
| 254 |
+
DrFeathers
|
| 255 |
+
Dustin Ingram
|
| 256 |
+
Dustin Rodrigues
|
| 257 |
+
Dwayne Bailey
|
| 258 |
+
Ed Morley
|
| 259 |
+
Edgar Ramírez
|
| 260 |
+
Edgar Ramírez Mondragón
|
| 261 |
+
Ee Durbin
|
| 262 |
+
Efflam Lemaillet
|
| 263 |
+
efflamlemaillet
|
| 264 |
+
Eitan Adler
|
| 265 |
+
ekristina
|
| 266 |
+
elainechan
|
| 267 |
+
Eli Schwartz
|
| 268 |
+
Elisha Hollander
|
| 269 |
+
Ellen Marie Dash
|
| 270 |
+
Emil Burzo
|
| 271 |
+
Emil Styrke
|
| 272 |
+
Emmanuel Arias
|
| 273 |
+
Endoh Takanao
|
| 274 |
+
enoch
|
| 275 |
+
Erdinc Mutlu
|
| 276 |
+
Eric Cousineau
|
| 277 |
+
Eric Gillingham
|
| 278 |
+
Eric Hanchrow
|
| 279 |
+
Eric Hopper
|
| 280 |
+
Erik M. Bray
|
| 281 |
+
Erik Rose
|
| 282 |
+
Erwin Janssen
|
| 283 |
+
Eugene Vereshchagin
|
| 284 |
+
everdimension
|
| 285 |
+
Federico
|
| 286 |
+
Felipe Peter
|
| 287 |
+
Felix Yan
|
| 288 |
+
fiber-space
|
| 289 |
+
Filip Kokosiński
|
| 290 |
+
Filipe Laíns
|
| 291 |
+
Finn Womack
|
| 292 |
+
finnagin
|
| 293 |
+
Flavio Amurrio
|
| 294 |
+
Florian Briand
|
| 295 |
+
Florian Rathgeber
|
| 296 |
+
Francesco
|
| 297 |
+
Francesco Montesano
|
| 298 |
+
Fredrik Orderud
|
| 299 |
+
Fredrik Roubert
|
| 300 |
+
Frost Ming
|
| 301 |
+
Gabriel Curio
|
| 302 |
+
Gabriel de Perthuis
|
| 303 |
+
Garry Polley
|
| 304 |
+
gavin
|
| 305 |
+
gdanielson
|
| 306 |
+
Gene Wood
|
| 307 |
+
Geoffrey Sneddon
|
| 308 |
+
George Margaritis
|
| 309 |
+
George Song
|
| 310 |
+
Georgi Valkov
|
| 311 |
+
Georgy Pchelkin
|
| 312 |
+
ghost
|
| 313 |
+
Giftlin Rajaiah
|
| 314 |
+
gizmoguy1
|
| 315 |
+
gkdoc
|
| 316 |
+
Godefroid Chapelle
|
| 317 |
+
Gopinath M
|
| 318 |
+
GOTO Hayato
|
| 319 |
+
gousaiyang
|
| 320 |
+
gpiks
|
| 321 |
+
Greg Roodt
|
| 322 |
+
Greg Ward
|
| 323 |
+
Guido Diepen
|
| 324 |
+
Guilherme Espada
|
| 325 |
+
Guillaume Seguin
|
| 326 |
+
gutsytechster
|
| 327 |
+
Guy Rozendorn
|
| 328 |
+
Guy Tuval
|
| 329 |
+
gzpan123
|
| 330 |
+
Hanjun Kim
|
| 331 |
+
Hari Charan
|
| 332 |
+
Harsh Vardhan
|
| 333 |
+
Harsha Sai
|
| 334 |
+
harupy
|
| 335 |
+
Harutaka Kawamura
|
| 336 |
+
Hasan-8326
|
| 337 |
+
hauntsaninja
|
| 338 |
+
Henrich Hartzer
|
| 339 |
+
Henry Schreiner
|
| 340 |
+
Herbert Pfennig
|
| 341 |
+
Holly Stotelmyer
|
| 342 |
+
Honnix
|
| 343 |
+
Hsiaoming Yang
|
| 344 |
+
Hugo Lopes Tavares
|
| 345 |
+
Hugo van Kemenade
|
| 346 |
+
Hugues Bruant
|
| 347 |
+
Hynek Schlawack
|
| 348 |
+
iamsrp-deshaw
|
| 349 |
+
Ian Bicking
|
| 350 |
+
Ian Cordasco
|
| 351 |
+
Ian Lee
|
| 352 |
+
Ian Stapleton Cordasco
|
| 353 |
+
Ian Wienand
|
| 354 |
+
Igor Kuzmitshov
|
| 355 |
+
Igor Sobreira
|
| 356 |
+
Ikko Ashimine
|
| 357 |
+
Ilan Schnell
|
| 358 |
+
Illia Volochii
|
| 359 |
+
Ilya Abdolmanafi
|
| 360 |
+
Ilya Baryshev
|
| 361 |
+
Inada Naoki
|
| 362 |
+
Ionel Cristian Mărieș
|
| 363 |
+
Ionel Maries Cristian
|
| 364 |
+
Itamar Turner-Trauring
|
| 365 |
+
iTrooz
|
| 366 |
+
Ivan Pozdeev
|
| 367 |
+
J. Nick Koston
|
| 368 |
+
Jacob Kim
|
| 369 |
+
Jacob Walls
|
| 370 |
+
Jaime Sanz
|
| 371 |
+
Jake Lishman
|
| 372 |
+
jakirkham
|
| 373 |
+
Jakub Kuczys
|
| 374 |
+
Jakub Stasiak
|
| 375 |
+
Jakub Vysoky
|
| 376 |
+
Jakub Wilk
|
| 377 |
+
James
|
| 378 |
+
James Cleveland
|
| 379 |
+
James Curtin
|
| 380 |
+
James Firth
|
| 381 |
+
James Gerity
|
| 382 |
+
James Polley
|
| 383 |
+
Jan Pokorný
|
| 384 |
+
Jannis Leidel
|
| 385 |
+
Jarek Potiuk
|
| 386 |
+
jarondl
|
| 387 |
+
Jason Curtis
|
| 388 |
+
Jason R. Coombs
|
| 389 |
+
JasonMo
|
| 390 |
+
JasonMo1
|
| 391 |
+
Jay Graves
|
| 392 |
+
Jean Abou Samra
|
| 393 |
+
Jean-Christophe Fillion-Robin
|
| 394 |
+
Jeff Barber
|
| 395 |
+
Jeff Dairiki
|
| 396 |
+
Jeff Widman
|
| 397 |
+
Jelmer Vernooij
|
| 398 |
+
jenix21
|
| 399 |
+
Jeremy Fleischman
|
| 400 |
+
Jeremy Stanley
|
| 401 |
+
Jeremy Zafran
|
| 402 |
+
Jesse Rittner
|
| 403 |
+
Jiashuo Li
|
| 404 |
+
Jim Fisher
|
| 405 |
+
Jim Garrison
|
| 406 |
+
Jinzhe Zeng
|
| 407 |
+
Jiun Bae
|
| 408 |
+
Jivan Amara
|
| 409 |
+
Joa
|
| 410 |
+
Joe Bylund
|
| 411 |
+
Joe Michelini
|
| 412 |
+
Johannes Altmanninger
|
| 413 |
+
John Paton
|
| 414 |
+
John Sirois
|
| 415 |
+
John T. Wodder II
|
| 416 |
+
John-Scott Atlakson
|
| 417 |
+
johnthagen
|
| 418 |
+
Jon Banafato
|
| 419 |
+
Jon Dufresne
|
| 420 |
+
Jon Parise
|
| 421 |
+
Jonas Nockert
|
| 422 |
+
Jonathan Herbert
|
| 423 |
+
Joonatan Partanen
|
| 424 |
+
Joost Molenaar
|
| 425 |
+
Jorge Niedbalski
|
| 426 |
+
Joseph Bylund
|
| 427 |
+
Joseph Long
|
| 428 |
+
Josh Bronson
|
| 429 |
+
Josh Cannon
|
| 430 |
+
Josh Hansen
|
| 431 |
+
Josh Schneier
|
| 432 |
+
Joshua
|
| 433 |
+
JoshuaPerdue
|
| 434 |
+
Jost Migenda
|
| 435 |
+
Juan Luis Cano Rodríguez
|
| 436 |
+
Juanjo Bazán
|
| 437 |
+
Judah Rand
|
| 438 |
+
Julian Berman
|
| 439 |
+
Julian Gethmann
|
| 440 |
+
Julien Demoor
|
| 441 |
+
Julien Stephan
|
| 442 |
+
July Tikhonov
|
| 443 |
+
Jussi Kukkonen
|
| 444 |
+
Justin van Heek
|
| 445 |
+
jwg4
|
| 446 |
+
Jyrki Pulliainen
|
| 447 |
+
Kai Chen
|
| 448 |
+
Kai Mueller
|
| 449 |
+
Kamal Bin Mustafa
|
| 450 |
+
Karolina Surma
|
| 451 |
+
kasium
|
| 452 |
+
kaustav haldar
|
| 453 |
+
Kaz Nishimura
|
| 454 |
+
keanemind
|
| 455 |
+
Keith Maxwell
|
| 456 |
+
Kelsey Hightower
|
| 457 |
+
Kenneth Belitzky
|
| 458 |
+
Kenneth Reitz
|
| 459 |
+
Kevin Burke
|
| 460 |
+
Kevin Carter
|
| 461 |
+
Kevin Frommelt
|
| 462 |
+
Kevin R Patterson
|
| 463 |
+
Kexuan Sun
|
| 464 |
+
Kit Randel
|
| 465 |
+
Klaas van Schelven
|
| 466 |
+
KOLANICH
|
| 467 |
+
konstin
|
| 468 |
+
kpinc
|
| 469 |
+
Krishan Bhasin
|
| 470 |
+
Krishna Oza
|
| 471 |
+
Kumar McMillan
|
| 472 |
+
Kuntal Majumder
|
| 473 |
+
Kurt McKee
|
| 474 |
+
Kyle Persohn
|
| 475 |
+
lakshmanaram
|
| 476 |
+
Laszlo Kiss-Kollar
|
| 477 |
+
Laurent Bristiel
|
| 478 |
+
Laurent LAPORTE
|
| 479 |
+
Laurie O
|
| 480 |
+
Laurie Opperman
|
| 481 |
+
layday
|
| 482 |
+
Leon Sasson
|
| 483 |
+
Lev Givon
|
| 484 |
+
Lincoln de Sousa
|
| 485 |
+
Lipis
|
| 486 |
+
lorddavidiii
|
| 487 |
+
Loren Carvalho
|
| 488 |
+
Lucas Cimon
|
| 489 |
+
Ludovic Gasc
|
| 490 |
+
Luis Medel
|
| 491 |
+
Lukas Geiger
|
| 492 |
+
Lukas Juhrich
|
| 493 |
+
Luke Macken
|
| 494 |
+
Luo Jiebin
|
| 495 |
+
luojiebin
|
| 496 |
+
luz.paz
|
| 497 |
+
László Kiss Kollár
|
| 498 |
+
M00nL1ght
|
| 499 |
+
MajorTanya
|
| 500 |
+
Malcolm Smith
|
| 501 |
+
Marc Abramowitz
|
| 502 |
+
Marc Tamlyn
|
| 503 |
+
Marcus Smith
|
| 504 |
+
Mariatta
|
| 505 |
+
Mark Kohler
|
| 506 |
+
Mark McLoughlin
|
| 507 |
+
Mark Williams
|
| 508 |
+
Markus Hametner
|
| 509 |
+
Martey Dodoo
|
| 510 |
+
Martin Fischer
|
| 511 |
+
Martin Häcker
|
| 512 |
+
Martin Pavlasek
|
| 513 |
+
Masaki
|
| 514 |
+
Masklinn
|
| 515 |
+
Matej Stuchlik
|
| 516 |
+
Mateusz Sokół
|
| 517 |
+
Mathew Jennings
|
| 518 |
+
Mathieu Bridon
|
| 519 |
+
Mathieu Kniewallner
|
| 520 |
+
Matt Bacchi
|
| 521 |
+
Matt Good
|
| 522 |
+
Matt Maker
|
| 523 |
+
Matt Robenolt
|
| 524 |
+
Matt Wozniski
|
| 525 |
+
matthew
|
| 526 |
+
Matthew Einhorn
|
| 527 |
+
Matthew Feickert
|
| 528 |
+
Matthew Gilliard
|
| 529 |
+
Matthew Hughes
|
| 530 |
+
Matthew Iversen
|
| 531 |
+
Matthew Treinish
|
| 532 |
+
Matthew Trumbell
|
| 533 |
+
Matthew Willson
|
| 534 |
+
Matthias Bussonnier
|
| 535 |
+
mattip
|
| 536 |
+
Maurits van Rees
|
| 537 |
+
Max W Chase
|
| 538 |
+
Maxim Kurnikov
|
| 539 |
+
Maxime Rouyrre
|
| 540 |
+
mayeut
|
| 541 |
+
mbaluna
|
| 542 |
+
Md Sujauddin Sekh
|
| 543 |
+
mdebi
|
| 544 |
+
Meet Vasita
|
| 545 |
+
memoselyk
|
| 546 |
+
meowmeowcat
|
| 547 |
+
Michael
|
| 548 |
+
Michael Aquilina
|
| 549 |
+
Michael E. Karpeles
|
| 550 |
+
Michael Klich
|
| 551 |
+
Michael Mintz
|
| 552 |
+
Michael Williamson
|
| 553 |
+
michaelpacer
|
| 554 |
+
Michał Górny
|
| 555 |
+
Mickaël Schoentgen
|
| 556 |
+
Miguel Araujo Perez
|
| 557 |
+
Mihir Singh
|
| 558 |
+
Mike
|
| 559 |
+
Mike Hendricks
|
| 560 |
+
Min RK
|
| 561 |
+
MinRK
|
| 562 |
+
Miro Hrončok
|
| 563 |
+
Monica Baluna
|
| 564 |
+
montefra
|
| 565 |
+
Monty Taylor
|
| 566 |
+
morotti
|
| 567 |
+
mrKazzila
|
| 568 |
+
Muha Ajjan
|
| 569 |
+
MUTHUSRIHEMADHARSHINI S A
|
| 570 |
+
Nadav Wexler
|
| 571 |
+
Nahuel Ambrosini
|
| 572 |
+
Nate Coraor
|
| 573 |
+
Nate Prewitt
|
| 574 |
+
Nathan Houghton
|
| 575 |
+
Nathaniel J. Smith
|
| 576 |
+
Nehal J Wani
|
| 577 |
+
Neil Botelho
|
| 578 |
+
Nguyễn Gia Phong
|
| 579 |
+
Nicholas Serra
|
| 580 |
+
Nick Coghlan
|
| 581 |
+
Nick Stenning
|
| 582 |
+
Nick Timkovich
|
| 583 |
+
Nicolas Bock
|
| 584 |
+
Nicole Harris
|
| 585 |
+
Nikhil Benesch
|
| 586 |
+
Nikhil Ladha
|
| 587 |
+
Nikita Chepanov
|
| 588 |
+
Nikolay Korolev
|
| 589 |
+
Nipunn Koorapati
|
| 590 |
+
Nitesh Sharma
|
| 591 |
+
Niyas Sait
|
| 592 |
+
Noah
|
| 593 |
+
Noah Gorny
|
| 594 |
+
Nothing-991
|
| 595 |
+
Nowell Strite
|
| 596 |
+
NtaleGrey
|
| 597 |
+
nucccc
|
| 598 |
+
nvdv
|
| 599 |
+
OBITORASU
|
| 600 |
+
Ofek Lev
|
| 601 |
+
ofrinevo
|
| 602 |
+
Oleg Burnaev
|
| 603 |
+
Oliver Freund
|
| 604 |
+
Oliver Jeeves
|
| 605 |
+
Oliver Mannion
|
| 606 |
+
Oliver Tonnhofer
|
| 607 |
+
Olivier Girardot
|
| 608 |
+
Olivier Grisel
|
| 609 |
+
Ollie Rutherfurd
|
| 610 |
+
OMOTO Kenji
|
| 611 |
+
Omry Yadan
|
| 612 |
+
onlinejudge95
|
| 613 |
+
Oren Held
|
| 614 |
+
Oscar Benjamin
|
| 615 |
+
oxygen dioxide
|
| 616 |
+
Oz N Tiram
|
| 617 |
+
Pachwenko
|
| 618 |
+
Paresh Joshi
|
| 619 |
+
Patrick Dubroy
|
| 620 |
+
Patrick Jenkins
|
| 621 |
+
Patrick Lawson
|
| 622 |
+
patricktokeeffe
|
| 623 |
+
Patrik Kopkan
|
| 624 |
+
Paul Ganssle
|
| 625 |
+
Paul Kehrer
|
| 626 |
+
Paul Moore
|
| 627 |
+
Paul Nasrat
|
| 628 |
+
Paul Oswald
|
| 629 |
+
Paul van der Linden
|
| 630 |
+
Paulus Schoutsen
|
| 631 |
+
Pavel Safronov
|
| 632 |
+
Pavithra Eswaramoorthy
|
| 633 |
+
Pawel Jasinski
|
| 634 |
+
Paweł Szramowski
|
| 635 |
+
Pekka Klärck
|
| 636 |
+
Peter Gessler
|
| 637 |
+
Peter Lisák
|
| 638 |
+
Peter Shen
|
| 639 |
+
Peter Waller
|
| 640 |
+
Petr Viktorin
|
| 641 |
+
petr-tik
|
| 642 |
+
Phaneendra Chiruvella
|
| 643 |
+
Phil Elson
|
| 644 |
+
Phil Freo
|
| 645 |
+
Phil Pennock
|
| 646 |
+
Phil Whelan
|
| 647 |
+
Philip Jägenstedt
|
| 648 |
+
Philip Molloy
|
| 649 |
+
Philippe Ombredanne
|
| 650 |
+
Pi Delport
|
| 651 |
+
Pierre-Yves Rofes
|
| 652 |
+
Pieter Degroote
|
| 653 |
+
pip
|
| 654 |
+
Prabakaran Kumaresshan
|
| 655 |
+
Prabhjyotsing Surjit Singh Sodhi
|
| 656 |
+
Prabhu Marappan
|
| 657 |
+
Pradyun Gedam
|
| 658 |
+
Prashant Sharma
|
| 659 |
+
Pratik Mallya
|
| 660 |
+
pre-commit-ci[bot]
|
| 661 |
+
Preet Thakkar
|
| 662 |
+
Preston Holmes
|
| 663 |
+
Przemek Wrzos
|
| 664 |
+
Pulkit Goyal
|
| 665 |
+
q0w
|
| 666 |
+
Qiangning Hong
|
| 667 |
+
Qiming Xu
|
| 668 |
+
qraqras
|
| 669 |
+
Quentin Lee
|
| 670 |
+
Quentin Pradet
|
| 671 |
+
R. David Murray
|
| 672 |
+
Rafael Caricio
|
| 673 |
+
Ralf Schmitt
|
| 674 |
+
Ran Benita
|
| 675 |
+
Randy Döring
|
| 676 |
+
Razzi Abuissa
|
| 677 |
+
rdb
|
| 678 |
+
Reece Dunham
|
| 679 |
+
Remi Rampin
|
| 680 |
+
Rene Dudfield
|
| 681 |
+
Riccardo Magliocchetti
|
| 682 |
+
Riccardo Schirone
|
| 683 |
+
Richard Jones
|
| 684 |
+
Richard Si
|
| 685 |
+
Ricky Ng-Adam
|
| 686 |
+
Rishi
|
| 687 |
+
rmorotti
|
| 688 |
+
RobberPhex
|
| 689 |
+
Robert Collins
|
| 690 |
+
Robert McGibbon
|
| 691 |
+
Robert Pollak
|
| 692 |
+
Robert T. McGibbon
|
| 693 |
+
robin elisha robinson
|
| 694 |
+
Rodney, Tiara
|
| 695 |
+
Roey Berman
|
| 696 |
+
Rohan Jain
|
| 697 |
+
Roman Bogorodskiy
|
| 698 |
+
Roman Donchenko
|
| 699 |
+
Romuald Brunet
|
| 700 |
+
ronaudinho
|
| 701 |
+
Ronny Pfannschmidt
|
| 702 |
+
Rory McCann
|
| 703 |
+
Ross Brattain
|
| 704 |
+
Roy Wellington Ⅳ
|
| 705 |
+
Ruairidh MacLeod
|
| 706 |
+
Russell Keith-Magee
|
| 707 |
+
Ryan Shepherd
|
| 708 |
+
Ryan Wooden
|
| 709 |
+
ryneeverett
|
| 710 |
+
Ryuma Asai
|
| 711 |
+
S. Guliaev
|
| 712 |
+
Sachi King
|
| 713 |
+
Salvatore Rinchiera
|
| 714 |
+
sandeepkiran-js
|
| 715 |
+
Sander Van Balen
|
| 716 |
+
Savio Jomton
|
| 717 |
+
schlamar
|
| 718 |
+
Scott Kitterman
|
| 719 |
+
Sean
|
| 720 |
+
seanj
|
| 721 |
+
Sebastian Jordan
|
| 722 |
+
Sebastian Schaetz
|
| 723 |
+
Segev Finer
|
| 724 |
+
SeongSoo Cho
|
| 725 |
+
Sepehr Rasouli
|
| 726 |
+
sepehrrasooli
|
| 727 |
+
Sergey Vasilyev
|
| 728 |
+
Seth Michael Larson
|
| 729 |
+
Seth Woodworth
|
| 730 |
+
Shahar Epstein
|
| 731 |
+
Shantanu
|
| 732 |
+
shenxianpeng
|
| 733 |
+
shireenrao
|
| 734 |
+
Shivansh-007
|
| 735 |
+
Shixian Sheng
|
| 736 |
+
Shlomi Fish
|
| 737 |
+
Shovan Maity
|
| 738 |
+
Shubham Nagure
|
| 739 |
+
Simeon Visser
|
| 740 |
+
Simon Cross
|
| 741 |
+
Simon Pichugin
|
| 742 |
+
sinoroc
|
| 743 |
+
sinscary
|
| 744 |
+
snook92
|
| 745 |
+
socketubs
|
| 746 |
+
Sorin Sbarnea
|
| 747 |
+
Srinivas Nyayapati
|
| 748 |
+
Srishti Hegde
|
| 749 |
+
Stavros Korokithakis
|
| 750 |
+
Stefan Scherfke
|
| 751 |
+
Stefano Rivera
|
| 752 |
+
Stephan Erb
|
| 753 |
+
Stephane Chazelas
|
| 754 |
+
Stephen Payne
|
| 755 |
+
Stephen Rosen
|
| 756 |
+
stepshal
|
| 757 |
+
Steve (Gadget) Barnes
|
| 758 |
+
Steve Barnes
|
| 759 |
+
Steve Dower
|
| 760 |
+
Steve Kowalik
|
| 761 |
+
Steven Myint
|
| 762 |
+
Steven Silvester
|
| 763 |
+
stonebig
|
| 764 |
+
studioj
|
| 765 |
+
Stéphane Bidoul
|
| 766 |
+
Stéphane Bidoul (ACSONE)
|
| 767 |
+
Stéphane Klein
|
| 768 |
+
Sumana Harihareswara
|
| 769 |
+
Surbhi Sharma
|
| 770 |
+
Sviatoslav Sydorenko
|
| 771 |
+
Sviatoslav Sydorenko (Святослав Сидоренко)
|
| 772 |
+
Swat009
|
| 773 |
+
Sylvain
|
| 774 |
+
Takayuki SHIMIZUKAWA
|
| 775 |
+
Taneli Hukkinen
|
| 776 |
+
tbeswick
|
| 777 |
+
Terrance
|
| 778 |
+
Thiago
|
| 779 |
+
Thijs Triemstra
|
| 780 |
+
Thomas Fenzl
|
| 781 |
+
Thomas Grainger
|
| 782 |
+
Thomas Guettler
|
| 783 |
+
Thomas Johansson
|
| 784 |
+
Thomas Kluyver
|
| 785 |
+
Thomas Smith
|
| 786 |
+
Thomas VINCENT
|
| 787 |
+
Tim D. Smith
|
| 788 |
+
Tim Gates
|
| 789 |
+
Tim Harder
|
| 790 |
+
Tim Heap
|
| 791 |
+
tim smith
|
| 792 |
+
tinruufu
|
| 793 |
+
Tobias Hermann
|
| 794 |
+
Tom Forbes
|
| 795 |
+
Tom Freudenheim
|
| 796 |
+
Tom V
|
| 797 |
+
Tomas Hrnciar
|
| 798 |
+
Tomas Orsava
|
| 799 |
+
Tomer Chachamu
|
| 800 |
+
Tommi Enenkel | AnB
|
| 801 |
+
Tomáš Hrnčiar
|
| 802 |
+
Tony Beswick
|
| 803 |
+
Tony Narlock
|
| 804 |
+
Tony Zhaocheng Tan
|
| 805 |
+
TonyBeswick
|
| 806 |
+
toonarmycaptain
|
| 807 |
+
Toshio Kuratomi
|
| 808 |
+
toxinu
|
| 809 |
+
Travis Swicegood
|
| 810 |
+
Tushar Sadhwani
|
| 811 |
+
Tzu-ping Chung
|
| 812 |
+
Valentin Haenel
|
| 813 |
+
Victor Stinner
|
| 814 |
+
victorvpaulo
|
| 815 |
+
Vikram - Google
|
| 816 |
+
Viktor Szépe
|
| 817 |
+
Ville Skyttä
|
| 818 |
+
Vinay Sajip
|
| 819 |
+
Vincent Philippon
|
| 820 |
+
Vinicyus Macedo
|
| 821 |
+
Vipul Kumar
|
| 822 |
+
Vitaly Babiy
|
| 823 |
+
Vladimir Fokow
|
| 824 |
+
Vladimir Rutsky
|
| 825 |
+
W. Trevor King
|
| 826 |
+
Weida Hong
|
| 827 |
+
Wil Tan
|
| 828 |
+
Wilfred Hughes
|
| 829 |
+
William Edwards
|
| 830 |
+
William ML Leslie
|
| 831 |
+
William T Olson
|
| 832 |
+
William Woodruff
|
| 833 |
+
Wilson Mo
|
| 834 |
+
wim glenn
|
| 835 |
+
Winson Luk
|
| 836 |
+
Wolfgang Maier
|
| 837 |
+
Wu Zhenyu
|
| 838 |
+
XAMES3
|
| 839 |
+
Xavier Fernandez
|
| 840 |
+
Xianpeng Shen
|
| 841 |
+
xoviat
|
| 842 |
+
xtreak
|
| 843 |
+
YAMAMOTO Takashi
|
| 844 |
+
Yash
|
| 845 |
+
Yashraj
|
| 846 |
+
Yen Chi Hsuan
|
| 847 |
+
Yeray Diaz Diaz
|
| 848 |
+
Yoval P
|
| 849 |
+
Yu Jian
|
| 850 |
+
Yuan Jing Vincent Yan
|
| 851 |
+
Yuki Kobayashi
|
| 852 |
+
Yusuke Hayashi
|
| 853 |
+
zackzack38
|
| 854 |
+
Zearin
|
| 855 |
+
Zhiping Deng
|
| 856 |
+
ziebam
|
| 857 |
+
Zvezdan Petkovic
|
| 858 |
+
Łukasz Langa
|
| 859 |
+
Роман Донченко
|
| 860 |
+
Семён Марьясин
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/LICENSE.txt
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Copyright (c) 2008-present The pip developers (see AUTHORS.txt file)
|
| 2 |
+
|
| 3 |
+
Permission is hereby granted, free of charge, to any person obtaining
|
| 4 |
+
a copy of this software and associated documentation files (the
|
| 5 |
+
"Software"), to deal in the Software without restriction, including
|
| 6 |
+
without limitation the rights to use, copy, modify, merge, publish,
|
| 7 |
+
distribute, sublicense, and/or sell copies of the Software, and to
|
| 8 |
+
permit persons to whom the Software is furnished to do so, subject to
|
| 9 |
+
the following conditions:
|
| 10 |
+
|
| 11 |
+
The above copyright notice and this permission notice shall be
|
| 12 |
+
included in all copies or substantial portions of the Software.
|
| 13 |
+
|
| 14 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
| 15 |
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
| 16 |
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
| 17 |
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
| 18 |
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
| 19 |
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
| 20 |
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Copyright 2012-2021 Eric Larson
|
| 2 |
+
|
| 3 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
| 4 |
+
you may not use this file except in compliance with the License.
|
| 5 |
+
You may obtain a copy of the License at
|
| 6 |
+
|
| 7 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
| 8 |
+
|
| 9 |
+
Unless required by applicable law or agreed to in writing, software
|
| 10 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
| 11 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 12 |
+
See the License for the specific language governing permissions and
|
| 13 |
+
limitations under the License.
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/certifi/LICENSE
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
This package contains a modified version of ca-bundle.crt:
|
| 2 |
+
|
| 3 |
+
ca-bundle.crt -- Bundle of CA Root Certificates
|
| 4 |
+
|
| 5 |
+
This is a bundle of X.509 certificates of public Certificate Authorities
|
| 6 |
+
(CA). These were automatically extracted from Mozilla's root certificates
|
| 7 |
+
file (certdata.txt). This file can be found in the mozilla source tree:
|
| 8 |
+
https://hg.mozilla.org/mozilla-central/file/tip/security/nss/lib/ckfw/builtins/certdata.txt
|
| 9 |
+
It contains the certificates in PEM format and therefore
|
| 10 |
+
can be directly used with curl / libcurl / php_curl, or with
|
| 11 |
+
an Apache+mod_ssl webserver for SSL client authentication.
|
| 12 |
+
Just configure this file as the SSLCACertificateFile.#
|
| 13 |
+
|
| 14 |
+
***** BEGIN LICENSE BLOCK *****
|
| 15 |
+
This Source Code Form is subject to the terms of the Mozilla Public License,
|
| 16 |
+
v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain
|
| 17 |
+
one at http://mozilla.org/MPL/2.0/.
|
| 18 |
+
|
| 19 |
+
***** END LICENSE BLOCK *****
|
| 20 |
+
@(#) $RCSfile: certdata.txt,v $ $Revision: 1.80 $ $Date: 2011/11/03 15:11:58 $
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/dependency_groups/LICENSE.txt
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
MIT License
|
| 2 |
+
|
| 3 |
+
Copyright (c) 2024-present Stephen Rosen <sirosen0@gmail.com>
|
| 4 |
+
|
| 5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
| 6 |
+
|
| 7 |
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
| 8 |
+
|
| 9 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt
ADDED
|
@@ -0,0 +1,284 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
A. HISTORY OF THE SOFTWARE
|
| 2 |
+
==========================
|
| 3 |
+
|
| 4 |
+
Python was created in the early 1990s by Guido van Rossum at Stichting
|
| 5 |
+
Mathematisch Centrum (CWI, see http://www.cwi.nl) in the Netherlands
|
| 6 |
+
as a successor of a language called ABC. Guido remains Python's
|
| 7 |
+
principal author, although it includes many contributions from others.
|
| 8 |
+
|
| 9 |
+
In 1995, Guido continued his work on Python at the Corporation for
|
| 10 |
+
National Research Initiatives (CNRI, see http://www.cnri.reston.va.us)
|
| 11 |
+
in Reston, Virginia where he released several versions of the
|
| 12 |
+
software.
|
| 13 |
+
|
| 14 |
+
In May 2000, Guido and the Python core development team moved to
|
| 15 |
+
BeOpen.com to form the BeOpen PythonLabs team. In October of the same
|
| 16 |
+
year, the PythonLabs team moved to Digital Creations (now Zope
|
| 17 |
+
Corporation, see http://www.zope.com). In 2001, the Python Software
|
| 18 |
+
Foundation (PSF, see http://www.python.org/psf/) was formed, a
|
| 19 |
+
non-profit organization created specifically to own Python-related
|
| 20 |
+
Intellectual Property. Zope Corporation is a sponsoring member of
|
| 21 |
+
the PSF.
|
| 22 |
+
|
| 23 |
+
All Python releases are Open Source (see http://www.opensource.org for
|
| 24 |
+
the Open Source Definition). Historically, most, but not all, Python
|
| 25 |
+
releases have also been GPL-compatible; the table below summarizes
|
| 26 |
+
the various releases.
|
| 27 |
+
|
| 28 |
+
Release Derived Year Owner GPL-
|
| 29 |
+
from compatible? (1)
|
| 30 |
+
|
| 31 |
+
0.9.0 thru 1.2 1991-1995 CWI yes
|
| 32 |
+
1.3 thru 1.5.2 1.2 1995-1999 CNRI yes
|
| 33 |
+
1.6 1.5.2 2000 CNRI no
|
| 34 |
+
2.0 1.6 2000 BeOpen.com no
|
| 35 |
+
1.6.1 1.6 2001 CNRI yes (2)
|
| 36 |
+
2.1 2.0+1.6.1 2001 PSF no
|
| 37 |
+
2.0.1 2.0+1.6.1 2001 PSF yes
|
| 38 |
+
2.1.1 2.1+2.0.1 2001 PSF yes
|
| 39 |
+
2.2 2.1.1 2001 PSF yes
|
| 40 |
+
2.1.2 2.1.1 2002 PSF yes
|
| 41 |
+
2.1.3 2.1.2 2002 PSF yes
|
| 42 |
+
2.2.1 2.2 2002 PSF yes
|
| 43 |
+
2.2.2 2.2.1 2002 PSF yes
|
| 44 |
+
2.2.3 2.2.2 2003 PSF yes
|
| 45 |
+
2.3 2.2.2 2002-2003 PSF yes
|
| 46 |
+
2.3.1 2.3 2002-2003 PSF yes
|
| 47 |
+
2.3.2 2.3.1 2002-2003 PSF yes
|
| 48 |
+
2.3.3 2.3.2 2002-2003 PSF yes
|
| 49 |
+
2.3.4 2.3.3 2004 PSF yes
|
| 50 |
+
2.3.5 2.3.4 2005 PSF yes
|
| 51 |
+
2.4 2.3 2004 PSF yes
|
| 52 |
+
2.4.1 2.4 2005 PSF yes
|
| 53 |
+
2.4.2 2.4.1 2005 PSF yes
|
| 54 |
+
2.4.3 2.4.2 2006 PSF yes
|
| 55 |
+
2.4.4 2.4.3 2006 PSF yes
|
| 56 |
+
2.5 2.4 2006 PSF yes
|
| 57 |
+
2.5.1 2.5 2007 PSF yes
|
| 58 |
+
2.5.2 2.5.1 2008 PSF yes
|
| 59 |
+
2.5.3 2.5.2 2008 PSF yes
|
| 60 |
+
2.6 2.5 2008 PSF yes
|
| 61 |
+
2.6.1 2.6 2008 PSF yes
|
| 62 |
+
2.6.2 2.6.1 2009 PSF yes
|
| 63 |
+
2.6.3 2.6.2 2009 PSF yes
|
| 64 |
+
2.6.4 2.6.3 2009 PSF yes
|
| 65 |
+
2.6.5 2.6.4 2010 PSF yes
|
| 66 |
+
3.0 2.6 2008 PSF yes
|
| 67 |
+
3.0.1 3.0 2009 PSF yes
|
| 68 |
+
3.1 3.0.1 2009 PSF yes
|
| 69 |
+
3.1.1 3.1 2009 PSF yes
|
| 70 |
+
3.1.2 3.1 2010 PSF yes
|
| 71 |
+
3.2 3.1 2010 PSF yes
|
| 72 |
+
|
| 73 |
+
Footnotes:
|
| 74 |
+
|
| 75 |
+
(1) GPL-compatible doesn't mean that we're distributing Python under
|
| 76 |
+
the GPL. All Python licenses, unlike the GPL, let you distribute
|
| 77 |
+
a modified version without making your changes open source. The
|
| 78 |
+
GPL-compatible licenses make it possible to combine Python with
|
| 79 |
+
other software that is released under the GPL; the others don't.
|
| 80 |
+
|
| 81 |
+
(2) According to Richard Stallman, 1.6.1 is not GPL-compatible,
|
| 82 |
+
because its license has a choice of law clause. According to
|
| 83 |
+
CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1
|
| 84 |
+
is "not incompatible" with the GPL.
|
| 85 |
+
|
| 86 |
+
Thanks to the many outside volunteers who have worked under Guido's
|
| 87 |
+
direction to make these releases possible.
|
| 88 |
+
|
| 89 |
+
|
| 90 |
+
B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON
|
| 91 |
+
===============================================================
|
| 92 |
+
|
| 93 |
+
PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
|
| 94 |
+
--------------------------------------------
|
| 95 |
+
|
| 96 |
+
1. This LICENSE AGREEMENT is between the Python Software Foundation
|
| 97 |
+
("PSF"), and the Individual or Organization ("Licensee") accessing and
|
| 98 |
+
otherwise using this software ("Python") in source or binary form and
|
| 99 |
+
its associated documentation.
|
| 100 |
+
|
| 101 |
+
2. Subject to the terms and conditions of this License Agreement, PSF hereby
|
| 102 |
+
grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce,
|
| 103 |
+
analyze, test, perform and/or display publicly, prepare derivative works,
|
| 104 |
+
distribute, and otherwise use Python alone or in any derivative version,
|
| 105 |
+
provided, however, that PSF's License Agreement and PSF's notice of copyright,
|
| 106 |
+
i.e., "Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
|
| 107 |
+
Python Software Foundation; All Rights Reserved" are retained in Python alone or
|
| 108 |
+
in any derivative version prepared by Licensee.
|
| 109 |
+
|
| 110 |
+
3. In the event Licensee prepares a derivative work that is based on
|
| 111 |
+
or incorporates Python or any part thereof, and wants to make
|
| 112 |
+
the derivative work available to others as provided herein, then
|
| 113 |
+
Licensee hereby agrees to include in any such work a brief summary of
|
| 114 |
+
the changes made to Python.
|
| 115 |
+
|
| 116 |
+
4. PSF is making Python available to Licensee on an "AS IS"
|
| 117 |
+
basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
|
| 118 |
+
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
|
| 119 |
+
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
|
| 120 |
+
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT
|
| 121 |
+
INFRINGE ANY THIRD PARTY RIGHTS.
|
| 122 |
+
|
| 123 |
+
5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
|
| 124 |
+
FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
|
| 125 |
+
A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,
|
| 126 |
+
OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
|
| 127 |
+
|
| 128 |
+
6. This License Agreement will automatically terminate upon a material
|
| 129 |
+
breach of its terms and conditions.
|
| 130 |
+
|
| 131 |
+
7. Nothing in this License Agreement shall be deemed to create any
|
| 132 |
+
relationship of agency, partnership, or joint venture between PSF and
|
| 133 |
+
Licensee. This License Agreement does not grant permission to use PSF
|
| 134 |
+
trademarks or trade name in a trademark sense to endorse or promote
|
| 135 |
+
products or services of Licensee, or any third party.
|
| 136 |
+
|
| 137 |
+
8. By copying, installing or otherwise using Python, Licensee
|
| 138 |
+
agrees to be bound by the terms and conditions of this License
|
| 139 |
+
Agreement.
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0
|
| 143 |
+
-------------------------------------------
|
| 144 |
+
|
| 145 |
+
BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1
|
| 146 |
+
|
| 147 |
+
1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an
|
| 148 |
+
office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the
|
| 149 |
+
Individual or Organization ("Licensee") accessing and otherwise using
|
| 150 |
+
this software in source or binary form and its associated
|
| 151 |
+
documentation ("the Software").
|
| 152 |
+
|
| 153 |
+
2. Subject to the terms and conditions of this BeOpen Python License
|
| 154 |
+
Agreement, BeOpen hereby grants Licensee a non-exclusive,
|
| 155 |
+
royalty-free, world-wide license to reproduce, analyze, test, perform
|
| 156 |
+
and/or display publicly, prepare derivative works, distribute, and
|
| 157 |
+
otherwise use the Software alone or in any derivative version,
|
| 158 |
+
provided, however, that the BeOpen Python License is retained in the
|
| 159 |
+
Software, alone or in any derivative version prepared by Licensee.
|
| 160 |
+
|
| 161 |
+
3. BeOpen is making the Software available to Licensee on an "AS IS"
|
| 162 |
+
basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
|
| 163 |
+
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND
|
| 164 |
+
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
|
| 165 |
+
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT
|
| 166 |
+
INFRINGE ANY THIRD PARTY RIGHTS.
|
| 167 |
+
|
| 168 |
+
4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE
|
| 169 |
+
SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS
|
| 170 |
+
AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY
|
| 171 |
+
DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
|
| 172 |
+
|
| 173 |
+
5. This License Agreement will automatically terminate upon a material
|
| 174 |
+
breach of its terms and conditions.
|
| 175 |
+
|
| 176 |
+
6. This License Agreement shall be governed by and interpreted in all
|
| 177 |
+
respects by the law of the State of California, excluding conflict of
|
| 178 |
+
law provisions. Nothing in this License Agreement shall be deemed to
|
| 179 |
+
create any relationship of agency, partnership, or joint venture
|
| 180 |
+
between BeOpen and Licensee. This License Agreement does not grant
|
| 181 |
+
permission to use BeOpen trademarks or trade names in a trademark
|
| 182 |
+
sense to endorse or promote products or services of Licensee, or any
|
| 183 |
+
third party. As an exception, the "BeOpen Python" logos available at
|
| 184 |
+
http://www.pythonlabs.com/logos.html may be used according to the
|
| 185 |
+
permissions granted on that web page.
|
| 186 |
+
|
| 187 |
+
7. By copying, installing or otherwise using the software, Licensee
|
| 188 |
+
agrees to be bound by the terms and conditions of this License
|
| 189 |
+
Agreement.
|
| 190 |
+
|
| 191 |
+
|
| 192 |
+
CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1
|
| 193 |
+
---------------------------------------
|
| 194 |
+
|
| 195 |
+
1. This LICENSE AGREEMENT is between the Corporation for National
|
| 196 |
+
Research Initiatives, having an office at 1895 Preston White Drive,
|
| 197 |
+
Reston, VA 20191 ("CNRI"), and the Individual or Organization
|
| 198 |
+
("Licensee") accessing and otherwise using Python 1.6.1 software in
|
| 199 |
+
source or binary form and its associated documentation.
|
| 200 |
+
|
| 201 |
+
2. Subject to the terms and conditions of this License Agreement, CNRI
|
| 202 |
+
hereby grants Licensee a nonexclusive, royalty-free, world-wide
|
| 203 |
+
license to reproduce, analyze, test, perform and/or display publicly,
|
| 204 |
+
prepare derivative works, distribute, and otherwise use Python 1.6.1
|
| 205 |
+
alone or in any derivative version, provided, however, that CNRI's
|
| 206 |
+
License Agreement and CNRI's notice of copyright, i.e., "Copyright (c)
|
| 207 |
+
1995-2001 Corporation for National Research Initiatives; All Rights
|
| 208 |
+
Reserved" are retained in Python 1.6.1 alone or in any derivative
|
| 209 |
+
version prepared by Licensee. Alternately, in lieu of CNRI's License
|
| 210 |
+
Agreement, Licensee may substitute the following text (omitting the
|
| 211 |
+
quotes): "Python 1.6.1 is made available subject to the terms and
|
| 212 |
+
conditions in CNRI's License Agreement. This Agreement together with
|
| 213 |
+
Python 1.6.1 may be located on the Internet using the following
|
| 214 |
+
unique, persistent identifier (known as a handle): 1895.22/1013. This
|
| 215 |
+
Agreement may also be obtained from a proxy server on the Internet
|
| 216 |
+
using the following URL: http://hdl.handle.net/1895.22/1013".
|
| 217 |
+
|
| 218 |
+
3. In the event Licensee prepares a derivative work that is based on
|
| 219 |
+
or incorporates Python 1.6.1 or any part thereof, and wants to make
|
| 220 |
+
the derivative work available to others as provided herein, then
|
| 221 |
+
Licensee hereby agrees to include in any such work a brief summary of
|
| 222 |
+
the changes made to Python 1.6.1.
|
| 223 |
+
|
| 224 |
+
4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS"
|
| 225 |
+
basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
|
| 226 |
+
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND
|
| 227 |
+
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
|
| 228 |
+
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT
|
| 229 |
+
INFRINGE ANY THIRD PARTY RIGHTS.
|
| 230 |
+
|
| 231 |
+
5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
|
| 232 |
+
1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
|
| 233 |
+
A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1,
|
| 234 |
+
OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
|
| 235 |
+
|
| 236 |
+
6. This License Agreement will automatically terminate upon a material
|
| 237 |
+
breach of its terms and conditions.
|
| 238 |
+
|
| 239 |
+
7. This License Agreement shall be governed by the federal
|
| 240 |
+
intellectual property law of the United States, including without
|
| 241 |
+
limitation the federal copyright law, and, to the extent such
|
| 242 |
+
U.S. federal law does not apply, by the law of the Commonwealth of
|
| 243 |
+
Virginia, excluding Virginia's conflict of law provisions.
|
| 244 |
+
Notwithstanding the foregoing, with regard to derivative works based
|
| 245 |
+
on Python 1.6.1 that incorporate non-separable material that was
|
| 246 |
+
previously distributed under the GNU General Public License (GPL), the
|
| 247 |
+
law of the Commonwealth of Virginia shall govern this License
|
| 248 |
+
Agreement only as to issues arising under or with respect to
|
| 249 |
+
Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this
|
| 250 |
+
License Agreement shall be deemed to create any relationship of
|
| 251 |
+
agency, partnership, or joint venture between CNRI and Licensee. This
|
| 252 |
+
License Agreement does not grant permission to use CNRI trademarks or
|
| 253 |
+
trade name in a trademark sense to endorse or promote products or
|
| 254 |
+
services of Licensee, or any third party.
|
| 255 |
+
|
| 256 |
+
8. By clicking on the "ACCEPT" button where indicated, or by copying,
|
| 257 |
+
installing or otherwise using Python 1.6.1, Licensee agrees to be
|
| 258 |
+
bound by the terms and conditions of this License Agreement.
|
| 259 |
+
|
| 260 |
+
ACCEPT
|
| 261 |
+
|
| 262 |
+
|
| 263 |
+
CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2
|
| 264 |
+
--------------------------------------------------
|
| 265 |
+
|
| 266 |
+
Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,
|
| 267 |
+
The Netherlands. All rights reserved.
|
| 268 |
+
|
| 269 |
+
Permission to use, copy, modify, and distribute this software and its
|
| 270 |
+
documentation for any purpose and without fee is hereby granted,
|
| 271 |
+
provided that the above copyright notice appear in all copies and that
|
| 272 |
+
both that copyright notice and this permission notice appear in
|
| 273 |
+
supporting documentation, and that the name of Stichting Mathematisch
|
| 274 |
+
Centrum or CWI not be used in advertising or publicity pertaining to
|
| 275 |
+
distribution of the software without specific, written prior
|
| 276 |
+
permission.
|
| 277 |
+
|
| 278 |
+
STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
|
| 279 |
+
THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
| 280 |
+
FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
|
| 281 |
+
FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
| 282 |
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
| 283 |
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
|
| 284 |
+
OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/distro/LICENSE
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Apache License
|
| 2 |
+
Version 2.0, January 2004
|
| 3 |
+
http://www.apache.org/licenses/
|
| 4 |
+
|
| 5 |
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
| 6 |
+
|
| 7 |
+
1. Definitions.
|
| 8 |
+
|
| 9 |
+
"License" shall mean the terms and conditions for use, reproduction,
|
| 10 |
+
and distribution as defined by Sections 1 through 9 of this document.
|
| 11 |
+
|
| 12 |
+
"Licensor" shall mean the copyright owner or entity authorized by
|
| 13 |
+
the copyright owner that is granting the License.
|
| 14 |
+
|
| 15 |
+
"Legal Entity" shall mean the union of the acting entity and all
|
| 16 |
+
other entities that control, are controlled by, or are under common
|
| 17 |
+
control with that entity. For the purposes of this definition,
|
| 18 |
+
"control" means (i) the power, direct or indirect, to cause the
|
| 19 |
+
direction or management of such entity, whether by contract or
|
| 20 |
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
| 21 |
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
| 22 |
+
|
| 23 |
+
"You" (or "Your") shall mean an individual or Legal Entity
|
| 24 |
+
exercising permissions granted by this License.
|
| 25 |
+
|
| 26 |
+
"Source" form shall mean the preferred form for making modifications,
|
| 27 |
+
including but not limited to software source code, documentation
|
| 28 |
+
source, and configuration files.
|
| 29 |
+
|
| 30 |
+
"Object" form shall mean any form resulting from mechanical
|
| 31 |
+
transformation or translation of a Source form, including but
|
| 32 |
+
not limited to compiled object code, generated documentation,
|
| 33 |
+
and conversions to other media types.
|
| 34 |
+
|
| 35 |
+
"Work" shall mean the work of authorship, whether in Source or
|
| 36 |
+
Object form, made available under the License, as indicated by a
|
| 37 |
+
copyright notice that is included in or attached to the work
|
| 38 |
+
(an example is provided in the Appendix below).
|
| 39 |
+
|
| 40 |
+
"Derivative Works" shall mean any work, whether in Source or Object
|
| 41 |
+
form, that is based on (or derived from) the Work and for which the
|
| 42 |
+
editorial revisions, annotations, elaborations, or other modifications
|
| 43 |
+
represent, as a whole, an original work of authorship. For the purposes
|
| 44 |
+
of this License, Derivative Works shall not include works that remain
|
| 45 |
+
separable from, or merely link (or bind by name) to the interfaces of,
|
| 46 |
+
the Work and Derivative Works thereof.
|
| 47 |
+
|
| 48 |
+
"Contribution" shall mean any work of authorship, including
|
| 49 |
+
the original version of the Work and any modifications or additions
|
| 50 |
+
to that Work or Derivative Works thereof, that is intentionally
|
| 51 |
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
| 52 |
+
or by an individual or Legal Entity authorized to submit on behalf of
|
| 53 |
+
the copyright owner. For the purposes of this definition, "submitted"
|
| 54 |
+
means any form of electronic, verbal, or written communication sent
|
| 55 |
+
to the Licensor or its representatives, including but not limited to
|
| 56 |
+
communication on electronic mailing lists, source code control systems,
|
| 57 |
+
and issue tracking systems that are managed by, or on behalf of, the
|
| 58 |
+
Licensor for the purpose of discussing and improving the Work, but
|
| 59 |
+
excluding communication that is conspicuously marked or otherwise
|
| 60 |
+
designated in writing by the copyright owner as "Not a Contribution."
|
| 61 |
+
|
| 62 |
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
| 63 |
+
on behalf of whom a Contribution has been received by Licensor and
|
| 64 |
+
subsequently incorporated within the Work.
|
| 65 |
+
|
| 66 |
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
| 67 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 68 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 69 |
+
copyright license to reproduce, prepare Derivative Works of,
|
| 70 |
+
publicly display, publicly perform, sublicense, and distribute the
|
| 71 |
+
Work and such Derivative Works in Source or Object form.
|
| 72 |
+
|
| 73 |
+
3. Grant of Patent License. Subject to the terms and conditions of
|
| 74 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 75 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 76 |
+
(except as stated in this section) patent license to make, have made,
|
| 77 |
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
| 78 |
+
where such license applies only to those patent claims licensable
|
| 79 |
+
by such Contributor that are necessarily infringed by their
|
| 80 |
+
Contribution(s) alone or by combination of their Contribution(s)
|
| 81 |
+
with the Work to which such Contribution(s) was submitted. If You
|
| 82 |
+
institute patent litigation against any entity (including a
|
| 83 |
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
| 84 |
+
or a Contribution incorporated within the Work constitutes direct
|
| 85 |
+
or contributory patent infringement, then any patent licenses
|
| 86 |
+
granted to You under this License for that Work shall terminate
|
| 87 |
+
as of the date such litigation is filed.
|
| 88 |
+
|
| 89 |
+
4. Redistribution. You may reproduce and distribute copies of the
|
| 90 |
+
Work or Derivative Works thereof in any medium, with or without
|
| 91 |
+
modifications, and in Source or Object form, provided that You
|
| 92 |
+
meet the following conditions:
|
| 93 |
+
|
| 94 |
+
(a) You must give any other recipients of the Work or
|
| 95 |
+
Derivative Works a copy of this License; and
|
| 96 |
+
|
| 97 |
+
(b) You must cause any modified files to carry prominent notices
|
| 98 |
+
stating that You changed the files; and
|
| 99 |
+
|
| 100 |
+
(c) You must retain, in the Source form of any Derivative Works
|
| 101 |
+
that You distribute, all copyright, patent, trademark, and
|
| 102 |
+
attribution notices from the Source form of the Work,
|
| 103 |
+
excluding those notices that do not pertain to any part of
|
| 104 |
+
the Derivative Works; and
|
| 105 |
+
|
| 106 |
+
(d) If the Work includes a "NOTICE" text file as part of its
|
| 107 |
+
distribution, then any Derivative Works that You distribute must
|
| 108 |
+
include a readable copy of the attribution notices contained
|
| 109 |
+
within such NOTICE file, excluding those notices that do not
|
| 110 |
+
pertain to any part of the Derivative Works, in at least one
|
| 111 |
+
of the following places: within a NOTICE text file distributed
|
| 112 |
+
as part of the Derivative Works; within the Source form or
|
| 113 |
+
documentation, if provided along with the Derivative Works; or,
|
| 114 |
+
within a display generated by the Derivative Works, if and
|
| 115 |
+
wherever such third-party notices normally appear. The contents
|
| 116 |
+
of the NOTICE file are for informational purposes only and
|
| 117 |
+
do not modify the License. You may add Your own attribution
|
| 118 |
+
notices within Derivative Works that You distribute, alongside
|
| 119 |
+
or as an addendum to the NOTICE text from the Work, provided
|
| 120 |
+
that such additional attribution notices cannot be construed
|
| 121 |
+
as modifying the License.
|
| 122 |
+
|
| 123 |
+
You may add Your own copyright statement to Your modifications and
|
| 124 |
+
may provide additional or different license terms and conditions
|
| 125 |
+
for use, reproduction, or distribution of Your modifications, or
|
| 126 |
+
for any such Derivative Works as a whole, provided Your use,
|
| 127 |
+
reproduction, and distribution of the Work otherwise complies with
|
| 128 |
+
the conditions stated in this License.
|
| 129 |
+
|
| 130 |
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
| 131 |
+
any Contribution intentionally submitted for inclusion in the Work
|
| 132 |
+
by You to the Licensor shall be under the terms and conditions of
|
| 133 |
+
this License, without any additional terms or conditions.
|
| 134 |
+
Notwithstanding the above, nothing herein shall supersede or modify
|
| 135 |
+
the terms of any separate license agreement you may have executed
|
| 136 |
+
with Licensor regarding such Contributions.
|
| 137 |
+
|
| 138 |
+
6. Trademarks. This License does not grant permission to use the trade
|
| 139 |
+
names, trademarks, service marks, or product names of the Licensor,
|
| 140 |
+
except as required for reasonable and customary use in describing the
|
| 141 |
+
origin of the Work and reproducing the content of the NOTICE file.
|
| 142 |
+
|
| 143 |
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
| 144 |
+
agreed to in writing, Licensor provides the Work (and each
|
| 145 |
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
| 146 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
| 147 |
+
implied, including, without limitation, any warranties or conditions
|
| 148 |
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
| 149 |
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
| 150 |
+
appropriateness of using or redistributing the Work and assume any
|
| 151 |
+
risks associated with Your exercise of permissions under this License.
|
| 152 |
+
|
| 153 |
+
8. Limitation of Liability. In no event and under no legal theory,
|
| 154 |
+
whether in tort (including negligence), contract, or otherwise,
|
| 155 |
+
unless required by applicable law (such as deliberate and grossly
|
| 156 |
+
negligent acts) or agreed to in writing, shall any Contributor be
|
| 157 |
+
liable to You for damages, including any direct, indirect, special,
|
| 158 |
+
incidental, or consequential damages of any character arising as a
|
| 159 |
+
result of this License or out of the use or inability to use the
|
| 160 |
+
Work (including but not limited to damages for loss of goodwill,
|
| 161 |
+
work stoppage, computer failure or malfunction, or any and all
|
| 162 |
+
other commercial damages or losses), even if such Contributor
|
| 163 |
+
has been advised of the possibility of such damages.
|
| 164 |
+
|
| 165 |
+
9. Accepting Warranty or Additional Liability. While redistributing
|
| 166 |
+
the Work or Derivative Works thereof, You may choose to offer,
|
| 167 |
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
| 168 |
+
or other liability obligations and/or rights consistent with this
|
| 169 |
+
License. However, in accepting such obligations, You may act only
|
| 170 |
+
on Your own behalf and on Your sole responsibility, not on behalf
|
| 171 |
+
of any other Contributor, and only if You agree to indemnify,
|
| 172 |
+
defend, and hold each Contributor harmless for any liability
|
| 173 |
+
incurred by, or claims asserted against, such Contributor by reason
|
| 174 |
+
of your accepting any such warranty or additional liability.
|
| 175 |
+
|
| 176 |
+
END OF TERMS AND CONDITIONS
|
| 177 |
+
|
| 178 |
+
APPENDIX: How to apply the Apache License to your work.
|
| 179 |
+
|
| 180 |
+
To apply the Apache License to your work, attach the following
|
| 181 |
+
boilerplate notice, with the fields enclosed by brackets "{}"
|
| 182 |
+
replaced with your own identifying information. (Don't include
|
| 183 |
+
the brackets!) The text should be enclosed in the appropriate
|
| 184 |
+
comment syntax for the file format. We also recommend that a
|
| 185 |
+
file or class name and description of purpose be included on the
|
| 186 |
+
same "printed page" as the copyright notice for easier
|
| 187 |
+
identification within third-party archives.
|
| 188 |
+
|
| 189 |
+
Copyright {yyyy} {name of copyright owner}
|
| 190 |
+
|
| 191 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
| 192 |
+
you may not use this file except in compliance with the License.
|
| 193 |
+
You may obtain a copy of the License at
|
| 194 |
+
|
| 195 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
| 196 |
+
|
| 197 |
+
Unless required by applicable law or agreed to in writing, software
|
| 198 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
| 199 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 200 |
+
See the License for the specific language governing permissions and
|
| 201 |
+
limitations under the License.
|
| 202 |
+
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
BSD 3-Clause License
|
| 2 |
+
|
| 3 |
+
Copyright (c) 2013-2025, Kim Davies and contributors.
|
| 4 |
+
All rights reserved.
|
| 5 |
+
|
| 6 |
+
Redistribution and use in source and binary forms, with or without
|
| 7 |
+
modification, are permitted provided that the following conditions are
|
| 8 |
+
met:
|
| 9 |
+
|
| 10 |
+
1. Redistributions of source code must retain the above copyright
|
| 11 |
+
notice, this list of conditions and the following disclaimer.
|
| 12 |
+
|
| 13 |
+
2. Redistributions in binary form must reproduce the above copyright
|
| 14 |
+
notice, this list of conditions and the following disclaimer in the
|
| 15 |
+
documentation and/or other materials provided with the distribution.
|
| 16 |
+
|
| 17 |
+
3. Neither the name of the copyright holder nor the names of its
|
| 18 |
+
contributors may be used to endorse or promote products derived from
|
| 19 |
+
this software without specific prior written permission.
|
| 20 |
+
|
| 21 |
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
| 22 |
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
| 23 |
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
| 24 |
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
| 25 |
+
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
| 26 |
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
|
| 27 |
+
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
| 28 |
+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
| 29 |
+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
| 30 |
+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
| 31 |
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/msgpack/COPYING
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Copyright (C) 2008-2011 INADA Naoki <songofacandy@gmail.com>
|
| 2 |
+
|
| 3 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
| 4 |
+
you may not use this file except in compliance with the License.
|
| 5 |
+
You may obtain a copy of the License at
|
| 6 |
+
|
| 7 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
| 8 |
+
|
| 9 |
+
Unless required by applicable law or agreed to in writing, software
|
| 10 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
| 11 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 12 |
+
See the License for the specific language governing permissions and
|
| 13 |
+
limitations under the License.
|
| 14 |
+
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
This software is made available under the terms of *either* of the licenses
|
| 2 |
+
found in LICENSE.APACHE or LICENSE.BSD. Contributions to this software is made
|
| 3 |
+
under the terms of *both* these licenses.
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE
ADDED
|
@@ -0,0 +1,177 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
Apache License
|
| 3 |
+
Version 2.0, January 2004
|
| 4 |
+
http://www.apache.org/licenses/
|
| 5 |
+
|
| 6 |
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
| 7 |
+
|
| 8 |
+
1. Definitions.
|
| 9 |
+
|
| 10 |
+
"License" shall mean the terms and conditions for use, reproduction,
|
| 11 |
+
and distribution as defined by Sections 1 through 9 of this document.
|
| 12 |
+
|
| 13 |
+
"Licensor" shall mean the copyright owner or entity authorized by
|
| 14 |
+
the copyright owner that is granting the License.
|
| 15 |
+
|
| 16 |
+
"Legal Entity" shall mean the union of the acting entity and all
|
| 17 |
+
other entities that control, are controlled by, or are under common
|
| 18 |
+
control with that entity. For the purposes of this definition,
|
| 19 |
+
"control" means (i) the power, direct or indirect, to cause the
|
| 20 |
+
direction or management of such entity, whether by contract or
|
| 21 |
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
| 22 |
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
| 23 |
+
|
| 24 |
+
"You" (or "Your") shall mean an individual or Legal Entity
|
| 25 |
+
exercising permissions granted by this License.
|
| 26 |
+
|
| 27 |
+
"Source" form shall mean the preferred form for making modifications,
|
| 28 |
+
including but not limited to software source code, documentation
|
| 29 |
+
source, and configuration files.
|
| 30 |
+
|
| 31 |
+
"Object" form shall mean any form resulting from mechanical
|
| 32 |
+
transformation or translation of a Source form, including but
|
| 33 |
+
not limited to compiled object code, generated documentation,
|
| 34 |
+
and conversions to other media types.
|
| 35 |
+
|
| 36 |
+
"Work" shall mean the work of authorship, whether in Source or
|
| 37 |
+
Object form, made available under the License, as indicated by a
|
| 38 |
+
copyright notice that is included in or attached to the work
|
| 39 |
+
(an example is provided in the Appendix below).
|
| 40 |
+
|
| 41 |
+
"Derivative Works" shall mean any work, whether in Source or Object
|
| 42 |
+
form, that is based on (or derived from) the Work and for which the
|
| 43 |
+
editorial revisions, annotations, elaborations, or other modifications
|
| 44 |
+
represent, as a whole, an original work of authorship. For the purposes
|
| 45 |
+
of this License, Derivative Works shall not include works that remain
|
| 46 |
+
separable from, or merely link (or bind by name) to the interfaces of,
|
| 47 |
+
the Work and Derivative Works thereof.
|
| 48 |
+
|
| 49 |
+
"Contribution" shall mean any work of authorship, including
|
| 50 |
+
the original version of the Work and any modifications or additions
|
| 51 |
+
to that Work or Derivative Works thereof, that is intentionally
|
| 52 |
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
| 53 |
+
or by an individual or Legal Entity authorized to submit on behalf of
|
| 54 |
+
the copyright owner. For the purposes of this definition, "submitted"
|
| 55 |
+
means any form of electronic, verbal, or written communication sent
|
| 56 |
+
to the Licensor or its representatives, including but not limited to
|
| 57 |
+
communication on electronic mailing lists, source code control systems,
|
| 58 |
+
and issue tracking systems that are managed by, or on behalf of, the
|
| 59 |
+
Licensor for the purpose of discussing and improving the Work, but
|
| 60 |
+
excluding communication that is conspicuously marked or otherwise
|
| 61 |
+
designated in writing by the copyright owner as "Not a Contribution."
|
| 62 |
+
|
| 63 |
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
| 64 |
+
on behalf of whom a Contribution has been received by Licensor and
|
| 65 |
+
subsequently incorporated within the Work.
|
| 66 |
+
|
| 67 |
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
| 68 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 69 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 70 |
+
copyright license to reproduce, prepare Derivative Works of,
|
| 71 |
+
publicly display, publicly perform, sublicense, and distribute the
|
| 72 |
+
Work and such Derivative Works in Source or Object form.
|
| 73 |
+
|
| 74 |
+
3. Grant of Patent License. Subject to the terms and conditions of
|
| 75 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 76 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 77 |
+
(except as stated in this section) patent license to make, have made,
|
| 78 |
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
| 79 |
+
where such license applies only to those patent claims licensable
|
| 80 |
+
by such Contributor that are necessarily infringed by their
|
| 81 |
+
Contribution(s) alone or by combination of their Contribution(s)
|
| 82 |
+
with the Work to which such Contribution(s) was submitted. If You
|
| 83 |
+
institute patent litigation against any entity (including a
|
| 84 |
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
| 85 |
+
or a Contribution incorporated within the Work constitutes direct
|
| 86 |
+
or contributory patent infringement, then any patent licenses
|
| 87 |
+
granted to You under this License for that Work shall terminate
|
| 88 |
+
as of the date such litigation is filed.
|
| 89 |
+
|
| 90 |
+
4. Redistribution. You may reproduce and distribute copies of the
|
| 91 |
+
Work or Derivative Works thereof in any medium, with or without
|
| 92 |
+
modifications, and in Source or Object form, provided that You
|
| 93 |
+
meet the following conditions:
|
| 94 |
+
|
| 95 |
+
(a) You must give any other recipients of the Work or
|
| 96 |
+
Derivative Works a copy of this License; and
|
| 97 |
+
|
| 98 |
+
(b) You must cause any modified files to carry prominent notices
|
| 99 |
+
stating that You changed the files; and
|
| 100 |
+
|
| 101 |
+
(c) You must retain, in the Source form of any Derivative Works
|
| 102 |
+
that You distribute, all copyright, patent, trademark, and
|
| 103 |
+
attribution notices from the Source form of the Work,
|
| 104 |
+
excluding those notices that do not pertain to any part of
|
| 105 |
+
the Derivative Works; and
|
| 106 |
+
|
| 107 |
+
(d) If the Work includes a "NOTICE" text file as part of its
|
| 108 |
+
distribution, then any Derivative Works that You distribute must
|
| 109 |
+
include a readable copy of the attribution notices contained
|
| 110 |
+
within such NOTICE file, excluding those notices that do not
|
| 111 |
+
pertain to any part of the Derivative Works, in at least one
|
| 112 |
+
of the following places: within a NOTICE text file distributed
|
| 113 |
+
as part of the Derivative Works; within the Source form or
|
| 114 |
+
documentation, if provided along with the Derivative Works; or,
|
| 115 |
+
within a display generated by the Derivative Works, if and
|
| 116 |
+
wherever such third-party notices normally appear. The contents
|
| 117 |
+
of the NOTICE file are for informational purposes only and
|
| 118 |
+
do not modify the License. You may add Your own attribution
|
| 119 |
+
notices within Derivative Works that You distribute, alongside
|
| 120 |
+
or as an addendum to the NOTICE text from the Work, provided
|
| 121 |
+
that such additional attribution notices cannot be construed
|
| 122 |
+
as modifying the License.
|
| 123 |
+
|
| 124 |
+
You may add Your own copyright statement to Your modifications and
|
| 125 |
+
may provide additional or different license terms and conditions
|
| 126 |
+
for use, reproduction, or distribution of Your modifications, or
|
| 127 |
+
for any such Derivative Works as a whole, provided Your use,
|
| 128 |
+
reproduction, and distribution of the Work otherwise complies with
|
| 129 |
+
the conditions stated in this License.
|
| 130 |
+
|
| 131 |
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
| 132 |
+
any Contribution intentionally submitted for inclusion in the Work
|
| 133 |
+
by You to the Licensor shall be under the terms and conditions of
|
| 134 |
+
this License, without any additional terms or conditions.
|
| 135 |
+
Notwithstanding the above, nothing herein shall supersede or modify
|
| 136 |
+
the terms of any separate license agreement you may have executed
|
| 137 |
+
with Licensor regarding such Contributions.
|
| 138 |
+
|
| 139 |
+
6. Trademarks. This License does not grant permission to use the trade
|
| 140 |
+
names, trademarks, service marks, or product names of the Licensor,
|
| 141 |
+
except as required for reasonable and customary use in describing the
|
| 142 |
+
origin of the Work and reproducing the content of the NOTICE file.
|
| 143 |
+
|
| 144 |
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
| 145 |
+
agreed to in writing, Licensor provides the Work (and each
|
| 146 |
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
| 147 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
| 148 |
+
implied, including, without limitation, any warranties or conditions
|
| 149 |
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
| 150 |
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
| 151 |
+
appropriateness of using or redistributing the Work and assume any
|
| 152 |
+
risks associated with Your exercise of permissions under this License.
|
| 153 |
+
|
| 154 |
+
8. Limitation of Liability. In no event and under no legal theory,
|
| 155 |
+
whether in tort (including negligence), contract, or otherwise,
|
| 156 |
+
unless required by applicable law (such as deliberate and grossly
|
| 157 |
+
negligent acts) or agreed to in writing, shall any Contributor be
|
| 158 |
+
liable to You for damages, including any direct, indirect, special,
|
| 159 |
+
incidental, or consequential damages of any character arising as a
|
| 160 |
+
result of this License or out of the use or inability to use the
|
| 161 |
+
Work (including but not limited to damages for loss of goodwill,
|
| 162 |
+
work stoppage, computer failure or malfunction, or any and all
|
| 163 |
+
other commercial damages or losses), even if such Contributor
|
| 164 |
+
has been advised of the possibility of such damages.
|
| 165 |
+
|
| 166 |
+
9. Accepting Warranty or Additional Liability. While redistributing
|
| 167 |
+
the Work or Derivative Works thereof, You may choose to offer,
|
| 168 |
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
| 169 |
+
or other liability obligations and/or rights consistent with this
|
| 170 |
+
License. However, in accepting such obligations, You may act only
|
| 171 |
+
on Your own behalf and on Your sole responsibility, not on behalf
|
| 172 |
+
of any other Contributor, and only if You agree to indemnify,
|
| 173 |
+
defend, and hold each Contributor harmless for any liability
|
| 174 |
+
incurred by, or claims asserted against, such Contributor by reason
|
| 175 |
+
of your accepting any such warranty or additional liability.
|
| 176 |
+
|
| 177 |
+
END OF TERMS AND CONDITIONS
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Copyright (c) Donald Stufft and individual contributors.
|
| 2 |
+
All rights reserved.
|
| 3 |
+
|
| 4 |
+
Redistribution and use in source and binary forms, with or without
|
| 5 |
+
modification, are permitted provided that the following conditions are met:
|
| 6 |
+
|
| 7 |
+
1. Redistributions of source code must retain the above copyright notice,
|
| 8 |
+
this list of conditions and the following disclaimer.
|
| 9 |
+
|
| 10 |
+
2. Redistributions in binary form must reproduce the above copyright
|
| 11 |
+
notice, this list of conditions and the following disclaimer in the
|
| 12 |
+
documentation and/or other materials provided with the distribution.
|
| 13 |
+
|
| 14 |
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
| 15 |
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
| 16 |
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
| 17 |
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
| 18 |
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
| 19 |
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
| 20 |
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
| 21 |
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
| 22 |
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| 23 |
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 2 |
+
of this software and associated documentation files (the "Software"), to
|
| 3 |
+
deal in the Software without restriction, including without limitation the
|
| 4 |
+
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
| 5 |
+
sell copies of the Software, and to permit persons to whom the Software is
|
| 6 |
+
furnished to do so, subject to the following conditions:
|
| 7 |
+
|
| 8 |
+
The above copyright notice and this permission notice shall be included in
|
| 9 |
+
all copies or substantial portions of the Software.
|
| 10 |
+
|
| 11 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 12 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 13 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 14 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 15 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
| 16 |
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
| 17 |
+
IN THE SOFTWARE.
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
MIT License
|
| 2 |
+
|
| 3 |
+
Copyright (c) 2010-202x The platformdirs developers
|
| 4 |
+
|
| 5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 6 |
+
of this software and associated documentation files (the "Software"), to deal
|
| 7 |
+
in the Software without restriction, including without limitation the rights
|
| 8 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 9 |
+
copies of the Software, and to permit persons to whom the Software is
|
| 10 |
+
furnished to do so, subject to the following conditions:
|
| 11 |
+
|
| 12 |
+
The above copyright notice and this permission notice shall be included in all
|
| 13 |
+
copies or substantial portions of the Software.
|
| 14 |
+
|
| 15 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 16 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 17 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 18 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 19 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 20 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
| 21 |
+
SOFTWARE.
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pygments/LICENSE
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Copyright (c) 2006-2022 by the respective authors (see AUTHORS file).
|
| 2 |
+
All rights reserved.
|
| 3 |
+
|
| 4 |
+
Redistribution and use in source and binary forms, with or without
|
| 5 |
+
modification, are permitted provided that the following conditions are
|
| 6 |
+
met:
|
| 7 |
+
|
| 8 |
+
* Redistributions of source code must retain the above copyright
|
| 9 |
+
notice, this list of conditions and the following disclaimer.
|
| 10 |
+
|
| 11 |
+
* Redistributions in binary form must reproduce the above copyright
|
| 12 |
+
notice, this list of conditions and the following disclaimer in the
|
| 13 |
+
documentation and/or other materials provided with the distribution.
|
| 14 |
+
|
| 15 |
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
| 16 |
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
| 17 |
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
| 18 |
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
| 19 |
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
| 20 |
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
| 21 |
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
| 22 |
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
| 23 |
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
| 24 |
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| 25 |
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
The MIT License (MIT)
|
| 2 |
+
|
| 3 |
+
Copyright (c) 2017 Thomas Kluyver
|
| 4 |
+
|
| 5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 6 |
+
of this software and associated documentation files (the "Software"), to deal
|
| 7 |
+
in the Software without restriction, including without limitation the rights
|
| 8 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 9 |
+
copies of the Software, and to permit persons to whom the Software is
|
| 10 |
+
furnished to do so, subject to the following conditions:
|
| 11 |
+
|
| 12 |
+
The above copyright notice and this permission notice shall be included in
|
| 13 |
+
all copies or substantial portions of the Software.
|
| 14 |
+
|
| 15 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 16 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 17 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 18 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 19 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 20 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
| 21 |
+
THE SOFTWARE.
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/requests/LICENSE
ADDED
|
@@ -0,0 +1,175 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
Apache License
|
| 3 |
+
Version 2.0, January 2004
|
| 4 |
+
http://www.apache.org/licenses/
|
| 5 |
+
|
| 6 |
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
| 7 |
+
|
| 8 |
+
1. Definitions.
|
| 9 |
+
|
| 10 |
+
"License" shall mean the terms and conditions for use, reproduction,
|
| 11 |
+
and distribution as defined by Sections 1 through 9 of this document.
|
| 12 |
+
|
| 13 |
+
"Licensor" shall mean the copyright owner or entity authorized by
|
| 14 |
+
the copyright owner that is granting the License.
|
| 15 |
+
|
| 16 |
+
"Legal Entity" shall mean the union of the acting entity and all
|
| 17 |
+
other entities that control, are controlled by, or are under common
|
| 18 |
+
control with that entity. For the purposes of this definition,
|
| 19 |
+
"control" means (i) the power, direct or indirect, to cause the
|
| 20 |
+
direction or management of such entity, whether by contract or
|
| 21 |
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
| 22 |
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
| 23 |
+
|
| 24 |
+
"You" (or "Your") shall mean an individual or Legal Entity
|
| 25 |
+
exercising permissions granted by this License.
|
| 26 |
+
|
| 27 |
+
"Source" form shall mean the preferred form for making modifications,
|
| 28 |
+
including but not limited to software source code, documentation
|
| 29 |
+
source, and configuration files.
|
| 30 |
+
|
| 31 |
+
"Object" form shall mean any form resulting from mechanical
|
| 32 |
+
transformation or translation of a Source form, including but
|
| 33 |
+
not limited to compiled object code, generated documentation,
|
| 34 |
+
and conversions to other media types.
|
| 35 |
+
|
| 36 |
+
"Work" shall mean the work of authorship, whether in Source or
|
| 37 |
+
Object form, made available under the License, as indicated by a
|
| 38 |
+
copyright notice that is included in or attached to the work
|
| 39 |
+
(an example is provided in the Appendix below).
|
| 40 |
+
|
| 41 |
+
"Derivative Works" shall mean any work, whether in Source or Object
|
| 42 |
+
form, that is based on (or derived from) the Work and for which the
|
| 43 |
+
editorial revisions, annotations, elaborations, or other modifications
|
| 44 |
+
represent, as a whole, an original work of authorship. For the purposes
|
| 45 |
+
of this License, Derivative Works shall not include works that remain
|
| 46 |
+
separable from, or merely link (or bind by name) to the interfaces of,
|
| 47 |
+
the Work and Derivative Works thereof.
|
| 48 |
+
|
| 49 |
+
"Contribution" shall mean any work of authorship, including
|
| 50 |
+
the original version of the Work and any modifications or additions
|
| 51 |
+
to that Work or Derivative Works thereof, that is intentionally
|
| 52 |
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
| 53 |
+
or by an individual or Legal Entity authorized to submit on behalf of
|
| 54 |
+
the copyright owner. For the purposes of this definition, "submitted"
|
| 55 |
+
means any form of electronic, verbal, or written communication sent
|
| 56 |
+
to the Licensor or its representatives, including but not limited to
|
| 57 |
+
communication on electronic mailing lists, source code control systems,
|
| 58 |
+
and issue tracking systems that are managed by, or on behalf of, the
|
| 59 |
+
Licensor for the purpose of discussing and improving the Work, but
|
| 60 |
+
excluding communication that is conspicuously marked or otherwise
|
| 61 |
+
designated in writing by the copyright owner as "Not a Contribution."
|
| 62 |
+
|
| 63 |
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
| 64 |
+
on behalf of whom a Contribution has been received by Licensor and
|
| 65 |
+
subsequently incorporated within the Work.
|
| 66 |
+
|
| 67 |
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
| 68 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 69 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 70 |
+
copyright license to reproduce, prepare Derivative Works of,
|
| 71 |
+
publicly display, publicly perform, sublicense, and distribute the
|
| 72 |
+
Work and such Derivative Works in Source or Object form.
|
| 73 |
+
|
| 74 |
+
3. Grant of Patent License. Subject to the terms and conditions of
|
| 75 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 76 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 77 |
+
(except as stated in this section) patent license to make, have made,
|
| 78 |
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
| 79 |
+
where such license applies only to those patent claims licensable
|
| 80 |
+
by such Contributor that are necessarily infringed by their
|
| 81 |
+
Contribution(s) alone or by combination of their Contribution(s)
|
| 82 |
+
with the Work to which such Contribution(s) was submitted. If You
|
| 83 |
+
institute patent litigation against any entity (including a
|
| 84 |
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
| 85 |
+
or a Contribution incorporated within the Work constitutes direct
|
| 86 |
+
or contributory patent infringement, then any patent licenses
|
| 87 |
+
granted to You under this License for that Work shall terminate
|
| 88 |
+
as of the date such litigation is filed.
|
| 89 |
+
|
| 90 |
+
4. Redistribution. You may reproduce and distribute copies of the
|
| 91 |
+
Work or Derivative Works thereof in any medium, with or without
|
| 92 |
+
modifications, and in Source or Object form, provided that You
|
| 93 |
+
meet the following conditions:
|
| 94 |
+
|
| 95 |
+
(a) You must give any other recipients of the Work or
|
| 96 |
+
Derivative Works a copy of this License; and
|
| 97 |
+
|
| 98 |
+
(b) You must cause any modified files to carry prominent notices
|
| 99 |
+
stating that You changed the files; and
|
| 100 |
+
|
| 101 |
+
(c) You must retain, in the Source form of any Derivative Works
|
| 102 |
+
that You distribute, all copyright, patent, trademark, and
|
| 103 |
+
attribution notices from the Source form of the Work,
|
| 104 |
+
excluding those notices that do not pertain to any part of
|
| 105 |
+
the Derivative Works; and
|
| 106 |
+
|
| 107 |
+
(d) If the Work includes a "NOTICE" text file as part of its
|
| 108 |
+
distribution, then any Derivative Works that You distribute must
|
| 109 |
+
include a readable copy of the attribution notices contained
|
| 110 |
+
within such NOTICE file, excluding those notices that do not
|
| 111 |
+
pertain to any part of the Derivative Works, in at least one
|
| 112 |
+
of the following places: within a NOTICE text file distributed
|
| 113 |
+
as part of the Derivative Works; within the Source form or
|
| 114 |
+
documentation, if provided along with the Derivative Works; or,
|
| 115 |
+
within a display generated by the Derivative Works, if and
|
| 116 |
+
wherever such third-party notices normally appear. The contents
|
| 117 |
+
of the NOTICE file are for informational purposes only and
|
| 118 |
+
do not modify the License. You may add Your own attribution
|
| 119 |
+
notices within Derivative Works that You distribute, alongside
|
| 120 |
+
or as an addendum to the NOTICE text from the Work, provided
|
| 121 |
+
that such additional attribution notices cannot be construed
|
| 122 |
+
as modifying the License.
|
| 123 |
+
|
| 124 |
+
You may add Your own copyright statement to Your modifications and
|
| 125 |
+
may provide additional or different license terms and conditions
|
| 126 |
+
for use, reproduction, or distribution of Your modifications, or
|
| 127 |
+
for any such Derivative Works as a whole, provided Your use,
|
| 128 |
+
reproduction, and distribution of the Work otherwise complies with
|
| 129 |
+
the conditions stated in this License.
|
| 130 |
+
|
| 131 |
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
| 132 |
+
any Contribution intentionally submitted for inclusion in the Work
|
| 133 |
+
by You to the Licensor shall be under the terms and conditions of
|
| 134 |
+
this License, without any additional terms or conditions.
|
| 135 |
+
Notwithstanding the above, nothing herein shall supersede or modify
|
| 136 |
+
the terms of any separate license agreement you may have executed
|
| 137 |
+
with Licensor regarding such Contributions.
|
| 138 |
+
|
| 139 |
+
6. Trademarks. This License does not grant permission to use the trade
|
| 140 |
+
names, trademarks, service marks, or product names of the Licensor,
|
| 141 |
+
except as required for reasonable and customary use in describing the
|
| 142 |
+
origin of the Work and reproducing the content of the NOTICE file.
|
| 143 |
+
|
| 144 |
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
| 145 |
+
agreed to in writing, Licensor provides the Work (and each
|
| 146 |
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
| 147 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
| 148 |
+
implied, including, without limitation, any warranties or conditions
|
| 149 |
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
| 150 |
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
| 151 |
+
appropriateness of using or redistributing the Work and assume any
|
| 152 |
+
risks associated with Your exercise of permissions under this License.
|
| 153 |
+
|
| 154 |
+
8. Limitation of Liability. In no event and under no legal theory,
|
| 155 |
+
whether in tort (including negligence), contract, or otherwise,
|
| 156 |
+
unless required by applicable law (such as deliberate and grossly
|
| 157 |
+
negligent acts) or agreed to in writing, shall any Contributor be
|
| 158 |
+
liable to You for damages, including any direct, indirect, special,
|
| 159 |
+
incidental, or consequential damages of any character arising as a
|
| 160 |
+
result of this License or out of the use or inability to use the
|
| 161 |
+
Work (including but not limited to damages for loss of goodwill,
|
| 162 |
+
work stoppage, computer failure or malfunction, or any and all
|
| 163 |
+
other commercial damages or losses), even if such Contributor
|
| 164 |
+
has been advised of the possibility of such damages.
|
| 165 |
+
|
| 166 |
+
9. Accepting Warranty or Additional Liability. While redistributing
|
| 167 |
+
the Work or Derivative Works thereof, You may choose to offer,
|
| 168 |
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
| 169 |
+
or other liability obligations and/or rights consistent with this
|
| 170 |
+
License. However, in accepting such obligations, You may act only
|
| 171 |
+
on Your own behalf and on Your sole responsibility, not on behalf
|
| 172 |
+
of any other Contributor, and only if You agree to indemnify,
|
| 173 |
+
defend, and hold each Contributor harmless for any liability
|
| 174 |
+
incurred by, or claims asserted against, such Contributor by reason
|
| 175 |
+
of your accepting any such warranty or additional liability.
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Copyright (c) 2018, Tzu-ping Chung <uranusjr@gmail.com>
|
| 2 |
+
|
| 3 |
+
Permission to use, copy, modify, and distribute this software for any
|
| 4 |
+
purpose with or without fee is hereby granted, provided that the above
|
| 5 |
+
copyright notice and this permission notice appear in all copies.
|
| 6 |
+
|
| 7 |
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
| 8 |
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
| 9 |
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
| 10 |
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
| 11 |
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
| 12 |
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
| 13 |
+
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/rich/LICENSE
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Copyright (c) 2020 Will McGugan
|
| 2 |
+
|
| 3 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 4 |
+
of this software and associated documentation files (the "Software"), to deal
|
| 5 |
+
in the Software without restriction, including without limitation the rights
|
| 6 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 7 |
+
copies of the Software, and to permit persons to whom the Software is
|
| 8 |
+
furnished to do so, subject to the following conditions:
|
| 9 |
+
|
| 10 |
+
The above copyright notice and this permission notice shall be included in all
|
| 11 |
+
copies or substantial portions of the Software.
|
| 12 |
+
|
| 13 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 14 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 15 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 16 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 17 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 18 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
| 19 |
+
SOFTWARE.
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
MIT License
|
| 2 |
+
|
| 3 |
+
Copyright (c) 2021 Taneli Hukkinen
|
| 4 |
+
|
| 5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 6 |
+
of this software and associated documentation files (the "Software"), to deal
|
| 7 |
+
in the Software without restriction, including without limitation the rights
|
| 8 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 9 |
+
copies of the Software, and to permit persons to whom the Software is
|
| 10 |
+
furnished to do so, subject to the following conditions:
|
| 11 |
+
|
| 12 |
+
The above copyright notice and this permission notice shall be included in all
|
| 13 |
+
copies or substantial portions of the Software.
|
| 14 |
+
|
| 15 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 16 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 17 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 18 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 19 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 20 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
| 21 |
+
SOFTWARE.
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
MIT License
|
| 2 |
+
|
| 3 |
+
Copyright (c) 2021 Taneli Hukkinen
|
| 4 |
+
|
| 5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 6 |
+
of this software and associated documentation files (the "Software"), to deal
|
| 7 |
+
in the Software without restriction, including without limitation the rights
|
| 8 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 9 |
+
copies of the Software, and to permit persons to whom the Software is
|
| 10 |
+
furnished to do so, subject to the following conditions:
|
| 11 |
+
|
| 12 |
+
The above copyright notice and this permission notice shall be included in all
|
| 13 |
+
copies or substantial portions of the Software.
|
| 14 |
+
|
| 15 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 16 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 17 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 18 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 19 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 20 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
| 21 |
+
SOFTWARE.
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/truststore/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
The MIT License (MIT)
|
| 2 |
+
|
| 3 |
+
Copyright (c) 2022 Seth Michael Larson
|
| 4 |
+
|
| 5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 6 |
+
of this software and associated documentation files (the "Software"), to deal
|
| 7 |
+
in the Software without restriction, including without limitation the rights
|
| 8 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 9 |
+
copies of the Software, and to permit persons to whom the Software is
|
| 10 |
+
furnished to do so, subject to the following conditions:
|
| 11 |
+
|
| 12 |
+
The above copyright notice and this permission notice shall be included in
|
| 13 |
+
all copies or substantial portions of the Software.
|
| 14 |
+
|
| 15 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 16 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 17 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 18 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 19 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 20 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
| 21 |
+
THE SOFTWARE.
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
MIT License
|
| 2 |
+
|
| 3 |
+
Copyright (c) 2008-2020 Andrey Petrov and contributors (see CONTRIBUTORS.txt)
|
| 4 |
+
|
| 5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 6 |
+
of this software and associated documentation files (the "Software"), to deal
|
| 7 |
+
in the Software without restriction, including without limitation the rights
|
| 8 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 9 |
+
copies of the Software, and to permit persons to whom the Software is
|
| 10 |
+
furnished to do so, subject to the following conditions:
|
| 11 |
+
|
| 12 |
+
The above copyright notice and this permission notice shall be included in all
|
| 13 |
+
copies or substantial portions of the Software.
|
| 14 |
+
|
| 15 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 16 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 17 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 18 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 19 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 20 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
| 21 |
+
SOFTWARE.
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__init__.py
ADDED
|
File without changes
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/resolution/legacy/resolver.py
ADDED
|
@@ -0,0 +1,598 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Dependency Resolution
|
| 2 |
+
|
| 3 |
+
The dependency resolution in pip is performed as follows:
|
| 4 |
+
|
| 5 |
+
for top-level requirements:
|
| 6 |
+
a. only one spec allowed per project, regardless of conflicts or not.
|
| 7 |
+
otherwise a "double requirement" exception is raised
|
| 8 |
+
b. they override sub-dependency requirements.
|
| 9 |
+
for sub-dependencies
|
| 10 |
+
a. "first found, wins" (where the order is breadth first)
|
| 11 |
+
"""
|
| 12 |
+
|
| 13 |
+
from __future__ import annotations
|
| 14 |
+
|
| 15 |
+
import logging
|
| 16 |
+
import sys
|
| 17 |
+
from collections import defaultdict
|
| 18 |
+
from collections.abc import Iterable
|
| 19 |
+
from itertools import chain
|
| 20 |
+
from typing import Optional
|
| 21 |
+
|
| 22 |
+
from pip._vendor.packaging import specifiers
|
| 23 |
+
from pip._vendor.packaging.requirements import Requirement
|
| 24 |
+
|
| 25 |
+
from pip._internal.cache import WheelCache
|
| 26 |
+
from pip._internal.exceptions import (
|
| 27 |
+
BestVersionAlreadyInstalled,
|
| 28 |
+
DistributionNotFound,
|
| 29 |
+
HashError,
|
| 30 |
+
HashErrors,
|
| 31 |
+
InstallationError,
|
| 32 |
+
NoneMetadataError,
|
| 33 |
+
UnsupportedPythonVersion,
|
| 34 |
+
)
|
| 35 |
+
from pip._internal.index.package_finder import PackageFinder
|
| 36 |
+
from pip._internal.metadata import BaseDistribution
|
| 37 |
+
from pip._internal.models.link import Link
|
| 38 |
+
from pip._internal.models.wheel import Wheel
|
| 39 |
+
from pip._internal.operations.prepare import RequirementPreparer
|
| 40 |
+
from pip._internal.req.req_install import (
|
| 41 |
+
InstallRequirement,
|
| 42 |
+
check_invalid_constraint_type,
|
| 43 |
+
)
|
| 44 |
+
from pip._internal.req.req_set import RequirementSet
|
| 45 |
+
from pip._internal.resolution.base import BaseResolver, InstallRequirementProvider
|
| 46 |
+
from pip._internal.utils import compatibility_tags
|
| 47 |
+
from pip._internal.utils.compatibility_tags import get_supported
|
| 48 |
+
from pip._internal.utils.direct_url_helpers import direct_url_from_link
|
| 49 |
+
from pip._internal.utils.logging import indent_log
|
| 50 |
+
from pip._internal.utils.misc import normalize_version_info
|
| 51 |
+
from pip._internal.utils.packaging import check_requires_python
|
| 52 |
+
|
| 53 |
+
logger = logging.getLogger(__name__)
|
| 54 |
+
|
| 55 |
+
DiscoveredDependencies = defaultdict[Optional[str], list[InstallRequirement]]
|
| 56 |
+
|
| 57 |
+
|
| 58 |
+
def _check_dist_requires_python(
|
| 59 |
+
dist: BaseDistribution,
|
| 60 |
+
version_info: tuple[int, int, int],
|
| 61 |
+
ignore_requires_python: bool = False,
|
| 62 |
+
) -> None:
|
| 63 |
+
"""
|
| 64 |
+
Check whether the given Python version is compatible with a distribution's
|
| 65 |
+
"Requires-Python" value.
|
| 66 |
+
|
| 67 |
+
:param version_info: A 3-tuple of ints representing the Python
|
| 68 |
+
major-minor-micro version to check.
|
| 69 |
+
:param ignore_requires_python: Whether to ignore the "Requires-Python"
|
| 70 |
+
value if the given Python version isn't compatible.
|
| 71 |
+
|
| 72 |
+
:raises UnsupportedPythonVersion: When the given Python version isn't
|
| 73 |
+
compatible.
|
| 74 |
+
"""
|
| 75 |
+
# This idiosyncratically converts the SpecifierSet to str and let
|
| 76 |
+
# check_requires_python then parse it again into SpecifierSet. But this
|
| 77 |
+
# is the legacy resolver so I'm just not going to bother refactoring.
|
| 78 |
+
try:
|
| 79 |
+
requires_python = str(dist.requires_python)
|
| 80 |
+
except FileNotFoundError as e:
|
| 81 |
+
raise NoneMetadataError(dist, str(e))
|
| 82 |
+
try:
|
| 83 |
+
is_compatible = check_requires_python(
|
| 84 |
+
requires_python,
|
| 85 |
+
version_info=version_info,
|
| 86 |
+
)
|
| 87 |
+
except specifiers.InvalidSpecifier as exc:
|
| 88 |
+
logger.warning(
|
| 89 |
+
"Package %r has an invalid Requires-Python: %s", dist.raw_name, exc
|
| 90 |
+
)
|
| 91 |
+
return
|
| 92 |
+
|
| 93 |
+
if is_compatible:
|
| 94 |
+
return
|
| 95 |
+
|
| 96 |
+
version = ".".join(map(str, version_info))
|
| 97 |
+
if ignore_requires_python:
|
| 98 |
+
logger.debug(
|
| 99 |
+
"Ignoring failed Requires-Python check for package %r: %s not in %r",
|
| 100 |
+
dist.raw_name,
|
| 101 |
+
version,
|
| 102 |
+
requires_python,
|
| 103 |
+
)
|
| 104 |
+
return
|
| 105 |
+
|
| 106 |
+
raise UnsupportedPythonVersion(
|
| 107 |
+
f"Package {dist.raw_name!r} requires a different Python: "
|
| 108 |
+
f"{version} not in {requires_python!r}"
|
| 109 |
+
)
|
| 110 |
+
|
| 111 |
+
|
| 112 |
+
class Resolver(BaseResolver):
|
| 113 |
+
"""Resolves which packages need to be installed/uninstalled to perform \
|
| 114 |
+
the requested operation without breaking the requirements of any package.
|
| 115 |
+
"""
|
| 116 |
+
|
| 117 |
+
_allowed_strategies = {"eager", "only-if-needed", "to-satisfy-only"}
|
| 118 |
+
|
| 119 |
+
def __init__(
|
| 120 |
+
self,
|
| 121 |
+
preparer: RequirementPreparer,
|
| 122 |
+
finder: PackageFinder,
|
| 123 |
+
wheel_cache: WheelCache | None,
|
| 124 |
+
make_install_req: InstallRequirementProvider,
|
| 125 |
+
use_user_site: bool,
|
| 126 |
+
ignore_dependencies: bool,
|
| 127 |
+
ignore_installed: bool,
|
| 128 |
+
ignore_requires_python: bool,
|
| 129 |
+
force_reinstall: bool,
|
| 130 |
+
upgrade_strategy: str,
|
| 131 |
+
py_version_info: tuple[int, ...] | None = None,
|
| 132 |
+
) -> None:
|
| 133 |
+
super().__init__()
|
| 134 |
+
assert upgrade_strategy in self._allowed_strategies
|
| 135 |
+
|
| 136 |
+
if py_version_info is None:
|
| 137 |
+
py_version_info = sys.version_info[:3]
|
| 138 |
+
else:
|
| 139 |
+
py_version_info = normalize_version_info(py_version_info)
|
| 140 |
+
|
| 141 |
+
self._py_version_info = py_version_info
|
| 142 |
+
|
| 143 |
+
self.preparer = preparer
|
| 144 |
+
self.finder = finder
|
| 145 |
+
self.wheel_cache = wheel_cache
|
| 146 |
+
|
| 147 |
+
self.upgrade_strategy = upgrade_strategy
|
| 148 |
+
self.force_reinstall = force_reinstall
|
| 149 |
+
self.ignore_dependencies = ignore_dependencies
|
| 150 |
+
self.ignore_installed = ignore_installed
|
| 151 |
+
self.ignore_requires_python = ignore_requires_python
|
| 152 |
+
self.use_user_site = use_user_site
|
| 153 |
+
self._make_install_req = make_install_req
|
| 154 |
+
|
| 155 |
+
self._discovered_dependencies: DiscoveredDependencies = defaultdict(list)
|
| 156 |
+
|
| 157 |
+
def resolve(
|
| 158 |
+
self, root_reqs: list[InstallRequirement], check_supported_wheels: bool
|
| 159 |
+
) -> RequirementSet:
|
| 160 |
+
"""Resolve what operations need to be done
|
| 161 |
+
|
| 162 |
+
As a side-effect of this method, the packages (and their dependencies)
|
| 163 |
+
are downloaded, unpacked and prepared for installation. This
|
| 164 |
+
preparation is done by ``pip.operations.prepare``.
|
| 165 |
+
|
| 166 |
+
Once PyPI has static dependency metadata available, it would be
|
| 167 |
+
possible to move the preparation to become a step separated from
|
| 168 |
+
dependency resolution.
|
| 169 |
+
"""
|
| 170 |
+
requirement_set = RequirementSet(check_supported_wheels=check_supported_wheels)
|
| 171 |
+
for req in root_reqs:
|
| 172 |
+
if req.constraint:
|
| 173 |
+
check_invalid_constraint_type(req)
|
| 174 |
+
self._add_requirement_to_set(requirement_set, req)
|
| 175 |
+
|
| 176 |
+
# Actually prepare the files, and collect any exceptions. Most hash
|
| 177 |
+
# exceptions cannot be checked ahead of time, because
|
| 178 |
+
# _populate_link() needs to be called before we can make decisions
|
| 179 |
+
# based on link type.
|
| 180 |
+
discovered_reqs: list[InstallRequirement] = []
|
| 181 |
+
hash_errors = HashErrors()
|
| 182 |
+
for req in chain(requirement_set.all_requirements, discovered_reqs):
|
| 183 |
+
try:
|
| 184 |
+
discovered_reqs.extend(self._resolve_one(requirement_set, req))
|
| 185 |
+
except HashError as exc:
|
| 186 |
+
exc.req = req
|
| 187 |
+
hash_errors.append(exc)
|
| 188 |
+
|
| 189 |
+
if hash_errors:
|
| 190 |
+
raise hash_errors
|
| 191 |
+
|
| 192 |
+
return requirement_set
|
| 193 |
+
|
| 194 |
+
def _add_requirement_to_set(
|
| 195 |
+
self,
|
| 196 |
+
requirement_set: RequirementSet,
|
| 197 |
+
install_req: InstallRequirement,
|
| 198 |
+
parent_req_name: str | None = None,
|
| 199 |
+
extras_requested: Iterable[str] | None = None,
|
| 200 |
+
) -> tuple[list[InstallRequirement], InstallRequirement | None]:
|
| 201 |
+
"""Add install_req as a requirement to install.
|
| 202 |
+
|
| 203 |
+
:param parent_req_name: The name of the requirement that needed this
|
| 204 |
+
added. The name is used because when multiple unnamed requirements
|
| 205 |
+
resolve to the same name, we could otherwise end up with dependency
|
| 206 |
+
links that point outside the Requirements set. parent_req must
|
| 207 |
+
already be added. Note that None implies that this is a user
|
| 208 |
+
supplied requirement, vs an inferred one.
|
| 209 |
+
:param extras_requested: an iterable of extras used to evaluate the
|
| 210 |
+
environment markers.
|
| 211 |
+
:return: Additional requirements to scan. That is either [] if
|
| 212 |
+
the requirement is not applicable, or [install_req] if the
|
| 213 |
+
requirement is applicable and has just been added.
|
| 214 |
+
"""
|
| 215 |
+
# If the markers do not match, ignore this requirement.
|
| 216 |
+
if not install_req.match_markers(extras_requested):
|
| 217 |
+
logger.info(
|
| 218 |
+
"Ignoring %s: markers '%s' don't match your environment",
|
| 219 |
+
install_req.name,
|
| 220 |
+
install_req.markers,
|
| 221 |
+
)
|
| 222 |
+
return [], None
|
| 223 |
+
|
| 224 |
+
# If the wheel is not supported, raise an error.
|
| 225 |
+
# Should check this after filtering out based on environment markers to
|
| 226 |
+
# allow specifying different wheels based on the environment/OS, in a
|
| 227 |
+
# single requirements file.
|
| 228 |
+
if install_req.link and install_req.link.is_wheel:
|
| 229 |
+
wheel = Wheel(install_req.link.filename)
|
| 230 |
+
tags = compatibility_tags.get_supported()
|
| 231 |
+
if requirement_set.check_supported_wheels and not wheel.supported(tags):
|
| 232 |
+
raise InstallationError(
|
| 233 |
+
f"{wheel.filename} is not a supported wheel on this platform."
|
| 234 |
+
)
|
| 235 |
+
|
| 236 |
+
# This next bit is really a sanity check.
|
| 237 |
+
assert (
|
| 238 |
+
not install_req.user_supplied or parent_req_name is None
|
| 239 |
+
), "a user supplied req shouldn't have a parent"
|
| 240 |
+
|
| 241 |
+
# Unnamed requirements are scanned again and the requirement won't be
|
| 242 |
+
# added as a dependency until after scanning.
|
| 243 |
+
if not install_req.name:
|
| 244 |
+
requirement_set.add_unnamed_requirement(install_req)
|
| 245 |
+
return [install_req], None
|
| 246 |
+
|
| 247 |
+
try:
|
| 248 |
+
existing_req: InstallRequirement | None = requirement_set.get_requirement(
|
| 249 |
+
install_req.name
|
| 250 |
+
)
|
| 251 |
+
except KeyError:
|
| 252 |
+
existing_req = None
|
| 253 |
+
|
| 254 |
+
has_conflicting_requirement = (
|
| 255 |
+
parent_req_name is None
|
| 256 |
+
and existing_req
|
| 257 |
+
and not existing_req.constraint
|
| 258 |
+
and existing_req.extras == install_req.extras
|
| 259 |
+
and existing_req.req
|
| 260 |
+
and install_req.req
|
| 261 |
+
and existing_req.req.specifier != install_req.req.specifier
|
| 262 |
+
)
|
| 263 |
+
if has_conflicting_requirement:
|
| 264 |
+
raise InstallationError(
|
| 265 |
+
f"Double requirement given: {install_req} "
|
| 266 |
+
f"(already in {existing_req}, name={install_req.name!r})"
|
| 267 |
+
)
|
| 268 |
+
|
| 269 |
+
# When no existing requirement exists, add the requirement as a
|
| 270 |
+
# dependency and it will be scanned again after.
|
| 271 |
+
if not existing_req:
|
| 272 |
+
requirement_set.add_named_requirement(install_req)
|
| 273 |
+
# We'd want to rescan this requirement later
|
| 274 |
+
return [install_req], install_req
|
| 275 |
+
|
| 276 |
+
# Assume there's no need to scan, and that we've already
|
| 277 |
+
# encountered this for scanning.
|
| 278 |
+
if install_req.constraint or not existing_req.constraint:
|
| 279 |
+
return [], existing_req
|
| 280 |
+
|
| 281 |
+
does_not_satisfy_constraint = install_req.link and not (
|
| 282 |
+
existing_req.link and install_req.link.path == existing_req.link.path
|
| 283 |
+
)
|
| 284 |
+
if does_not_satisfy_constraint:
|
| 285 |
+
raise InstallationError(
|
| 286 |
+
f"Could not satisfy constraints for '{install_req.name}': "
|
| 287 |
+
"installation from path or url cannot be "
|
| 288 |
+
"constrained to a version"
|
| 289 |
+
)
|
| 290 |
+
# If we're now installing a constraint, mark the existing
|
| 291 |
+
# object for real installation.
|
| 292 |
+
existing_req.constraint = False
|
| 293 |
+
# If we're now installing a user supplied requirement,
|
| 294 |
+
# mark the existing object as such.
|
| 295 |
+
if install_req.user_supplied:
|
| 296 |
+
existing_req.user_supplied = True
|
| 297 |
+
existing_req.extras = tuple(
|
| 298 |
+
sorted(set(existing_req.extras) | set(install_req.extras))
|
| 299 |
+
)
|
| 300 |
+
logger.debug(
|
| 301 |
+
"Setting %s extras to: %s",
|
| 302 |
+
existing_req,
|
| 303 |
+
existing_req.extras,
|
| 304 |
+
)
|
| 305 |
+
# Return the existing requirement for addition to the parent and
|
| 306 |
+
# scanning again.
|
| 307 |
+
return [existing_req], existing_req
|
| 308 |
+
|
| 309 |
+
def _is_upgrade_allowed(self, req: InstallRequirement) -> bool:
|
| 310 |
+
if self.upgrade_strategy == "to-satisfy-only":
|
| 311 |
+
return False
|
| 312 |
+
elif self.upgrade_strategy == "eager":
|
| 313 |
+
return True
|
| 314 |
+
else:
|
| 315 |
+
assert self.upgrade_strategy == "only-if-needed"
|
| 316 |
+
return req.user_supplied or req.constraint
|
| 317 |
+
|
| 318 |
+
def _set_req_to_reinstall(self, req: InstallRequirement) -> None:
|
| 319 |
+
"""
|
| 320 |
+
Set a requirement to be installed.
|
| 321 |
+
"""
|
| 322 |
+
# Don't uninstall the conflict if doing a user install and the
|
| 323 |
+
# conflict is not a user install.
|
| 324 |
+
assert req.satisfied_by is not None
|
| 325 |
+
if not self.use_user_site or req.satisfied_by.in_usersite:
|
| 326 |
+
req.should_reinstall = True
|
| 327 |
+
req.satisfied_by = None
|
| 328 |
+
|
| 329 |
+
def _check_skip_installed(self, req_to_install: InstallRequirement) -> str | None:
|
| 330 |
+
"""Check if req_to_install should be skipped.
|
| 331 |
+
|
| 332 |
+
This will check if the req is installed, and whether we should upgrade
|
| 333 |
+
or reinstall it, taking into account all the relevant user options.
|
| 334 |
+
|
| 335 |
+
After calling this req_to_install will only have satisfied_by set to
|
| 336 |
+
None if the req_to_install is to be upgraded/reinstalled etc. Any
|
| 337 |
+
other value will be a dist recording the current thing installed that
|
| 338 |
+
satisfies the requirement.
|
| 339 |
+
|
| 340 |
+
Note that for vcs urls and the like we can't assess skipping in this
|
| 341 |
+
routine - we simply identify that we need to pull the thing down,
|
| 342 |
+
then later on it is pulled down and introspected to assess upgrade/
|
| 343 |
+
reinstalls etc.
|
| 344 |
+
|
| 345 |
+
:return: A text reason for why it was skipped, or None.
|
| 346 |
+
"""
|
| 347 |
+
if self.ignore_installed:
|
| 348 |
+
return None
|
| 349 |
+
|
| 350 |
+
req_to_install.check_if_exists(self.use_user_site)
|
| 351 |
+
if not req_to_install.satisfied_by:
|
| 352 |
+
return None
|
| 353 |
+
|
| 354 |
+
if self.force_reinstall:
|
| 355 |
+
self._set_req_to_reinstall(req_to_install)
|
| 356 |
+
return None
|
| 357 |
+
|
| 358 |
+
if not self._is_upgrade_allowed(req_to_install):
|
| 359 |
+
if self.upgrade_strategy == "only-if-needed":
|
| 360 |
+
return "already satisfied, skipping upgrade"
|
| 361 |
+
return "already satisfied"
|
| 362 |
+
|
| 363 |
+
# Check for the possibility of an upgrade. For link-based
|
| 364 |
+
# requirements we have to pull the tree down and inspect to assess
|
| 365 |
+
# the version #, so it's handled way down.
|
| 366 |
+
if not req_to_install.link:
|
| 367 |
+
try:
|
| 368 |
+
self.finder.find_requirement(req_to_install, upgrade=True)
|
| 369 |
+
except BestVersionAlreadyInstalled:
|
| 370 |
+
# Then the best version is installed.
|
| 371 |
+
return "already up-to-date"
|
| 372 |
+
except DistributionNotFound:
|
| 373 |
+
# No distribution found, so we squash the error. It will
|
| 374 |
+
# be raised later when we re-try later to do the install.
|
| 375 |
+
# Why don't we just raise here?
|
| 376 |
+
pass
|
| 377 |
+
|
| 378 |
+
self._set_req_to_reinstall(req_to_install)
|
| 379 |
+
return None
|
| 380 |
+
|
| 381 |
+
def _find_requirement_link(self, req: InstallRequirement) -> Link | None:
|
| 382 |
+
upgrade = self._is_upgrade_allowed(req)
|
| 383 |
+
best_candidate = self.finder.find_requirement(req, upgrade)
|
| 384 |
+
if not best_candidate:
|
| 385 |
+
return None
|
| 386 |
+
|
| 387 |
+
# Log a warning per PEP 592 if necessary before returning.
|
| 388 |
+
link = best_candidate.link
|
| 389 |
+
if link.is_yanked:
|
| 390 |
+
reason = link.yanked_reason or "<none given>"
|
| 391 |
+
msg = (
|
| 392 |
+
# Mark this as a unicode string to prevent
|
| 393 |
+
# "UnicodeEncodeError: 'ascii' codec can't encode character"
|
| 394 |
+
# in Python 2 when the reason contains non-ascii characters.
|
| 395 |
+
"The candidate selected for download or install is a "
|
| 396 |
+
f"yanked version: {best_candidate}\n"
|
| 397 |
+
f"Reason for being yanked: {reason}"
|
| 398 |
+
)
|
| 399 |
+
logger.warning(msg)
|
| 400 |
+
|
| 401 |
+
return link
|
| 402 |
+
|
| 403 |
+
def _populate_link(self, req: InstallRequirement) -> None:
|
| 404 |
+
"""Ensure that if a link can be found for this, that it is found.
|
| 405 |
+
|
| 406 |
+
Note that req.link may still be None - if the requirement is already
|
| 407 |
+
installed and not needed to be upgraded based on the return value of
|
| 408 |
+
_is_upgrade_allowed().
|
| 409 |
+
|
| 410 |
+
If preparer.require_hashes is True, don't use the wheel cache, because
|
| 411 |
+
cached wheels, always built locally, have different hashes than the
|
| 412 |
+
files downloaded from the index server and thus throw false hash
|
| 413 |
+
mismatches. Furthermore, cached wheels at present have undeterministic
|
| 414 |
+
contents due to file modification times.
|
| 415 |
+
"""
|
| 416 |
+
if req.link is None:
|
| 417 |
+
req.link = self._find_requirement_link(req)
|
| 418 |
+
|
| 419 |
+
if self.wheel_cache is None or self.preparer.require_hashes:
|
| 420 |
+
return
|
| 421 |
+
|
| 422 |
+
assert req.link is not None, "_find_requirement_link unexpectedly returned None"
|
| 423 |
+
cache_entry = self.wheel_cache.get_cache_entry(
|
| 424 |
+
link=req.link,
|
| 425 |
+
package_name=req.name,
|
| 426 |
+
supported_tags=get_supported(),
|
| 427 |
+
)
|
| 428 |
+
if cache_entry is not None:
|
| 429 |
+
logger.debug("Using cached wheel link: %s", cache_entry.link)
|
| 430 |
+
if req.link is req.original_link and cache_entry.persistent:
|
| 431 |
+
req.cached_wheel_source_link = req.link
|
| 432 |
+
if cache_entry.origin is not None:
|
| 433 |
+
req.download_info = cache_entry.origin
|
| 434 |
+
else:
|
| 435 |
+
# Legacy cache entry that does not have origin.json.
|
| 436 |
+
# download_info may miss the archive_info.hashes field.
|
| 437 |
+
req.download_info = direct_url_from_link(
|
| 438 |
+
req.link, link_is_in_wheel_cache=cache_entry.persistent
|
| 439 |
+
)
|
| 440 |
+
req.link = cache_entry.link
|
| 441 |
+
|
| 442 |
+
def _get_dist_for(self, req: InstallRequirement) -> BaseDistribution:
|
| 443 |
+
"""Takes a InstallRequirement and returns a single AbstractDist \
|
| 444 |
+
representing a prepared variant of the same.
|
| 445 |
+
"""
|
| 446 |
+
if req.editable:
|
| 447 |
+
return self.preparer.prepare_editable_requirement(req)
|
| 448 |
+
|
| 449 |
+
# satisfied_by is only evaluated by calling _check_skip_installed,
|
| 450 |
+
# so it must be None here.
|
| 451 |
+
assert req.satisfied_by is None
|
| 452 |
+
skip_reason = self._check_skip_installed(req)
|
| 453 |
+
|
| 454 |
+
if req.satisfied_by:
|
| 455 |
+
return self.preparer.prepare_installed_requirement(req, skip_reason)
|
| 456 |
+
|
| 457 |
+
# We eagerly populate the link, since that's our "legacy" behavior.
|
| 458 |
+
self._populate_link(req)
|
| 459 |
+
dist = self.preparer.prepare_linked_requirement(req)
|
| 460 |
+
|
| 461 |
+
# NOTE
|
| 462 |
+
# The following portion is for determining if a certain package is
|
| 463 |
+
# going to be re-installed/upgraded or not and reporting to the user.
|
| 464 |
+
# This should probably get cleaned up in a future refactor.
|
| 465 |
+
|
| 466 |
+
# req.req is only avail after unpack for URL
|
| 467 |
+
# pkgs repeat check_if_exists to uninstall-on-upgrade
|
| 468 |
+
# (#14)
|
| 469 |
+
if not self.ignore_installed:
|
| 470 |
+
req.check_if_exists(self.use_user_site)
|
| 471 |
+
|
| 472 |
+
if req.satisfied_by:
|
| 473 |
+
should_modify = (
|
| 474 |
+
self.upgrade_strategy != "to-satisfy-only"
|
| 475 |
+
or self.force_reinstall
|
| 476 |
+
or self.ignore_installed
|
| 477 |
+
or req.link.scheme == "file"
|
| 478 |
+
)
|
| 479 |
+
if should_modify:
|
| 480 |
+
self._set_req_to_reinstall(req)
|
| 481 |
+
else:
|
| 482 |
+
logger.info(
|
| 483 |
+
"Requirement already satisfied (use --upgrade to upgrade): %s",
|
| 484 |
+
req,
|
| 485 |
+
)
|
| 486 |
+
return dist
|
| 487 |
+
|
| 488 |
+
def _resolve_one(
|
| 489 |
+
self,
|
| 490 |
+
requirement_set: RequirementSet,
|
| 491 |
+
req_to_install: InstallRequirement,
|
| 492 |
+
) -> list[InstallRequirement]:
|
| 493 |
+
"""Prepare a single requirements file.
|
| 494 |
+
|
| 495 |
+
:return: A list of additional InstallRequirements to also install.
|
| 496 |
+
"""
|
| 497 |
+
# Tell user what we are doing for this requirement:
|
| 498 |
+
# obtain (editable), skipping, processing (local url), collecting
|
| 499 |
+
# (remote url or package name)
|
| 500 |
+
if req_to_install.constraint or req_to_install.prepared:
|
| 501 |
+
return []
|
| 502 |
+
|
| 503 |
+
req_to_install.prepared = True
|
| 504 |
+
|
| 505 |
+
# Parse and return dependencies
|
| 506 |
+
dist = self._get_dist_for(req_to_install)
|
| 507 |
+
# This will raise UnsupportedPythonVersion if the given Python
|
| 508 |
+
# version isn't compatible with the distribution's Requires-Python.
|
| 509 |
+
_check_dist_requires_python(
|
| 510 |
+
dist,
|
| 511 |
+
version_info=self._py_version_info,
|
| 512 |
+
ignore_requires_python=self.ignore_requires_python,
|
| 513 |
+
)
|
| 514 |
+
|
| 515 |
+
more_reqs: list[InstallRequirement] = []
|
| 516 |
+
|
| 517 |
+
def add_req(subreq: Requirement, extras_requested: Iterable[str]) -> None:
|
| 518 |
+
# This idiosyncratically converts the Requirement to str and let
|
| 519 |
+
# make_install_req then parse it again into Requirement. But this is
|
| 520 |
+
# the legacy resolver so I'm just not going to bother refactoring.
|
| 521 |
+
sub_install_req = self._make_install_req(str(subreq), req_to_install)
|
| 522 |
+
parent_req_name = req_to_install.name
|
| 523 |
+
to_scan_again, add_to_parent = self._add_requirement_to_set(
|
| 524 |
+
requirement_set,
|
| 525 |
+
sub_install_req,
|
| 526 |
+
parent_req_name=parent_req_name,
|
| 527 |
+
extras_requested=extras_requested,
|
| 528 |
+
)
|
| 529 |
+
if parent_req_name and add_to_parent:
|
| 530 |
+
self._discovered_dependencies[parent_req_name].append(add_to_parent)
|
| 531 |
+
more_reqs.extend(to_scan_again)
|
| 532 |
+
|
| 533 |
+
with indent_log():
|
| 534 |
+
# We add req_to_install before its dependencies, so that we
|
| 535 |
+
# can refer to it when adding dependencies.
|
| 536 |
+
assert req_to_install.name is not None
|
| 537 |
+
if not requirement_set.has_requirement(req_to_install.name):
|
| 538 |
+
# 'unnamed' requirements will get added here
|
| 539 |
+
# 'unnamed' requirements can only come from being directly
|
| 540 |
+
# provided by the user.
|
| 541 |
+
assert req_to_install.user_supplied
|
| 542 |
+
self._add_requirement_to_set(
|
| 543 |
+
requirement_set, req_to_install, parent_req_name=None
|
| 544 |
+
)
|
| 545 |
+
|
| 546 |
+
if not self.ignore_dependencies:
|
| 547 |
+
if req_to_install.extras:
|
| 548 |
+
logger.debug(
|
| 549 |
+
"Installing extra requirements: %r",
|
| 550 |
+
",".join(req_to_install.extras),
|
| 551 |
+
)
|
| 552 |
+
missing_requested = sorted(
|
| 553 |
+
set(req_to_install.extras) - set(dist.iter_provided_extras())
|
| 554 |
+
)
|
| 555 |
+
for missing in missing_requested:
|
| 556 |
+
logger.warning(
|
| 557 |
+
"%s %s does not provide the extra '%s'",
|
| 558 |
+
dist.raw_name,
|
| 559 |
+
dist.version,
|
| 560 |
+
missing,
|
| 561 |
+
)
|
| 562 |
+
|
| 563 |
+
available_requested = sorted(
|
| 564 |
+
set(dist.iter_provided_extras()) & set(req_to_install.extras)
|
| 565 |
+
)
|
| 566 |
+
for subreq in dist.iter_dependencies(available_requested):
|
| 567 |
+
add_req(subreq, extras_requested=available_requested)
|
| 568 |
+
|
| 569 |
+
return more_reqs
|
| 570 |
+
|
| 571 |
+
def get_installation_order(
|
| 572 |
+
self, req_set: RequirementSet
|
| 573 |
+
) -> list[InstallRequirement]:
|
| 574 |
+
"""Create the installation order.
|
| 575 |
+
|
| 576 |
+
The installation order is topological - requirements are installed
|
| 577 |
+
before the requiring thing. We break cycles at an arbitrary point,
|
| 578 |
+
and make no other guarantees.
|
| 579 |
+
"""
|
| 580 |
+
# The current implementation, which we may change at any point
|
| 581 |
+
# installs the user specified things in the order given, except when
|
| 582 |
+
# dependencies must come earlier to achieve topological order.
|
| 583 |
+
order = []
|
| 584 |
+
ordered_reqs: set[InstallRequirement] = set()
|
| 585 |
+
|
| 586 |
+
def schedule(req: InstallRequirement) -> None:
|
| 587 |
+
if req.satisfied_by or req in ordered_reqs:
|
| 588 |
+
return
|
| 589 |
+
if req.constraint:
|
| 590 |
+
return
|
| 591 |
+
ordered_reqs.add(req)
|
| 592 |
+
for dep in self._discovered_dependencies[req.name]:
|
| 593 |
+
schedule(dep)
|
| 594 |
+
order.append(req)
|
| 595 |
+
|
| 596 |
+
for install_req in req_set.requirements.values():
|
| 597 |
+
schedule(install_req)
|
| 598 |
+
return order
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__init__.py
ADDED
|
File without changes
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/base.py
ADDED
|
@@ -0,0 +1,142 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from __future__ import annotations
|
| 2 |
+
|
| 3 |
+
from collections.abc import Iterable
|
| 4 |
+
from dataclasses import dataclass
|
| 5 |
+
from typing import Optional
|
| 6 |
+
|
| 7 |
+
from pip._vendor.packaging.specifiers import SpecifierSet
|
| 8 |
+
from pip._vendor.packaging.utils import NormalizedName
|
| 9 |
+
from pip._vendor.packaging.version import Version
|
| 10 |
+
|
| 11 |
+
from pip._internal.models.link import Link, links_equivalent
|
| 12 |
+
from pip._internal.req.req_install import InstallRequirement
|
| 13 |
+
from pip._internal.utils.hashes import Hashes
|
| 14 |
+
|
| 15 |
+
CandidateLookup = tuple[Optional["Candidate"], Optional[InstallRequirement]]
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
def format_name(project: NormalizedName, extras: frozenset[NormalizedName]) -> str:
|
| 19 |
+
if not extras:
|
| 20 |
+
return project
|
| 21 |
+
extras_expr = ",".join(sorted(extras))
|
| 22 |
+
return f"{project}[{extras_expr}]"
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
@dataclass(frozen=True)
|
| 26 |
+
class Constraint:
|
| 27 |
+
specifier: SpecifierSet
|
| 28 |
+
hashes: Hashes
|
| 29 |
+
links: frozenset[Link]
|
| 30 |
+
|
| 31 |
+
@classmethod
|
| 32 |
+
def empty(cls) -> Constraint:
|
| 33 |
+
return Constraint(SpecifierSet(), Hashes(), frozenset())
|
| 34 |
+
|
| 35 |
+
@classmethod
|
| 36 |
+
def from_ireq(cls, ireq: InstallRequirement) -> Constraint:
|
| 37 |
+
links = frozenset([ireq.link]) if ireq.link else frozenset()
|
| 38 |
+
return Constraint(ireq.specifier, ireq.hashes(trust_internet=False), links)
|
| 39 |
+
|
| 40 |
+
def __bool__(self) -> bool:
|
| 41 |
+
return bool(self.specifier) or bool(self.hashes) or bool(self.links)
|
| 42 |
+
|
| 43 |
+
def __and__(self, other: InstallRequirement) -> Constraint:
|
| 44 |
+
if not isinstance(other, InstallRequirement):
|
| 45 |
+
return NotImplemented
|
| 46 |
+
specifier = self.specifier & other.specifier
|
| 47 |
+
hashes = self.hashes & other.hashes(trust_internet=False)
|
| 48 |
+
links = self.links
|
| 49 |
+
if other.link:
|
| 50 |
+
links = links.union([other.link])
|
| 51 |
+
return Constraint(specifier, hashes, links)
|
| 52 |
+
|
| 53 |
+
def is_satisfied_by(self, candidate: Candidate) -> bool:
|
| 54 |
+
# Reject if there are any mismatched URL constraints on this package.
|
| 55 |
+
if self.links and not all(_match_link(link, candidate) for link in self.links):
|
| 56 |
+
return False
|
| 57 |
+
# We can safely always allow prereleases here since PackageFinder
|
| 58 |
+
# already implements the prerelease logic, and would have filtered out
|
| 59 |
+
# prerelease candidates if the user does not expect them.
|
| 60 |
+
return self.specifier.contains(candidate.version, prereleases=True)
|
| 61 |
+
|
| 62 |
+
|
| 63 |
+
class Requirement:
|
| 64 |
+
@property
|
| 65 |
+
def project_name(self) -> NormalizedName:
|
| 66 |
+
"""The "project name" of a requirement.
|
| 67 |
+
|
| 68 |
+
This is different from ``name`` if this requirement contains extras,
|
| 69 |
+
in which case ``name`` would contain the ``[...]`` part, while this
|
| 70 |
+
refers to the name of the project.
|
| 71 |
+
"""
|
| 72 |
+
raise NotImplementedError("Subclass should override")
|
| 73 |
+
|
| 74 |
+
@property
|
| 75 |
+
def name(self) -> str:
|
| 76 |
+
"""The name identifying this requirement in the resolver.
|
| 77 |
+
|
| 78 |
+
This is different from ``project_name`` if this requirement contains
|
| 79 |
+
extras, where ``project_name`` would not contain the ``[...]`` part.
|
| 80 |
+
"""
|
| 81 |
+
raise NotImplementedError("Subclass should override")
|
| 82 |
+
|
| 83 |
+
def is_satisfied_by(self, candidate: Candidate) -> bool:
|
| 84 |
+
return False
|
| 85 |
+
|
| 86 |
+
def get_candidate_lookup(self) -> CandidateLookup:
|
| 87 |
+
raise NotImplementedError("Subclass should override")
|
| 88 |
+
|
| 89 |
+
def format_for_error(self) -> str:
|
| 90 |
+
raise NotImplementedError("Subclass should override")
|
| 91 |
+
|
| 92 |
+
|
| 93 |
+
def _match_link(link: Link, candidate: Candidate) -> bool:
|
| 94 |
+
if candidate.source_link:
|
| 95 |
+
return links_equivalent(link, candidate.source_link)
|
| 96 |
+
return False
|
| 97 |
+
|
| 98 |
+
|
| 99 |
+
class Candidate:
|
| 100 |
+
@property
|
| 101 |
+
def project_name(self) -> NormalizedName:
|
| 102 |
+
"""The "project name" of the candidate.
|
| 103 |
+
|
| 104 |
+
This is different from ``name`` if this candidate contains extras,
|
| 105 |
+
in which case ``name`` would contain the ``[...]`` part, while this
|
| 106 |
+
refers to the name of the project.
|
| 107 |
+
"""
|
| 108 |
+
raise NotImplementedError("Override in subclass")
|
| 109 |
+
|
| 110 |
+
@property
|
| 111 |
+
def name(self) -> str:
|
| 112 |
+
"""The name identifying this candidate in the resolver.
|
| 113 |
+
|
| 114 |
+
This is different from ``project_name`` if this candidate contains
|
| 115 |
+
extras, where ``project_name`` would not contain the ``[...]`` part.
|
| 116 |
+
"""
|
| 117 |
+
raise NotImplementedError("Override in subclass")
|
| 118 |
+
|
| 119 |
+
@property
|
| 120 |
+
def version(self) -> Version:
|
| 121 |
+
raise NotImplementedError("Override in subclass")
|
| 122 |
+
|
| 123 |
+
@property
|
| 124 |
+
def is_installed(self) -> bool:
|
| 125 |
+
raise NotImplementedError("Override in subclass")
|
| 126 |
+
|
| 127 |
+
@property
|
| 128 |
+
def is_editable(self) -> bool:
|
| 129 |
+
raise NotImplementedError("Override in subclass")
|
| 130 |
+
|
| 131 |
+
@property
|
| 132 |
+
def source_link(self) -> Link | None:
|
| 133 |
+
raise NotImplementedError("Override in subclass")
|
| 134 |
+
|
| 135 |
+
def iter_dependencies(self, with_requires: bool) -> Iterable[Requirement | None]:
|
| 136 |
+
raise NotImplementedError("Override in subclass")
|
| 137 |
+
|
| 138 |
+
def get_install_requirement(self) -> InstallRequirement | None:
|
| 139 |
+
raise NotImplementedError("Override in subclass")
|
| 140 |
+
|
| 141 |
+
def format_for_error(self) -> str:
|
| 142 |
+
raise NotImplementedError("Subclass should override")
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/candidates.py
ADDED
|
@@ -0,0 +1,591 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from __future__ import annotations
|
| 2 |
+
|
| 3 |
+
import logging
|
| 4 |
+
import sys
|
| 5 |
+
from collections.abc import Iterable
|
| 6 |
+
from typing import TYPE_CHECKING, Any, Union, cast
|
| 7 |
+
|
| 8 |
+
from pip._vendor.packaging.requirements import InvalidRequirement
|
| 9 |
+
from pip._vendor.packaging.utils import NormalizedName, canonicalize_name
|
| 10 |
+
from pip._vendor.packaging.version import Version
|
| 11 |
+
|
| 12 |
+
from pip._internal.exceptions import (
|
| 13 |
+
FailedToPrepareCandidate,
|
| 14 |
+
HashError,
|
| 15 |
+
InstallationSubprocessError,
|
| 16 |
+
InvalidInstalledPackage,
|
| 17 |
+
MetadataInconsistent,
|
| 18 |
+
MetadataInvalid,
|
| 19 |
+
)
|
| 20 |
+
from pip._internal.metadata import BaseDistribution
|
| 21 |
+
from pip._internal.models.link import Link, links_equivalent
|
| 22 |
+
from pip._internal.models.wheel import Wheel
|
| 23 |
+
from pip._internal.req.constructors import (
|
| 24 |
+
install_req_from_editable,
|
| 25 |
+
install_req_from_line,
|
| 26 |
+
)
|
| 27 |
+
from pip._internal.req.req_install import InstallRequirement
|
| 28 |
+
from pip._internal.utils.direct_url_helpers import direct_url_from_link
|
| 29 |
+
from pip._internal.utils.misc import normalize_version_info
|
| 30 |
+
|
| 31 |
+
from .base import Candidate, Requirement, format_name
|
| 32 |
+
|
| 33 |
+
if TYPE_CHECKING:
|
| 34 |
+
from .factory import Factory
|
| 35 |
+
|
| 36 |
+
logger = logging.getLogger(__name__)
|
| 37 |
+
|
| 38 |
+
BaseCandidate = Union[
|
| 39 |
+
"AlreadyInstalledCandidate",
|
| 40 |
+
"EditableCandidate",
|
| 41 |
+
"LinkCandidate",
|
| 42 |
+
]
|
| 43 |
+
|
| 44 |
+
# Avoid conflicting with the PyPI package "Python".
|
| 45 |
+
REQUIRES_PYTHON_IDENTIFIER = cast(NormalizedName, "<Python from Requires-Python>")
|
| 46 |
+
|
| 47 |
+
|
| 48 |
+
def as_base_candidate(candidate: Candidate) -> BaseCandidate | None:
|
| 49 |
+
"""The runtime version of BaseCandidate."""
|
| 50 |
+
base_candidate_classes = (
|
| 51 |
+
AlreadyInstalledCandidate,
|
| 52 |
+
EditableCandidate,
|
| 53 |
+
LinkCandidate,
|
| 54 |
+
)
|
| 55 |
+
if isinstance(candidate, base_candidate_classes):
|
| 56 |
+
return candidate
|
| 57 |
+
return None
|
| 58 |
+
|
| 59 |
+
|
| 60 |
+
def make_install_req_from_link(
|
| 61 |
+
link: Link, template: InstallRequirement
|
| 62 |
+
) -> InstallRequirement:
|
| 63 |
+
assert not template.editable, "template is editable"
|
| 64 |
+
if template.req:
|
| 65 |
+
line = str(template.req)
|
| 66 |
+
else:
|
| 67 |
+
line = link.url
|
| 68 |
+
ireq = install_req_from_line(
|
| 69 |
+
line,
|
| 70 |
+
user_supplied=template.user_supplied,
|
| 71 |
+
comes_from=template.comes_from,
|
| 72 |
+
isolated=template.isolated,
|
| 73 |
+
constraint=template.constraint,
|
| 74 |
+
hash_options=template.hash_options,
|
| 75 |
+
config_settings=template.config_settings,
|
| 76 |
+
)
|
| 77 |
+
ireq.original_link = template.original_link
|
| 78 |
+
ireq.link = link
|
| 79 |
+
ireq.extras = template.extras
|
| 80 |
+
return ireq
|
| 81 |
+
|
| 82 |
+
|
| 83 |
+
def make_install_req_from_editable(
|
| 84 |
+
link: Link, template: InstallRequirement
|
| 85 |
+
) -> InstallRequirement:
|
| 86 |
+
assert template.editable, "template not editable"
|
| 87 |
+
if template.name:
|
| 88 |
+
req_string = f"{template.name} @ {link.url}"
|
| 89 |
+
else:
|
| 90 |
+
req_string = link.url
|
| 91 |
+
ireq = install_req_from_editable(
|
| 92 |
+
req_string,
|
| 93 |
+
user_supplied=template.user_supplied,
|
| 94 |
+
comes_from=template.comes_from,
|
| 95 |
+
isolated=template.isolated,
|
| 96 |
+
constraint=template.constraint,
|
| 97 |
+
permit_editable_wheels=template.permit_editable_wheels,
|
| 98 |
+
hash_options=template.hash_options,
|
| 99 |
+
config_settings=template.config_settings,
|
| 100 |
+
)
|
| 101 |
+
ireq.extras = template.extras
|
| 102 |
+
return ireq
|
| 103 |
+
|
| 104 |
+
|
| 105 |
+
def _make_install_req_from_dist(
|
| 106 |
+
dist: BaseDistribution, template: InstallRequirement
|
| 107 |
+
) -> InstallRequirement:
|
| 108 |
+
if template.req:
|
| 109 |
+
line = str(template.req)
|
| 110 |
+
elif template.link:
|
| 111 |
+
line = f"{dist.canonical_name} @ {template.link.url}"
|
| 112 |
+
else:
|
| 113 |
+
line = f"{dist.canonical_name}=={dist.version}"
|
| 114 |
+
ireq = install_req_from_line(
|
| 115 |
+
line,
|
| 116 |
+
user_supplied=template.user_supplied,
|
| 117 |
+
comes_from=template.comes_from,
|
| 118 |
+
isolated=template.isolated,
|
| 119 |
+
constraint=template.constraint,
|
| 120 |
+
hash_options=template.hash_options,
|
| 121 |
+
config_settings=template.config_settings,
|
| 122 |
+
)
|
| 123 |
+
ireq.satisfied_by = dist
|
| 124 |
+
return ireq
|
| 125 |
+
|
| 126 |
+
|
| 127 |
+
class _InstallRequirementBackedCandidate(Candidate):
|
| 128 |
+
"""A candidate backed by an ``InstallRequirement``.
|
| 129 |
+
|
| 130 |
+
This represents a package request with the target not being already
|
| 131 |
+
in the environment, and needs to be fetched and installed. The backing
|
| 132 |
+
``InstallRequirement`` is responsible for most of the leg work; this
|
| 133 |
+
class exposes appropriate information to the resolver.
|
| 134 |
+
|
| 135 |
+
:param link: The link passed to the ``InstallRequirement``. The backing
|
| 136 |
+
``InstallRequirement`` will use this link to fetch the distribution.
|
| 137 |
+
:param source_link: The link this candidate "originates" from. This is
|
| 138 |
+
different from ``link`` when the link is found in the wheel cache.
|
| 139 |
+
``link`` would point to the wheel cache, while this points to the
|
| 140 |
+
found remote link (e.g. from pypi.org).
|
| 141 |
+
"""
|
| 142 |
+
|
| 143 |
+
dist: BaseDistribution
|
| 144 |
+
is_installed = False
|
| 145 |
+
|
| 146 |
+
def __init__(
|
| 147 |
+
self,
|
| 148 |
+
link: Link,
|
| 149 |
+
source_link: Link,
|
| 150 |
+
ireq: InstallRequirement,
|
| 151 |
+
factory: Factory,
|
| 152 |
+
name: NormalizedName | None = None,
|
| 153 |
+
version: Version | None = None,
|
| 154 |
+
) -> None:
|
| 155 |
+
self._link = link
|
| 156 |
+
self._source_link = source_link
|
| 157 |
+
self._factory = factory
|
| 158 |
+
self._ireq = ireq
|
| 159 |
+
self._name = name
|
| 160 |
+
self._version = version
|
| 161 |
+
self.dist = self._prepare()
|
| 162 |
+
self._hash: int | None = None
|
| 163 |
+
|
| 164 |
+
def __str__(self) -> str:
|
| 165 |
+
return f"{self.name} {self.version}"
|
| 166 |
+
|
| 167 |
+
def __repr__(self) -> str:
|
| 168 |
+
return f"{self.__class__.__name__}({str(self._link)!r})"
|
| 169 |
+
|
| 170 |
+
def __hash__(self) -> int:
|
| 171 |
+
if self._hash is not None:
|
| 172 |
+
return self._hash
|
| 173 |
+
|
| 174 |
+
self._hash = hash((self.__class__, self._link))
|
| 175 |
+
return self._hash
|
| 176 |
+
|
| 177 |
+
def __eq__(self, other: Any) -> bool:
|
| 178 |
+
if isinstance(other, self.__class__):
|
| 179 |
+
return links_equivalent(self._link, other._link)
|
| 180 |
+
return False
|
| 181 |
+
|
| 182 |
+
@property
|
| 183 |
+
def source_link(self) -> Link | None:
|
| 184 |
+
return self._source_link
|
| 185 |
+
|
| 186 |
+
@property
|
| 187 |
+
def project_name(self) -> NormalizedName:
|
| 188 |
+
"""The normalised name of the project the candidate refers to"""
|
| 189 |
+
if self._name is None:
|
| 190 |
+
self._name = self.dist.canonical_name
|
| 191 |
+
return self._name
|
| 192 |
+
|
| 193 |
+
@property
|
| 194 |
+
def name(self) -> str:
|
| 195 |
+
return self.project_name
|
| 196 |
+
|
| 197 |
+
@property
|
| 198 |
+
def version(self) -> Version:
|
| 199 |
+
if self._version is None:
|
| 200 |
+
self._version = self.dist.version
|
| 201 |
+
return self._version
|
| 202 |
+
|
| 203 |
+
def format_for_error(self) -> str:
|
| 204 |
+
return (
|
| 205 |
+
f"{self.name} {self.version} "
|
| 206 |
+
f"(from {self._link.file_path if self._link.is_file else self._link})"
|
| 207 |
+
)
|
| 208 |
+
|
| 209 |
+
def _prepare_distribution(self) -> BaseDistribution:
|
| 210 |
+
raise NotImplementedError("Override in subclass")
|
| 211 |
+
|
| 212 |
+
def _check_metadata_consistency(self, dist: BaseDistribution) -> None:
|
| 213 |
+
"""Check for consistency of project name and version of dist."""
|
| 214 |
+
if self._name is not None and self._name != dist.canonical_name:
|
| 215 |
+
raise MetadataInconsistent(
|
| 216 |
+
self._ireq,
|
| 217 |
+
"name",
|
| 218 |
+
self._name,
|
| 219 |
+
dist.canonical_name,
|
| 220 |
+
)
|
| 221 |
+
if self._version is not None and self._version != dist.version:
|
| 222 |
+
raise MetadataInconsistent(
|
| 223 |
+
self._ireq,
|
| 224 |
+
"version",
|
| 225 |
+
str(self._version),
|
| 226 |
+
str(dist.version),
|
| 227 |
+
)
|
| 228 |
+
# check dependencies are valid
|
| 229 |
+
# TODO performance: this means we iterate the dependencies at least twice,
|
| 230 |
+
# we may want to cache parsed Requires-Dist
|
| 231 |
+
try:
|
| 232 |
+
list(dist.iter_dependencies(list(dist.iter_provided_extras())))
|
| 233 |
+
except InvalidRequirement as e:
|
| 234 |
+
raise MetadataInvalid(self._ireq, str(e))
|
| 235 |
+
|
| 236 |
+
def _prepare(self) -> BaseDistribution:
|
| 237 |
+
try:
|
| 238 |
+
dist = self._prepare_distribution()
|
| 239 |
+
except HashError as e:
|
| 240 |
+
# Provide HashError the underlying ireq that caused it. This
|
| 241 |
+
# provides context for the resulting error message to show the
|
| 242 |
+
# offending line to the user.
|
| 243 |
+
e.req = self._ireq
|
| 244 |
+
raise
|
| 245 |
+
except InstallationSubprocessError as exc:
|
| 246 |
+
if isinstance(self._ireq.comes_from, InstallRequirement):
|
| 247 |
+
request_chain = self._ireq.comes_from.from_path()
|
| 248 |
+
else:
|
| 249 |
+
request_chain = self._ireq.comes_from
|
| 250 |
+
|
| 251 |
+
if request_chain is None:
|
| 252 |
+
request_chain = "directly requested"
|
| 253 |
+
|
| 254 |
+
raise FailedToPrepareCandidate(
|
| 255 |
+
package_name=self._ireq.name or str(self._link),
|
| 256 |
+
requirement_chain=request_chain,
|
| 257 |
+
failed_step=exc.command_description,
|
| 258 |
+
)
|
| 259 |
+
|
| 260 |
+
self._check_metadata_consistency(dist)
|
| 261 |
+
return dist
|
| 262 |
+
|
| 263 |
+
def iter_dependencies(self, with_requires: bool) -> Iterable[Requirement | None]:
|
| 264 |
+
# Emit the Requires-Python requirement first to fail fast on
|
| 265 |
+
# unsupported candidates and avoid pointless downloads/preparation.
|
| 266 |
+
yield self._factory.make_requires_python_requirement(self.dist.requires_python)
|
| 267 |
+
requires = self.dist.iter_dependencies() if with_requires else ()
|
| 268 |
+
for r in requires:
|
| 269 |
+
yield from self._factory.make_requirements_from_spec(str(r), self._ireq)
|
| 270 |
+
|
| 271 |
+
def get_install_requirement(self) -> InstallRequirement | None:
|
| 272 |
+
return self._ireq
|
| 273 |
+
|
| 274 |
+
|
| 275 |
+
class LinkCandidate(_InstallRequirementBackedCandidate):
|
| 276 |
+
is_editable = False
|
| 277 |
+
|
| 278 |
+
def __init__(
|
| 279 |
+
self,
|
| 280 |
+
link: Link,
|
| 281 |
+
template: InstallRequirement,
|
| 282 |
+
factory: Factory,
|
| 283 |
+
name: NormalizedName | None = None,
|
| 284 |
+
version: Version | None = None,
|
| 285 |
+
) -> None:
|
| 286 |
+
source_link = link
|
| 287 |
+
cache_entry = factory.get_wheel_cache_entry(source_link, name)
|
| 288 |
+
if cache_entry is not None:
|
| 289 |
+
logger.debug("Using cached wheel link: %s", cache_entry.link)
|
| 290 |
+
link = cache_entry.link
|
| 291 |
+
ireq = make_install_req_from_link(link, template)
|
| 292 |
+
assert ireq.link == link
|
| 293 |
+
if ireq.link.is_wheel and not ireq.link.is_file:
|
| 294 |
+
wheel = Wheel(ireq.link.filename)
|
| 295 |
+
wheel_name = wheel.name
|
| 296 |
+
assert name == wheel_name, f"{name!r} != {wheel_name!r} for wheel"
|
| 297 |
+
# Version may not be present for PEP 508 direct URLs
|
| 298 |
+
if version is not None:
|
| 299 |
+
wheel_version = Version(wheel.version)
|
| 300 |
+
assert (
|
| 301 |
+
version == wheel_version
|
| 302 |
+
), f"{version!r} != {wheel_version!r} for wheel {name}"
|
| 303 |
+
|
| 304 |
+
if cache_entry is not None:
|
| 305 |
+
assert ireq.link.is_wheel
|
| 306 |
+
assert ireq.link.is_file
|
| 307 |
+
if cache_entry.persistent and template.link is template.original_link:
|
| 308 |
+
ireq.cached_wheel_source_link = source_link
|
| 309 |
+
if cache_entry.origin is not None:
|
| 310 |
+
ireq.download_info = cache_entry.origin
|
| 311 |
+
else:
|
| 312 |
+
# Legacy cache entry that does not have origin.json.
|
| 313 |
+
# download_info may miss the archive_info.hashes field.
|
| 314 |
+
ireq.download_info = direct_url_from_link(
|
| 315 |
+
source_link, link_is_in_wheel_cache=cache_entry.persistent
|
| 316 |
+
)
|
| 317 |
+
|
| 318 |
+
super().__init__(
|
| 319 |
+
link=link,
|
| 320 |
+
source_link=source_link,
|
| 321 |
+
ireq=ireq,
|
| 322 |
+
factory=factory,
|
| 323 |
+
name=name,
|
| 324 |
+
version=version,
|
| 325 |
+
)
|
| 326 |
+
|
| 327 |
+
def _prepare_distribution(self) -> BaseDistribution:
|
| 328 |
+
preparer = self._factory.preparer
|
| 329 |
+
return preparer.prepare_linked_requirement(self._ireq, parallel_builds=True)
|
| 330 |
+
|
| 331 |
+
|
| 332 |
+
class EditableCandidate(_InstallRequirementBackedCandidate):
|
| 333 |
+
is_editable = True
|
| 334 |
+
|
| 335 |
+
def __init__(
|
| 336 |
+
self,
|
| 337 |
+
link: Link,
|
| 338 |
+
template: InstallRequirement,
|
| 339 |
+
factory: Factory,
|
| 340 |
+
name: NormalizedName | None = None,
|
| 341 |
+
version: Version | None = None,
|
| 342 |
+
) -> None:
|
| 343 |
+
super().__init__(
|
| 344 |
+
link=link,
|
| 345 |
+
source_link=link,
|
| 346 |
+
ireq=make_install_req_from_editable(link, template),
|
| 347 |
+
factory=factory,
|
| 348 |
+
name=name,
|
| 349 |
+
version=version,
|
| 350 |
+
)
|
| 351 |
+
|
| 352 |
+
def _prepare_distribution(self) -> BaseDistribution:
|
| 353 |
+
return self._factory.preparer.prepare_editable_requirement(self._ireq)
|
| 354 |
+
|
| 355 |
+
|
| 356 |
+
class AlreadyInstalledCandidate(Candidate):
|
| 357 |
+
is_installed = True
|
| 358 |
+
source_link = None
|
| 359 |
+
|
| 360 |
+
def __init__(
|
| 361 |
+
self,
|
| 362 |
+
dist: BaseDistribution,
|
| 363 |
+
template: InstallRequirement,
|
| 364 |
+
factory: Factory,
|
| 365 |
+
) -> None:
|
| 366 |
+
self.dist = dist
|
| 367 |
+
self._ireq = _make_install_req_from_dist(dist, template)
|
| 368 |
+
self._factory = factory
|
| 369 |
+
self._version = None
|
| 370 |
+
|
| 371 |
+
# This is just logging some messages, so we can do it eagerly.
|
| 372 |
+
# The returned dist would be exactly the same as self.dist because we
|
| 373 |
+
# set satisfied_by in _make_install_req_from_dist.
|
| 374 |
+
# TODO: Supply reason based on force_reinstall and upgrade_strategy.
|
| 375 |
+
skip_reason = "already satisfied"
|
| 376 |
+
factory.preparer.prepare_installed_requirement(self._ireq, skip_reason)
|
| 377 |
+
|
| 378 |
+
def __str__(self) -> str:
|
| 379 |
+
return str(self.dist)
|
| 380 |
+
|
| 381 |
+
def __repr__(self) -> str:
|
| 382 |
+
return f"{self.__class__.__name__}({self.dist!r})"
|
| 383 |
+
|
| 384 |
+
def __eq__(self, other: object) -> bool:
|
| 385 |
+
if not isinstance(other, AlreadyInstalledCandidate):
|
| 386 |
+
return NotImplemented
|
| 387 |
+
return self.name == other.name and self.version == other.version
|
| 388 |
+
|
| 389 |
+
def __hash__(self) -> int:
|
| 390 |
+
return hash((self.name, self.version))
|
| 391 |
+
|
| 392 |
+
@property
|
| 393 |
+
def project_name(self) -> NormalizedName:
|
| 394 |
+
return self.dist.canonical_name
|
| 395 |
+
|
| 396 |
+
@property
|
| 397 |
+
def name(self) -> str:
|
| 398 |
+
return self.project_name
|
| 399 |
+
|
| 400 |
+
@property
|
| 401 |
+
def version(self) -> Version:
|
| 402 |
+
if self._version is None:
|
| 403 |
+
self._version = self.dist.version
|
| 404 |
+
return self._version
|
| 405 |
+
|
| 406 |
+
@property
|
| 407 |
+
def is_editable(self) -> bool:
|
| 408 |
+
return self.dist.editable
|
| 409 |
+
|
| 410 |
+
def format_for_error(self) -> str:
|
| 411 |
+
return f"{self.name} {self.version} (Installed)"
|
| 412 |
+
|
| 413 |
+
def iter_dependencies(self, with_requires: bool) -> Iterable[Requirement | None]:
|
| 414 |
+
if not with_requires:
|
| 415 |
+
return
|
| 416 |
+
|
| 417 |
+
try:
|
| 418 |
+
for r in self.dist.iter_dependencies():
|
| 419 |
+
yield from self._factory.make_requirements_from_spec(str(r), self._ireq)
|
| 420 |
+
except InvalidRequirement as exc:
|
| 421 |
+
raise InvalidInstalledPackage(dist=self.dist, invalid_exc=exc) from None
|
| 422 |
+
|
| 423 |
+
def get_install_requirement(self) -> InstallRequirement | None:
|
| 424 |
+
return None
|
| 425 |
+
|
| 426 |
+
|
| 427 |
+
class ExtrasCandidate(Candidate):
|
| 428 |
+
"""A candidate that has 'extras', indicating additional dependencies.
|
| 429 |
+
|
| 430 |
+
Requirements can be for a project with dependencies, something like
|
| 431 |
+
foo[extra]. The extras don't affect the project/version being installed
|
| 432 |
+
directly, but indicate that we need additional dependencies. We model that
|
| 433 |
+
by having an artificial ExtrasCandidate that wraps the "base" candidate.
|
| 434 |
+
|
| 435 |
+
The ExtrasCandidate differs from the base in the following ways:
|
| 436 |
+
|
| 437 |
+
1. It has a unique name, of the form foo[extra]. This causes the resolver
|
| 438 |
+
to treat it as a separate node in the dependency graph.
|
| 439 |
+
2. When we're getting the candidate's dependencies,
|
| 440 |
+
a) We specify that we want the extra dependencies as well.
|
| 441 |
+
b) We add a dependency on the base candidate.
|
| 442 |
+
See below for why this is needed.
|
| 443 |
+
3. We return None for the underlying InstallRequirement, as the base
|
| 444 |
+
candidate will provide it, and we don't want to end up with duplicates.
|
| 445 |
+
|
| 446 |
+
The dependency on the base candidate is needed so that the resolver can't
|
| 447 |
+
decide that it should recommend foo[extra1] version 1.0 and foo[extra2]
|
| 448 |
+
version 2.0. Having those candidates depend on foo=1.0 and foo=2.0
|
| 449 |
+
respectively forces the resolver to recognise that this is a conflict.
|
| 450 |
+
"""
|
| 451 |
+
|
| 452 |
+
def __init__(
|
| 453 |
+
self,
|
| 454 |
+
base: BaseCandidate,
|
| 455 |
+
extras: frozenset[str],
|
| 456 |
+
*,
|
| 457 |
+
comes_from: InstallRequirement | None = None,
|
| 458 |
+
) -> None:
|
| 459 |
+
"""
|
| 460 |
+
:param comes_from: the InstallRequirement that led to this candidate if it
|
| 461 |
+
differs from the base's InstallRequirement. This will often be the
|
| 462 |
+
case in the sense that this candidate's requirement has the extras
|
| 463 |
+
while the base's does not. Unlike the InstallRequirement backed
|
| 464 |
+
candidates, this requirement is used solely for reporting purposes,
|
| 465 |
+
it does not do any leg work.
|
| 466 |
+
"""
|
| 467 |
+
self.base = base
|
| 468 |
+
self.extras = frozenset(canonicalize_name(e) for e in extras)
|
| 469 |
+
self._comes_from = comes_from if comes_from is not None else self.base._ireq
|
| 470 |
+
|
| 471 |
+
def __str__(self) -> str:
|
| 472 |
+
name, rest = str(self.base).split(" ", 1)
|
| 473 |
+
return "{}[{}] {}".format(name, ",".join(self.extras), rest)
|
| 474 |
+
|
| 475 |
+
def __repr__(self) -> str:
|
| 476 |
+
return f"{self.__class__.__name__}(base={self.base!r}, extras={self.extras!r})"
|
| 477 |
+
|
| 478 |
+
def __hash__(self) -> int:
|
| 479 |
+
return hash((self.base, self.extras))
|
| 480 |
+
|
| 481 |
+
def __eq__(self, other: Any) -> bool:
|
| 482 |
+
if isinstance(other, self.__class__):
|
| 483 |
+
return self.base == other.base and self.extras == other.extras
|
| 484 |
+
return False
|
| 485 |
+
|
| 486 |
+
@property
|
| 487 |
+
def project_name(self) -> NormalizedName:
|
| 488 |
+
return self.base.project_name
|
| 489 |
+
|
| 490 |
+
@property
|
| 491 |
+
def name(self) -> str:
|
| 492 |
+
"""The normalised name of the project the candidate refers to"""
|
| 493 |
+
return format_name(self.base.project_name, self.extras)
|
| 494 |
+
|
| 495 |
+
@property
|
| 496 |
+
def version(self) -> Version:
|
| 497 |
+
return self.base.version
|
| 498 |
+
|
| 499 |
+
def format_for_error(self) -> str:
|
| 500 |
+
return "{} [{}]".format(
|
| 501 |
+
self.base.format_for_error(), ", ".join(sorted(self.extras))
|
| 502 |
+
)
|
| 503 |
+
|
| 504 |
+
@property
|
| 505 |
+
def is_installed(self) -> bool:
|
| 506 |
+
return self.base.is_installed
|
| 507 |
+
|
| 508 |
+
@property
|
| 509 |
+
def is_editable(self) -> bool:
|
| 510 |
+
return self.base.is_editable
|
| 511 |
+
|
| 512 |
+
@property
|
| 513 |
+
def source_link(self) -> Link | None:
|
| 514 |
+
return self.base.source_link
|
| 515 |
+
|
| 516 |
+
def iter_dependencies(self, with_requires: bool) -> Iterable[Requirement | None]:
|
| 517 |
+
factory = self.base._factory
|
| 518 |
+
|
| 519 |
+
# Add a dependency on the exact base
|
| 520 |
+
# (See note 2b in the class docstring)
|
| 521 |
+
yield factory.make_requirement_from_candidate(self.base)
|
| 522 |
+
if not with_requires:
|
| 523 |
+
return
|
| 524 |
+
|
| 525 |
+
# The user may have specified extras that the candidate doesn't
|
| 526 |
+
# support. We ignore any unsupported extras here.
|
| 527 |
+
valid_extras = self.extras.intersection(self.base.dist.iter_provided_extras())
|
| 528 |
+
invalid_extras = self.extras.difference(self.base.dist.iter_provided_extras())
|
| 529 |
+
for extra in sorted(invalid_extras):
|
| 530 |
+
logger.warning(
|
| 531 |
+
"%s %s does not provide the extra '%s'",
|
| 532 |
+
self.base.name,
|
| 533 |
+
self.version,
|
| 534 |
+
extra,
|
| 535 |
+
)
|
| 536 |
+
|
| 537 |
+
for r in self.base.dist.iter_dependencies(valid_extras):
|
| 538 |
+
yield from factory.make_requirements_from_spec(
|
| 539 |
+
str(r),
|
| 540 |
+
self._comes_from,
|
| 541 |
+
valid_extras,
|
| 542 |
+
)
|
| 543 |
+
|
| 544 |
+
def get_install_requirement(self) -> InstallRequirement | None:
|
| 545 |
+
# We don't return anything here, because we always
|
| 546 |
+
# depend on the base candidate, and we'll get the
|
| 547 |
+
# install requirement from that.
|
| 548 |
+
return None
|
| 549 |
+
|
| 550 |
+
|
| 551 |
+
class RequiresPythonCandidate(Candidate):
|
| 552 |
+
is_installed = False
|
| 553 |
+
source_link = None
|
| 554 |
+
|
| 555 |
+
def __init__(self, py_version_info: tuple[int, ...] | None) -> None:
|
| 556 |
+
if py_version_info is not None:
|
| 557 |
+
version_info = normalize_version_info(py_version_info)
|
| 558 |
+
else:
|
| 559 |
+
version_info = sys.version_info[:3]
|
| 560 |
+
self._version = Version(".".join(str(c) for c in version_info))
|
| 561 |
+
|
| 562 |
+
# We don't need to implement __eq__() and __ne__() since there is always
|
| 563 |
+
# only one RequiresPythonCandidate in a resolution, i.e. the host Python.
|
| 564 |
+
# The built-in object.__eq__() and object.__ne__() do exactly what we want.
|
| 565 |
+
|
| 566 |
+
def __str__(self) -> str:
|
| 567 |
+
return f"Python {self._version}"
|
| 568 |
+
|
| 569 |
+
def __repr__(self) -> str:
|
| 570 |
+
return f"{self.__class__.__name__}({self._version!r})"
|
| 571 |
+
|
| 572 |
+
@property
|
| 573 |
+
def project_name(self) -> NormalizedName:
|
| 574 |
+
return REQUIRES_PYTHON_IDENTIFIER
|
| 575 |
+
|
| 576 |
+
@property
|
| 577 |
+
def name(self) -> str:
|
| 578 |
+
return REQUIRES_PYTHON_IDENTIFIER
|
| 579 |
+
|
| 580 |
+
@property
|
| 581 |
+
def version(self) -> Version:
|
| 582 |
+
return self._version
|
| 583 |
+
|
| 584 |
+
def format_for_error(self) -> str:
|
| 585 |
+
return f"Python {self.version}"
|
| 586 |
+
|
| 587 |
+
def iter_dependencies(self, with_requires: bool) -> Iterable[Requirement | None]:
|
| 588 |
+
return ()
|
| 589 |
+
|
| 590 |
+
def get_install_requirement(self) -> InstallRequirement | None:
|
| 591 |
+
return None
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/factory.py
ADDED
|
@@ -0,0 +1,856 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from __future__ import annotations
|
| 2 |
+
|
| 3 |
+
import contextlib
|
| 4 |
+
import functools
|
| 5 |
+
import logging
|
| 6 |
+
from collections.abc import Iterable, Iterator, Mapping, Sequence
|
| 7 |
+
from typing import (
|
| 8 |
+
TYPE_CHECKING,
|
| 9 |
+
Callable,
|
| 10 |
+
NamedTuple,
|
| 11 |
+
Protocol,
|
| 12 |
+
TypeVar,
|
| 13 |
+
cast,
|
| 14 |
+
)
|
| 15 |
+
|
| 16 |
+
from pip._vendor.packaging.requirements import InvalidRequirement
|
| 17 |
+
from pip._vendor.packaging.specifiers import SpecifierSet
|
| 18 |
+
from pip._vendor.packaging.utils import NormalizedName, canonicalize_name
|
| 19 |
+
from pip._vendor.packaging.version import InvalidVersion, Version
|
| 20 |
+
from pip._vendor.resolvelib import ResolutionImpossible
|
| 21 |
+
|
| 22 |
+
from pip._internal.cache import CacheEntry, WheelCache
|
| 23 |
+
from pip._internal.exceptions import (
|
| 24 |
+
DistributionNotFound,
|
| 25 |
+
InstallationError,
|
| 26 |
+
InvalidInstalledPackage,
|
| 27 |
+
MetadataInconsistent,
|
| 28 |
+
MetadataInvalid,
|
| 29 |
+
UnsupportedPythonVersion,
|
| 30 |
+
UnsupportedWheel,
|
| 31 |
+
)
|
| 32 |
+
from pip._internal.index.package_finder import PackageFinder
|
| 33 |
+
from pip._internal.metadata import BaseDistribution, get_default_environment
|
| 34 |
+
from pip._internal.models.link import Link
|
| 35 |
+
from pip._internal.models.wheel import Wheel
|
| 36 |
+
from pip._internal.operations.prepare import RequirementPreparer
|
| 37 |
+
from pip._internal.req.constructors import (
|
| 38 |
+
install_req_drop_extras,
|
| 39 |
+
install_req_from_link_and_ireq,
|
| 40 |
+
)
|
| 41 |
+
from pip._internal.req.req_install import (
|
| 42 |
+
InstallRequirement,
|
| 43 |
+
check_invalid_constraint_type,
|
| 44 |
+
)
|
| 45 |
+
from pip._internal.resolution.base import InstallRequirementProvider
|
| 46 |
+
from pip._internal.utils.compatibility_tags import get_supported
|
| 47 |
+
from pip._internal.utils.hashes import Hashes
|
| 48 |
+
from pip._internal.utils.packaging import get_requirement
|
| 49 |
+
from pip._internal.utils.virtualenv import running_under_virtualenv
|
| 50 |
+
|
| 51 |
+
from .base import Candidate, Constraint, Requirement
|
| 52 |
+
from .candidates import (
|
| 53 |
+
AlreadyInstalledCandidate,
|
| 54 |
+
BaseCandidate,
|
| 55 |
+
EditableCandidate,
|
| 56 |
+
ExtrasCandidate,
|
| 57 |
+
LinkCandidate,
|
| 58 |
+
RequiresPythonCandidate,
|
| 59 |
+
as_base_candidate,
|
| 60 |
+
)
|
| 61 |
+
from .found_candidates import FoundCandidates, IndexCandidateInfo
|
| 62 |
+
from .requirements import (
|
| 63 |
+
ExplicitRequirement,
|
| 64 |
+
RequiresPythonRequirement,
|
| 65 |
+
SpecifierRequirement,
|
| 66 |
+
SpecifierWithoutExtrasRequirement,
|
| 67 |
+
UnsatisfiableRequirement,
|
| 68 |
+
)
|
| 69 |
+
|
| 70 |
+
if TYPE_CHECKING:
|
| 71 |
+
|
| 72 |
+
class ConflictCause(Protocol):
|
| 73 |
+
requirement: RequiresPythonRequirement
|
| 74 |
+
parent: Candidate
|
| 75 |
+
|
| 76 |
+
|
| 77 |
+
logger = logging.getLogger(__name__)
|
| 78 |
+
|
| 79 |
+
C = TypeVar("C")
|
| 80 |
+
Cache = dict[Link, C]
|
| 81 |
+
|
| 82 |
+
|
| 83 |
+
class CollectedRootRequirements(NamedTuple):
|
| 84 |
+
requirements: list[Requirement]
|
| 85 |
+
constraints: dict[str, Constraint]
|
| 86 |
+
user_requested: dict[str, int]
|
| 87 |
+
|
| 88 |
+
|
| 89 |
+
class Factory:
|
| 90 |
+
def __init__(
|
| 91 |
+
self,
|
| 92 |
+
finder: PackageFinder,
|
| 93 |
+
preparer: RequirementPreparer,
|
| 94 |
+
make_install_req: InstallRequirementProvider,
|
| 95 |
+
wheel_cache: WheelCache | None,
|
| 96 |
+
use_user_site: bool,
|
| 97 |
+
force_reinstall: bool,
|
| 98 |
+
ignore_installed: bool,
|
| 99 |
+
ignore_requires_python: bool,
|
| 100 |
+
py_version_info: tuple[int, ...] | None = None,
|
| 101 |
+
) -> None:
|
| 102 |
+
self._finder = finder
|
| 103 |
+
self.preparer = preparer
|
| 104 |
+
self._wheel_cache = wheel_cache
|
| 105 |
+
self._python_candidate = RequiresPythonCandidate(py_version_info)
|
| 106 |
+
self._make_install_req_from_spec = make_install_req
|
| 107 |
+
self._use_user_site = use_user_site
|
| 108 |
+
self._force_reinstall = force_reinstall
|
| 109 |
+
self._ignore_requires_python = ignore_requires_python
|
| 110 |
+
|
| 111 |
+
self._build_failures: Cache[InstallationError] = {}
|
| 112 |
+
self._link_candidate_cache: Cache[LinkCandidate] = {}
|
| 113 |
+
self._editable_candidate_cache: Cache[EditableCandidate] = {}
|
| 114 |
+
self._installed_candidate_cache: dict[str, AlreadyInstalledCandidate] = {}
|
| 115 |
+
self._extras_candidate_cache: dict[
|
| 116 |
+
tuple[int, frozenset[NormalizedName]], ExtrasCandidate
|
| 117 |
+
] = {}
|
| 118 |
+
self._supported_tags_cache = get_supported()
|
| 119 |
+
|
| 120 |
+
if not ignore_installed:
|
| 121 |
+
env = get_default_environment()
|
| 122 |
+
self._installed_dists = {
|
| 123 |
+
dist.canonical_name: dist
|
| 124 |
+
for dist in env.iter_installed_distributions(local_only=False)
|
| 125 |
+
}
|
| 126 |
+
else:
|
| 127 |
+
self._installed_dists = {}
|
| 128 |
+
|
| 129 |
+
@property
|
| 130 |
+
def force_reinstall(self) -> bool:
|
| 131 |
+
return self._force_reinstall
|
| 132 |
+
|
| 133 |
+
def _fail_if_link_is_unsupported_wheel(self, link: Link) -> None:
|
| 134 |
+
if not link.is_wheel:
|
| 135 |
+
return
|
| 136 |
+
wheel = Wheel(link.filename)
|
| 137 |
+
if wheel.supported(self._finder.target_python.get_unsorted_tags()):
|
| 138 |
+
return
|
| 139 |
+
msg = f"{link.filename} is not a supported wheel on this platform."
|
| 140 |
+
raise UnsupportedWheel(msg)
|
| 141 |
+
|
| 142 |
+
def _make_extras_candidate(
|
| 143 |
+
self,
|
| 144 |
+
base: BaseCandidate,
|
| 145 |
+
extras: frozenset[str],
|
| 146 |
+
*,
|
| 147 |
+
comes_from: InstallRequirement | None = None,
|
| 148 |
+
) -> ExtrasCandidate:
|
| 149 |
+
cache_key = (id(base), frozenset(canonicalize_name(e) for e in extras))
|
| 150 |
+
try:
|
| 151 |
+
candidate = self._extras_candidate_cache[cache_key]
|
| 152 |
+
except KeyError:
|
| 153 |
+
candidate = ExtrasCandidate(base, extras, comes_from=comes_from)
|
| 154 |
+
self._extras_candidate_cache[cache_key] = candidate
|
| 155 |
+
return candidate
|
| 156 |
+
|
| 157 |
+
def _make_candidate_from_dist(
|
| 158 |
+
self,
|
| 159 |
+
dist: BaseDistribution,
|
| 160 |
+
extras: frozenset[str],
|
| 161 |
+
template: InstallRequirement,
|
| 162 |
+
) -> Candidate:
|
| 163 |
+
try:
|
| 164 |
+
base = self._installed_candidate_cache[dist.canonical_name]
|
| 165 |
+
except KeyError:
|
| 166 |
+
base = AlreadyInstalledCandidate(dist, template, factory=self)
|
| 167 |
+
self._installed_candidate_cache[dist.canonical_name] = base
|
| 168 |
+
if not extras:
|
| 169 |
+
return base
|
| 170 |
+
return self._make_extras_candidate(base, extras, comes_from=template)
|
| 171 |
+
|
| 172 |
+
def _make_candidate_from_link(
|
| 173 |
+
self,
|
| 174 |
+
link: Link,
|
| 175 |
+
extras: frozenset[str],
|
| 176 |
+
template: InstallRequirement,
|
| 177 |
+
name: NormalizedName | None,
|
| 178 |
+
version: Version | None,
|
| 179 |
+
) -> Candidate | None:
|
| 180 |
+
base: BaseCandidate | None = self._make_base_candidate_from_link(
|
| 181 |
+
link, template, name, version
|
| 182 |
+
)
|
| 183 |
+
if not extras or base is None:
|
| 184 |
+
return base
|
| 185 |
+
return self._make_extras_candidate(base, extras, comes_from=template)
|
| 186 |
+
|
| 187 |
+
def _make_base_candidate_from_link(
|
| 188 |
+
self,
|
| 189 |
+
link: Link,
|
| 190 |
+
template: InstallRequirement,
|
| 191 |
+
name: NormalizedName | None,
|
| 192 |
+
version: Version | None,
|
| 193 |
+
) -> BaseCandidate | None:
|
| 194 |
+
# TODO: Check already installed candidate, and use it if the link and
|
| 195 |
+
# editable flag match.
|
| 196 |
+
|
| 197 |
+
if link in self._build_failures:
|
| 198 |
+
# We already tried this candidate before, and it does not build.
|
| 199 |
+
# Don't bother trying again.
|
| 200 |
+
return None
|
| 201 |
+
|
| 202 |
+
if template.editable:
|
| 203 |
+
if link not in self._editable_candidate_cache:
|
| 204 |
+
try:
|
| 205 |
+
self._editable_candidate_cache[link] = EditableCandidate(
|
| 206 |
+
link,
|
| 207 |
+
template,
|
| 208 |
+
factory=self,
|
| 209 |
+
name=name,
|
| 210 |
+
version=version,
|
| 211 |
+
)
|
| 212 |
+
except (MetadataInconsistent, MetadataInvalid) as e:
|
| 213 |
+
logger.info(
|
| 214 |
+
"Discarding [blue underline]%s[/]: [yellow]%s[reset]",
|
| 215 |
+
link,
|
| 216 |
+
e,
|
| 217 |
+
extra={"markup": True},
|
| 218 |
+
)
|
| 219 |
+
self._build_failures[link] = e
|
| 220 |
+
return None
|
| 221 |
+
|
| 222 |
+
return self._editable_candidate_cache[link]
|
| 223 |
+
else:
|
| 224 |
+
if link not in self._link_candidate_cache:
|
| 225 |
+
try:
|
| 226 |
+
self._link_candidate_cache[link] = LinkCandidate(
|
| 227 |
+
link,
|
| 228 |
+
template,
|
| 229 |
+
factory=self,
|
| 230 |
+
name=name,
|
| 231 |
+
version=version,
|
| 232 |
+
)
|
| 233 |
+
except MetadataInconsistent as e:
|
| 234 |
+
logger.info(
|
| 235 |
+
"Discarding [blue underline]%s[/]: [yellow]%s[reset]",
|
| 236 |
+
link,
|
| 237 |
+
e,
|
| 238 |
+
extra={"markup": True},
|
| 239 |
+
)
|
| 240 |
+
self._build_failures[link] = e
|
| 241 |
+
return None
|
| 242 |
+
return self._link_candidate_cache[link]
|
| 243 |
+
|
| 244 |
+
def _iter_found_candidates(
|
| 245 |
+
self,
|
| 246 |
+
ireqs: Sequence[InstallRequirement],
|
| 247 |
+
specifier: SpecifierSet,
|
| 248 |
+
hashes: Hashes,
|
| 249 |
+
prefers_installed: bool,
|
| 250 |
+
incompatible_ids: set[int],
|
| 251 |
+
) -> Iterable[Candidate]:
|
| 252 |
+
if not ireqs:
|
| 253 |
+
return ()
|
| 254 |
+
|
| 255 |
+
# The InstallRequirement implementation requires us to give it a
|
| 256 |
+
# "template". Here we just choose the first requirement to represent
|
| 257 |
+
# all of them.
|
| 258 |
+
# Hopefully the Project model can correct this mismatch in the future.
|
| 259 |
+
template = ireqs[0]
|
| 260 |
+
assert template.req, "Candidates found on index must be PEP 508"
|
| 261 |
+
name = canonicalize_name(template.req.name)
|
| 262 |
+
|
| 263 |
+
extras: frozenset[str] = frozenset()
|
| 264 |
+
for ireq in ireqs:
|
| 265 |
+
assert ireq.req, "Candidates found on index must be PEP 508"
|
| 266 |
+
specifier &= ireq.req.specifier
|
| 267 |
+
hashes &= ireq.hashes(trust_internet=False)
|
| 268 |
+
extras |= frozenset(ireq.extras)
|
| 269 |
+
|
| 270 |
+
def _get_installed_candidate() -> Candidate | None:
|
| 271 |
+
"""Get the candidate for the currently-installed version."""
|
| 272 |
+
# If --force-reinstall is set, we want the version from the index
|
| 273 |
+
# instead, so we "pretend" there is nothing installed.
|
| 274 |
+
if self._force_reinstall:
|
| 275 |
+
return None
|
| 276 |
+
try:
|
| 277 |
+
installed_dist = self._installed_dists[name]
|
| 278 |
+
except KeyError:
|
| 279 |
+
return None
|
| 280 |
+
|
| 281 |
+
try:
|
| 282 |
+
# Don't use the installed distribution if its version
|
| 283 |
+
# does not fit the current dependency graph.
|
| 284 |
+
if not specifier.contains(installed_dist.version, prereleases=True):
|
| 285 |
+
return None
|
| 286 |
+
except InvalidVersion as e:
|
| 287 |
+
raise InvalidInstalledPackage(dist=installed_dist, invalid_exc=e)
|
| 288 |
+
|
| 289 |
+
candidate = self._make_candidate_from_dist(
|
| 290 |
+
dist=installed_dist,
|
| 291 |
+
extras=extras,
|
| 292 |
+
template=template,
|
| 293 |
+
)
|
| 294 |
+
# The candidate is a known incompatibility. Don't use it.
|
| 295 |
+
if id(candidate) in incompatible_ids:
|
| 296 |
+
return None
|
| 297 |
+
return candidate
|
| 298 |
+
|
| 299 |
+
def iter_index_candidate_infos() -> Iterator[IndexCandidateInfo]:
|
| 300 |
+
result = self._finder.find_best_candidate(
|
| 301 |
+
project_name=name,
|
| 302 |
+
specifier=specifier,
|
| 303 |
+
hashes=hashes,
|
| 304 |
+
)
|
| 305 |
+
icans = result.applicable_candidates
|
| 306 |
+
|
| 307 |
+
# PEP 592: Yanked releases are ignored unless the specifier
|
| 308 |
+
# explicitly pins a version (via '==' or '===') that can be
|
| 309 |
+
# solely satisfied by a yanked release.
|
| 310 |
+
all_yanked = all(ican.link.is_yanked for ican in icans)
|
| 311 |
+
|
| 312 |
+
def is_pinned(specifier: SpecifierSet) -> bool:
|
| 313 |
+
for sp in specifier:
|
| 314 |
+
if sp.operator == "===":
|
| 315 |
+
return True
|
| 316 |
+
if sp.operator != "==":
|
| 317 |
+
continue
|
| 318 |
+
if sp.version.endswith(".*"):
|
| 319 |
+
continue
|
| 320 |
+
return True
|
| 321 |
+
return False
|
| 322 |
+
|
| 323 |
+
pinned = is_pinned(specifier)
|
| 324 |
+
|
| 325 |
+
# PackageFinder returns earlier versions first, so we reverse.
|
| 326 |
+
for ican in reversed(icans):
|
| 327 |
+
if not (all_yanked and pinned) and ican.link.is_yanked:
|
| 328 |
+
continue
|
| 329 |
+
func = functools.partial(
|
| 330 |
+
self._make_candidate_from_link,
|
| 331 |
+
link=ican.link,
|
| 332 |
+
extras=extras,
|
| 333 |
+
template=template,
|
| 334 |
+
name=name,
|
| 335 |
+
version=ican.version,
|
| 336 |
+
)
|
| 337 |
+
yield ican.version, func
|
| 338 |
+
|
| 339 |
+
return FoundCandidates(
|
| 340 |
+
iter_index_candidate_infos,
|
| 341 |
+
_get_installed_candidate(),
|
| 342 |
+
prefers_installed,
|
| 343 |
+
incompatible_ids,
|
| 344 |
+
)
|
| 345 |
+
|
| 346 |
+
def _iter_explicit_candidates_from_base(
|
| 347 |
+
self,
|
| 348 |
+
base_requirements: Iterable[Requirement],
|
| 349 |
+
extras: frozenset[str],
|
| 350 |
+
) -> Iterator[Candidate]:
|
| 351 |
+
"""Produce explicit candidates from the base given an extra-ed package.
|
| 352 |
+
|
| 353 |
+
:param base_requirements: Requirements known to the resolver. The
|
| 354 |
+
requirements are guaranteed to not have extras.
|
| 355 |
+
:param extras: The extras to inject into the explicit requirements'
|
| 356 |
+
candidates.
|
| 357 |
+
"""
|
| 358 |
+
for req in base_requirements:
|
| 359 |
+
lookup_cand, _ = req.get_candidate_lookup()
|
| 360 |
+
if lookup_cand is None: # Not explicit.
|
| 361 |
+
continue
|
| 362 |
+
# We've stripped extras from the identifier, and should always
|
| 363 |
+
# get a BaseCandidate here, unless there's a bug elsewhere.
|
| 364 |
+
base_cand = as_base_candidate(lookup_cand)
|
| 365 |
+
assert base_cand is not None, "no extras here"
|
| 366 |
+
yield self._make_extras_candidate(base_cand, extras)
|
| 367 |
+
|
| 368 |
+
def _iter_candidates_from_constraints(
|
| 369 |
+
self,
|
| 370 |
+
identifier: str,
|
| 371 |
+
constraint: Constraint,
|
| 372 |
+
template: InstallRequirement,
|
| 373 |
+
) -> Iterator[Candidate]:
|
| 374 |
+
"""Produce explicit candidates from constraints.
|
| 375 |
+
|
| 376 |
+
This creates "fake" InstallRequirement objects that are basically clones
|
| 377 |
+
of what "should" be the template, but with original_link set to link.
|
| 378 |
+
"""
|
| 379 |
+
for link in constraint.links:
|
| 380 |
+
self._fail_if_link_is_unsupported_wheel(link)
|
| 381 |
+
candidate = self._make_base_candidate_from_link(
|
| 382 |
+
link,
|
| 383 |
+
template=install_req_from_link_and_ireq(link, template),
|
| 384 |
+
name=canonicalize_name(identifier),
|
| 385 |
+
version=None,
|
| 386 |
+
)
|
| 387 |
+
if candidate:
|
| 388 |
+
yield candidate
|
| 389 |
+
|
| 390 |
+
def find_candidates(
|
| 391 |
+
self,
|
| 392 |
+
identifier: str,
|
| 393 |
+
requirements: Mapping[str, Iterable[Requirement]],
|
| 394 |
+
incompatibilities: Mapping[str, Iterator[Candidate]],
|
| 395 |
+
constraint: Constraint,
|
| 396 |
+
prefers_installed: bool,
|
| 397 |
+
is_satisfied_by: Callable[[Requirement, Candidate], bool],
|
| 398 |
+
) -> Iterable[Candidate]:
|
| 399 |
+
# Collect basic lookup information from the requirements.
|
| 400 |
+
explicit_candidates: set[Candidate] = set()
|
| 401 |
+
ireqs: list[InstallRequirement] = []
|
| 402 |
+
for req in requirements[identifier]:
|
| 403 |
+
cand, ireq = req.get_candidate_lookup()
|
| 404 |
+
if cand is not None:
|
| 405 |
+
explicit_candidates.add(cand)
|
| 406 |
+
if ireq is not None:
|
| 407 |
+
ireqs.append(ireq)
|
| 408 |
+
|
| 409 |
+
# If the current identifier contains extras, add requires and explicit
|
| 410 |
+
# candidates from entries from extra-less identifier.
|
| 411 |
+
with contextlib.suppress(InvalidRequirement):
|
| 412 |
+
parsed_requirement = get_requirement(identifier)
|
| 413 |
+
if parsed_requirement.name != identifier:
|
| 414 |
+
explicit_candidates.update(
|
| 415 |
+
self._iter_explicit_candidates_from_base(
|
| 416 |
+
requirements.get(parsed_requirement.name, ()),
|
| 417 |
+
frozenset(parsed_requirement.extras),
|
| 418 |
+
),
|
| 419 |
+
)
|
| 420 |
+
for req in requirements.get(parsed_requirement.name, []):
|
| 421 |
+
_, ireq = req.get_candidate_lookup()
|
| 422 |
+
if ireq is not None:
|
| 423 |
+
ireqs.append(ireq)
|
| 424 |
+
|
| 425 |
+
# Add explicit candidates from constraints. We only do this if there are
|
| 426 |
+
# known ireqs, which represent requirements not already explicit. If
|
| 427 |
+
# there are no ireqs, we're constraining already-explicit requirements,
|
| 428 |
+
# which is handled later when we return the explicit candidates.
|
| 429 |
+
if ireqs:
|
| 430 |
+
try:
|
| 431 |
+
explicit_candidates.update(
|
| 432 |
+
self._iter_candidates_from_constraints(
|
| 433 |
+
identifier,
|
| 434 |
+
constraint,
|
| 435 |
+
template=ireqs[0],
|
| 436 |
+
),
|
| 437 |
+
)
|
| 438 |
+
except UnsupportedWheel:
|
| 439 |
+
# If we're constrained to install a wheel incompatible with the
|
| 440 |
+
# target architecture, no candidates will ever be valid.
|
| 441 |
+
return ()
|
| 442 |
+
|
| 443 |
+
# Since we cache all the candidates, incompatibility identification
|
| 444 |
+
# can be made quicker by comparing only the id() values.
|
| 445 |
+
incompat_ids = {id(c) for c in incompatibilities.get(identifier, ())}
|
| 446 |
+
|
| 447 |
+
# If none of the requirements want an explicit candidate, we can ask
|
| 448 |
+
# the finder for candidates.
|
| 449 |
+
if not explicit_candidates:
|
| 450 |
+
return self._iter_found_candidates(
|
| 451 |
+
ireqs,
|
| 452 |
+
constraint.specifier,
|
| 453 |
+
constraint.hashes,
|
| 454 |
+
prefers_installed,
|
| 455 |
+
incompat_ids,
|
| 456 |
+
)
|
| 457 |
+
|
| 458 |
+
return (
|
| 459 |
+
c
|
| 460 |
+
for c in explicit_candidates
|
| 461 |
+
if id(c) not in incompat_ids
|
| 462 |
+
and constraint.is_satisfied_by(c)
|
| 463 |
+
and all(is_satisfied_by(req, c) for req in requirements[identifier])
|
| 464 |
+
)
|
| 465 |
+
|
| 466 |
+
def _make_requirements_from_install_req(
|
| 467 |
+
self, ireq: InstallRequirement, requested_extras: Iterable[str]
|
| 468 |
+
) -> Iterator[Requirement]:
|
| 469 |
+
"""
|
| 470 |
+
Returns requirement objects associated with the given InstallRequirement. In
|
| 471 |
+
most cases this will be a single object but the following special cases exist:
|
| 472 |
+
- the InstallRequirement has markers that do not apply -> result is empty
|
| 473 |
+
- the InstallRequirement has both a constraint (or link) and extras
|
| 474 |
+
-> result is split in two requirement objects: one with the constraint
|
| 475 |
+
(or link) and one with the extra. This allows centralized constraint
|
| 476 |
+
handling for the base, resulting in fewer candidate rejections.
|
| 477 |
+
"""
|
| 478 |
+
if not ireq.match_markers(requested_extras):
|
| 479 |
+
logger.info(
|
| 480 |
+
"Ignoring %s: markers '%s' don't match your environment",
|
| 481 |
+
ireq.name,
|
| 482 |
+
ireq.markers,
|
| 483 |
+
)
|
| 484 |
+
elif not ireq.link:
|
| 485 |
+
if ireq.extras and ireq.req is not None and ireq.req.specifier:
|
| 486 |
+
yield SpecifierWithoutExtrasRequirement(ireq)
|
| 487 |
+
yield SpecifierRequirement(ireq)
|
| 488 |
+
else:
|
| 489 |
+
self._fail_if_link_is_unsupported_wheel(ireq.link)
|
| 490 |
+
# Always make the link candidate for the base requirement to make it
|
| 491 |
+
# available to `find_candidates` for explicit candidate lookup for any
|
| 492 |
+
# set of extras.
|
| 493 |
+
# The extras are required separately via a second requirement.
|
| 494 |
+
cand = self._make_base_candidate_from_link(
|
| 495 |
+
ireq.link,
|
| 496 |
+
template=install_req_drop_extras(ireq) if ireq.extras else ireq,
|
| 497 |
+
name=canonicalize_name(ireq.name) if ireq.name else None,
|
| 498 |
+
version=None,
|
| 499 |
+
)
|
| 500 |
+
if cand is None:
|
| 501 |
+
# There's no way we can satisfy a URL requirement if the underlying
|
| 502 |
+
# candidate fails to build. An unnamed URL must be user-supplied, so
|
| 503 |
+
# we fail eagerly. If the URL is named, an unsatisfiable requirement
|
| 504 |
+
# can make the resolver do the right thing, either backtrack (and
|
| 505 |
+
# maybe find some other requirement that's buildable) or raise a
|
| 506 |
+
# ResolutionImpossible eventually.
|
| 507 |
+
if not ireq.name:
|
| 508 |
+
raise self._build_failures[ireq.link]
|
| 509 |
+
yield UnsatisfiableRequirement(canonicalize_name(ireq.name))
|
| 510 |
+
else:
|
| 511 |
+
# require the base from the link
|
| 512 |
+
yield self.make_requirement_from_candidate(cand)
|
| 513 |
+
if ireq.extras:
|
| 514 |
+
# require the extras on top of the base candidate
|
| 515 |
+
yield self.make_requirement_from_candidate(
|
| 516 |
+
self._make_extras_candidate(cand, frozenset(ireq.extras))
|
| 517 |
+
)
|
| 518 |
+
|
| 519 |
+
def collect_root_requirements(
|
| 520 |
+
self, root_ireqs: list[InstallRequirement]
|
| 521 |
+
) -> CollectedRootRequirements:
|
| 522 |
+
collected = CollectedRootRequirements([], {}, {})
|
| 523 |
+
for i, ireq in enumerate(root_ireqs):
|
| 524 |
+
if ireq.constraint:
|
| 525 |
+
# Ensure we only accept valid constraints
|
| 526 |
+
problem = check_invalid_constraint_type(ireq)
|
| 527 |
+
if problem:
|
| 528 |
+
raise InstallationError(problem)
|
| 529 |
+
if not ireq.match_markers():
|
| 530 |
+
continue
|
| 531 |
+
assert ireq.name, "Constraint must be named"
|
| 532 |
+
name = canonicalize_name(ireq.name)
|
| 533 |
+
if name in collected.constraints:
|
| 534 |
+
collected.constraints[name] &= ireq
|
| 535 |
+
else:
|
| 536 |
+
collected.constraints[name] = Constraint.from_ireq(ireq)
|
| 537 |
+
else:
|
| 538 |
+
reqs = list(
|
| 539 |
+
self._make_requirements_from_install_req(
|
| 540 |
+
ireq,
|
| 541 |
+
requested_extras=(),
|
| 542 |
+
)
|
| 543 |
+
)
|
| 544 |
+
if not reqs:
|
| 545 |
+
continue
|
| 546 |
+
template = reqs[0]
|
| 547 |
+
if ireq.user_supplied and template.name not in collected.user_requested:
|
| 548 |
+
collected.user_requested[template.name] = i
|
| 549 |
+
collected.requirements.extend(reqs)
|
| 550 |
+
# Put requirements with extras at the end of the root requires. This does not
|
| 551 |
+
# affect resolvelib's picking preference but it does affect its initial criteria
|
| 552 |
+
# population: by putting extras at the end we enable the candidate finder to
|
| 553 |
+
# present resolvelib with a smaller set of candidates to resolvelib, already
|
| 554 |
+
# taking into account any non-transient constraints on the associated base. This
|
| 555 |
+
# means resolvelib will have fewer candidates to visit and reject.
|
| 556 |
+
# Python's list sort is stable, meaning relative order is kept for objects with
|
| 557 |
+
# the same key.
|
| 558 |
+
collected.requirements.sort(key=lambda r: r.name != r.project_name)
|
| 559 |
+
return collected
|
| 560 |
+
|
| 561 |
+
def make_requirement_from_candidate(
|
| 562 |
+
self, candidate: Candidate
|
| 563 |
+
) -> ExplicitRequirement:
|
| 564 |
+
return ExplicitRequirement(candidate)
|
| 565 |
+
|
| 566 |
+
def make_requirements_from_spec(
|
| 567 |
+
self,
|
| 568 |
+
specifier: str,
|
| 569 |
+
comes_from: InstallRequirement | None,
|
| 570 |
+
requested_extras: Iterable[str] = (),
|
| 571 |
+
) -> Iterator[Requirement]:
|
| 572 |
+
"""
|
| 573 |
+
Returns requirement objects associated with the given specifier. In most cases
|
| 574 |
+
this will be a single object but the following special cases exist:
|
| 575 |
+
- the specifier has markers that do not apply -> result is empty
|
| 576 |
+
- the specifier has both a constraint and extras -> result is split
|
| 577 |
+
in two requirement objects: one with the constraint and one with the
|
| 578 |
+
extra. This allows centralized constraint handling for the base,
|
| 579 |
+
resulting in fewer candidate rejections.
|
| 580 |
+
"""
|
| 581 |
+
ireq = self._make_install_req_from_spec(specifier, comes_from)
|
| 582 |
+
return self._make_requirements_from_install_req(ireq, requested_extras)
|
| 583 |
+
|
| 584 |
+
def make_requires_python_requirement(
|
| 585 |
+
self,
|
| 586 |
+
specifier: SpecifierSet,
|
| 587 |
+
) -> Requirement | None:
|
| 588 |
+
if self._ignore_requires_python:
|
| 589 |
+
return None
|
| 590 |
+
# Don't bother creating a dependency for an empty Requires-Python.
|
| 591 |
+
if not str(specifier):
|
| 592 |
+
return None
|
| 593 |
+
return RequiresPythonRequirement(specifier, self._python_candidate)
|
| 594 |
+
|
| 595 |
+
def get_wheel_cache_entry(self, link: Link, name: str | None) -> CacheEntry | None:
|
| 596 |
+
"""Look up the link in the wheel cache.
|
| 597 |
+
|
| 598 |
+
If ``preparer.require_hashes`` is True, don't use the wheel cache,
|
| 599 |
+
because cached wheels, always built locally, have different hashes
|
| 600 |
+
than the files downloaded from the index server and thus throw false
|
| 601 |
+
hash mismatches. Furthermore, cached wheels at present have
|
| 602 |
+
nondeterministic contents due to file modification times.
|
| 603 |
+
"""
|
| 604 |
+
if self._wheel_cache is None:
|
| 605 |
+
return None
|
| 606 |
+
return self._wheel_cache.get_cache_entry(
|
| 607 |
+
link=link,
|
| 608 |
+
package_name=name,
|
| 609 |
+
supported_tags=self._supported_tags_cache,
|
| 610 |
+
)
|
| 611 |
+
|
| 612 |
+
def get_dist_to_uninstall(self, candidate: Candidate) -> BaseDistribution | None:
|
| 613 |
+
# TODO: Are there more cases this needs to return True? Editable?
|
| 614 |
+
dist = self._installed_dists.get(candidate.project_name)
|
| 615 |
+
if dist is None: # Not installed, no uninstallation required.
|
| 616 |
+
return None
|
| 617 |
+
|
| 618 |
+
# We're installing into global site. The current installation must
|
| 619 |
+
# be uninstalled, no matter it's in global or user site, because the
|
| 620 |
+
# user site installation has precedence over global.
|
| 621 |
+
if not self._use_user_site:
|
| 622 |
+
return dist
|
| 623 |
+
|
| 624 |
+
# We're installing into user site. Remove the user site installation.
|
| 625 |
+
if dist.in_usersite:
|
| 626 |
+
return dist
|
| 627 |
+
|
| 628 |
+
# We're installing into user site, but the installed incompatible
|
| 629 |
+
# package is in global site. We can't uninstall that, and would let
|
| 630 |
+
# the new user installation to "shadow" it. But shadowing won't work
|
| 631 |
+
# in virtual environments, so we error out.
|
| 632 |
+
if running_under_virtualenv() and dist.in_site_packages:
|
| 633 |
+
message = (
|
| 634 |
+
f"Will not install to the user site because it will lack "
|
| 635 |
+
f"sys.path precedence to {dist.raw_name} in {dist.location}"
|
| 636 |
+
)
|
| 637 |
+
raise InstallationError(message)
|
| 638 |
+
return None
|
| 639 |
+
|
| 640 |
+
def _report_requires_python_error(
|
| 641 |
+
self, causes: Sequence[ConflictCause]
|
| 642 |
+
) -> UnsupportedPythonVersion:
|
| 643 |
+
assert causes, "Requires-Python error reported with no cause"
|
| 644 |
+
|
| 645 |
+
version = self._python_candidate.version
|
| 646 |
+
|
| 647 |
+
if len(causes) == 1:
|
| 648 |
+
specifier = str(causes[0].requirement.specifier)
|
| 649 |
+
message = (
|
| 650 |
+
f"Package {causes[0].parent.name!r} requires a different "
|
| 651 |
+
f"Python: {version} not in {specifier!r}"
|
| 652 |
+
)
|
| 653 |
+
return UnsupportedPythonVersion(message)
|
| 654 |
+
|
| 655 |
+
message = f"Packages require a different Python. {version} not in:"
|
| 656 |
+
for cause in causes:
|
| 657 |
+
package = cause.parent.format_for_error()
|
| 658 |
+
specifier = str(cause.requirement.specifier)
|
| 659 |
+
message += f"\n{specifier!r} (required by {package})"
|
| 660 |
+
return UnsupportedPythonVersion(message)
|
| 661 |
+
|
| 662 |
+
def _report_single_requirement_conflict(
|
| 663 |
+
self, req: Requirement, parent: Candidate | None
|
| 664 |
+
) -> DistributionNotFound:
|
| 665 |
+
if parent is None:
|
| 666 |
+
req_disp = str(req)
|
| 667 |
+
else:
|
| 668 |
+
req_disp = f"{req} (from {parent.name})"
|
| 669 |
+
|
| 670 |
+
cands = self._finder.find_all_candidates(req.project_name)
|
| 671 |
+
skipped_by_requires_python = self._finder.requires_python_skipped_reasons()
|
| 672 |
+
|
| 673 |
+
versions_set: set[Version] = set()
|
| 674 |
+
yanked_versions_set: set[Version] = set()
|
| 675 |
+
for c in cands:
|
| 676 |
+
is_yanked = c.link.is_yanked if c.link else False
|
| 677 |
+
if is_yanked:
|
| 678 |
+
yanked_versions_set.add(c.version)
|
| 679 |
+
else:
|
| 680 |
+
versions_set.add(c.version)
|
| 681 |
+
|
| 682 |
+
versions = [str(v) for v in sorted(versions_set)]
|
| 683 |
+
yanked_versions = [str(v) for v in sorted(yanked_versions_set)]
|
| 684 |
+
|
| 685 |
+
if yanked_versions:
|
| 686 |
+
# Saying "version X is yanked" isn't entirely accurate.
|
| 687 |
+
# https://github.com/pypa/pip/issues/11745#issuecomment-1402805842
|
| 688 |
+
logger.critical(
|
| 689 |
+
"Ignored the following yanked versions: %s",
|
| 690 |
+
", ".join(yanked_versions) or "none",
|
| 691 |
+
)
|
| 692 |
+
if skipped_by_requires_python:
|
| 693 |
+
logger.critical(
|
| 694 |
+
"Ignored the following versions that require a different python "
|
| 695 |
+
"version: %s",
|
| 696 |
+
"; ".join(skipped_by_requires_python) or "none",
|
| 697 |
+
)
|
| 698 |
+
|
| 699 |
+
# Check if only final releases are allowed for this package
|
| 700 |
+
version_type = "version"
|
| 701 |
+
if self._finder.release_control is not None:
|
| 702 |
+
allows_pre = self._finder.release_control.allows_prereleases(
|
| 703 |
+
canonicalize_name(req.project_name)
|
| 704 |
+
)
|
| 705 |
+
if allows_pre is False:
|
| 706 |
+
version_type = "final version"
|
| 707 |
+
|
| 708 |
+
logger.critical(
|
| 709 |
+
"Could not find a %s that satisfies the requirement %s "
|
| 710 |
+
"(from versions: %s)",
|
| 711 |
+
version_type,
|
| 712 |
+
req_disp,
|
| 713 |
+
", ".join(versions) or "none",
|
| 714 |
+
)
|
| 715 |
+
if str(req) == "requirements.txt":
|
| 716 |
+
logger.info(
|
| 717 |
+
"HINT: You are attempting to install a package literally "
|
| 718 |
+
'named "requirements.txt" (which cannot exist). Consider '
|
| 719 |
+
"using the '-r' flag to install the packages listed in "
|
| 720 |
+
"requirements.txt"
|
| 721 |
+
)
|
| 722 |
+
|
| 723 |
+
return DistributionNotFound(f"No matching distribution found for {req}")
|
| 724 |
+
|
| 725 |
+
def _has_any_candidates(self, project_name: str) -> bool:
|
| 726 |
+
"""
|
| 727 |
+
Check if there are any candidates available for the project name.
|
| 728 |
+
"""
|
| 729 |
+
return any(
|
| 730 |
+
self.find_candidates(
|
| 731 |
+
project_name,
|
| 732 |
+
requirements={project_name: []},
|
| 733 |
+
incompatibilities={},
|
| 734 |
+
constraint=Constraint.empty(),
|
| 735 |
+
prefers_installed=True,
|
| 736 |
+
is_satisfied_by=lambda r, c: True,
|
| 737 |
+
)
|
| 738 |
+
)
|
| 739 |
+
|
| 740 |
+
def get_installation_error(
|
| 741 |
+
self,
|
| 742 |
+
e: ResolutionImpossible[Requirement, Candidate],
|
| 743 |
+
constraints: dict[str, Constraint],
|
| 744 |
+
) -> InstallationError:
|
| 745 |
+
assert e.causes, "Installation error reported with no cause"
|
| 746 |
+
|
| 747 |
+
# If one of the things we can't solve is "we need Python X.Y",
|
| 748 |
+
# that is what we report.
|
| 749 |
+
requires_python_causes = [
|
| 750 |
+
cause
|
| 751 |
+
for cause in e.causes
|
| 752 |
+
if isinstance(cause.requirement, RequiresPythonRequirement)
|
| 753 |
+
and not cause.requirement.is_satisfied_by(self._python_candidate)
|
| 754 |
+
]
|
| 755 |
+
if requires_python_causes:
|
| 756 |
+
# The comprehension above makes sure all Requirement instances are
|
| 757 |
+
# RequiresPythonRequirement, so let's cast for convenience.
|
| 758 |
+
return self._report_requires_python_error(
|
| 759 |
+
cast("Sequence[ConflictCause]", requires_python_causes),
|
| 760 |
+
)
|
| 761 |
+
|
| 762 |
+
# Otherwise, we have a set of causes which can't all be satisfied
|
| 763 |
+
# at once.
|
| 764 |
+
|
| 765 |
+
# The simplest case is when we have *one* cause that can't be
|
| 766 |
+
# satisfied. We just report that case.
|
| 767 |
+
if len(e.causes) == 1:
|
| 768 |
+
req, parent = next(iter(e.causes))
|
| 769 |
+
if req.name not in constraints:
|
| 770 |
+
return self._report_single_requirement_conflict(req, parent)
|
| 771 |
+
|
| 772 |
+
# OK, we now have a list of requirements that can't all be
|
| 773 |
+
# satisfied at once.
|
| 774 |
+
|
| 775 |
+
# A couple of formatting helpers
|
| 776 |
+
def text_join(parts: list[str]) -> str:
|
| 777 |
+
if len(parts) == 1:
|
| 778 |
+
return parts[0]
|
| 779 |
+
|
| 780 |
+
return ", ".join(parts[:-1]) + " and " + parts[-1]
|
| 781 |
+
|
| 782 |
+
def describe_trigger(parent: Candidate) -> str:
|
| 783 |
+
ireq = parent.get_install_requirement()
|
| 784 |
+
if not ireq or not ireq.comes_from:
|
| 785 |
+
return f"{parent.name}=={parent.version}"
|
| 786 |
+
if isinstance(ireq.comes_from, InstallRequirement):
|
| 787 |
+
return str(ireq.comes_from.name)
|
| 788 |
+
return str(ireq.comes_from)
|
| 789 |
+
|
| 790 |
+
triggers = set()
|
| 791 |
+
for req, parent in e.causes:
|
| 792 |
+
if parent is None:
|
| 793 |
+
# This is a root requirement, so we can report it directly
|
| 794 |
+
trigger = req.format_for_error()
|
| 795 |
+
else:
|
| 796 |
+
trigger = describe_trigger(parent)
|
| 797 |
+
triggers.add(trigger)
|
| 798 |
+
|
| 799 |
+
if triggers:
|
| 800 |
+
info = text_join(sorted(triggers))
|
| 801 |
+
else:
|
| 802 |
+
info = "the requested packages"
|
| 803 |
+
|
| 804 |
+
msg = (
|
| 805 |
+
f"Cannot install {info} because these package versions "
|
| 806 |
+
"have conflicting dependencies."
|
| 807 |
+
)
|
| 808 |
+
logger.critical(msg)
|
| 809 |
+
msg = "\nThe conflict is caused by:"
|
| 810 |
+
|
| 811 |
+
relevant_constraints = set()
|
| 812 |
+
for req, parent in e.causes:
|
| 813 |
+
if req.name in constraints:
|
| 814 |
+
relevant_constraints.add(req.name)
|
| 815 |
+
msg = msg + "\n "
|
| 816 |
+
if parent:
|
| 817 |
+
msg = msg + f"{parent.name} {parent.version} depends on "
|
| 818 |
+
else:
|
| 819 |
+
msg = msg + "The user requested "
|
| 820 |
+
msg = msg + req.format_for_error()
|
| 821 |
+
for key in relevant_constraints:
|
| 822 |
+
spec = constraints[key].specifier
|
| 823 |
+
msg += f"\n The user requested (constraint) {key}{spec}"
|
| 824 |
+
|
| 825 |
+
# Check for causes that had no candidates
|
| 826 |
+
causes = set()
|
| 827 |
+
for req, _ in e.causes:
|
| 828 |
+
causes.add(req.name)
|
| 829 |
+
|
| 830 |
+
no_candidates = {c for c in causes if not self._has_any_candidates(c)}
|
| 831 |
+
if no_candidates:
|
| 832 |
+
msg = (
|
| 833 |
+
msg
|
| 834 |
+
+ "\n\n"
|
| 835 |
+
+ "Additionally, some packages in these conflicts have no "
|
| 836 |
+
+ "matching distributions available for your environment:"
|
| 837 |
+
+ "\n "
|
| 838 |
+
+ "\n ".join(sorted(no_candidates))
|
| 839 |
+
)
|
| 840 |
+
|
| 841 |
+
msg = (
|
| 842 |
+
msg
|
| 843 |
+
+ "\n\n"
|
| 844 |
+
+ "To fix this you could try to:\n"
|
| 845 |
+
+ "1. loosen the range of package versions you've specified\n"
|
| 846 |
+
+ "2. remove package versions to allow pip to attempt to solve "
|
| 847 |
+
+ "the dependency conflict\n"
|
| 848 |
+
)
|
| 849 |
+
|
| 850 |
+
logger.info(msg)
|
| 851 |
+
|
| 852 |
+
return DistributionNotFound(
|
| 853 |
+
"ResolutionImpossible: for help visit "
|
| 854 |
+
"https://pip.pypa.io/en/latest/topics/dependency-resolution/"
|
| 855 |
+
"#dealing-with-dependency-conflicts"
|
| 856 |
+
)
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py
ADDED
|
@@ -0,0 +1,166 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Utilities to lazily create and visit candidates found.
|
| 2 |
+
|
| 3 |
+
Creating and visiting a candidate is a *very* costly operation. It involves
|
| 4 |
+
fetching, extracting, potentially building modules from source, and verifying
|
| 5 |
+
distribution metadata. It is therefore crucial for performance to keep
|
| 6 |
+
everything here lazy all the way down, so we only touch candidates that we
|
| 7 |
+
absolutely need, and not "download the world" when we only need one version of
|
| 8 |
+
something.
|
| 9 |
+
"""
|
| 10 |
+
|
| 11 |
+
from __future__ import annotations
|
| 12 |
+
|
| 13 |
+
import logging
|
| 14 |
+
from collections.abc import Iterator, Sequence
|
| 15 |
+
from typing import Any, Callable, Optional
|
| 16 |
+
|
| 17 |
+
from pip._vendor.packaging.version import _BaseVersion
|
| 18 |
+
|
| 19 |
+
from pip._internal.exceptions import MetadataInvalid
|
| 20 |
+
|
| 21 |
+
from .base import Candidate
|
| 22 |
+
|
| 23 |
+
logger = logging.getLogger(__name__)
|
| 24 |
+
|
| 25 |
+
IndexCandidateInfo = tuple[_BaseVersion, Callable[[], Optional[Candidate]]]
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
def _iter_built(infos: Iterator[IndexCandidateInfo]) -> Iterator[Candidate]:
|
| 29 |
+
"""Iterator for ``FoundCandidates``.
|
| 30 |
+
|
| 31 |
+
This iterator is used when the package is not already installed. Candidates
|
| 32 |
+
from index come later in their normal ordering.
|
| 33 |
+
"""
|
| 34 |
+
versions_found: set[_BaseVersion] = set()
|
| 35 |
+
for version, func in infos:
|
| 36 |
+
if version in versions_found:
|
| 37 |
+
continue
|
| 38 |
+
try:
|
| 39 |
+
candidate = func()
|
| 40 |
+
except MetadataInvalid as e:
|
| 41 |
+
logger.warning(
|
| 42 |
+
"Ignoring version %s of %s since it has invalid metadata:\n"
|
| 43 |
+
"%s\n"
|
| 44 |
+
"Please use pip<24.1 if you need to use this version.",
|
| 45 |
+
version,
|
| 46 |
+
e.ireq.name,
|
| 47 |
+
e,
|
| 48 |
+
)
|
| 49 |
+
# Mark version as found to avoid trying other candidates with the same
|
| 50 |
+
# version, since they most likely have invalid metadata as well.
|
| 51 |
+
versions_found.add(version)
|
| 52 |
+
else:
|
| 53 |
+
if candidate is None:
|
| 54 |
+
continue
|
| 55 |
+
yield candidate
|
| 56 |
+
versions_found.add(version)
|
| 57 |
+
|
| 58 |
+
|
| 59 |
+
def _iter_built_with_prepended(
|
| 60 |
+
installed: Candidate, infos: Iterator[IndexCandidateInfo]
|
| 61 |
+
) -> Iterator[Candidate]:
|
| 62 |
+
"""Iterator for ``FoundCandidates``.
|
| 63 |
+
|
| 64 |
+
This iterator is used when the resolver prefers the already-installed
|
| 65 |
+
candidate and NOT to upgrade. The installed candidate is therefore
|
| 66 |
+
always yielded first, and candidates from index come later in their
|
| 67 |
+
normal ordering, except skipped when the version is already installed.
|
| 68 |
+
"""
|
| 69 |
+
yield installed
|
| 70 |
+
versions_found: set[_BaseVersion] = {installed.version}
|
| 71 |
+
for version, func in infos:
|
| 72 |
+
if version in versions_found:
|
| 73 |
+
continue
|
| 74 |
+
candidate = func()
|
| 75 |
+
if candidate is None:
|
| 76 |
+
continue
|
| 77 |
+
yield candidate
|
| 78 |
+
versions_found.add(version)
|
| 79 |
+
|
| 80 |
+
|
| 81 |
+
def _iter_built_with_inserted(
|
| 82 |
+
installed: Candidate, infos: Iterator[IndexCandidateInfo]
|
| 83 |
+
) -> Iterator[Candidate]:
|
| 84 |
+
"""Iterator for ``FoundCandidates``.
|
| 85 |
+
|
| 86 |
+
This iterator is used when the resolver prefers to upgrade an
|
| 87 |
+
already-installed package. Candidates from index are returned in their
|
| 88 |
+
normal ordering, except replaced when the version is already installed.
|
| 89 |
+
|
| 90 |
+
The implementation iterates through and yields other candidates, inserting
|
| 91 |
+
the installed candidate exactly once before we start yielding older or
|
| 92 |
+
equivalent candidates, or after all other candidates if they are all newer.
|
| 93 |
+
"""
|
| 94 |
+
versions_found: set[_BaseVersion] = set()
|
| 95 |
+
for version, func in infos:
|
| 96 |
+
if version in versions_found:
|
| 97 |
+
continue
|
| 98 |
+
# If the installed candidate is better, yield it first.
|
| 99 |
+
if installed.version >= version:
|
| 100 |
+
yield installed
|
| 101 |
+
versions_found.add(installed.version)
|
| 102 |
+
candidate = func()
|
| 103 |
+
if candidate is None:
|
| 104 |
+
continue
|
| 105 |
+
yield candidate
|
| 106 |
+
versions_found.add(version)
|
| 107 |
+
|
| 108 |
+
# If the installed candidate is older than all other candidates.
|
| 109 |
+
if installed.version not in versions_found:
|
| 110 |
+
yield installed
|
| 111 |
+
|
| 112 |
+
|
| 113 |
+
class FoundCandidates(Sequence[Candidate]):
|
| 114 |
+
"""A lazy sequence to provide candidates to the resolver.
|
| 115 |
+
|
| 116 |
+
The intended usage is to return this from `find_matches()` so the resolver
|
| 117 |
+
can iterate through the sequence multiple times, but only access the index
|
| 118 |
+
page when remote packages are actually needed. This improve performances
|
| 119 |
+
when suitable candidates are already installed on disk.
|
| 120 |
+
"""
|
| 121 |
+
|
| 122 |
+
def __init__(
|
| 123 |
+
self,
|
| 124 |
+
get_infos: Callable[[], Iterator[IndexCandidateInfo]],
|
| 125 |
+
installed: Candidate | None,
|
| 126 |
+
prefers_installed: bool,
|
| 127 |
+
incompatible_ids: set[int],
|
| 128 |
+
):
|
| 129 |
+
self._get_infos = get_infos
|
| 130 |
+
self._installed = installed
|
| 131 |
+
self._prefers_installed = prefers_installed
|
| 132 |
+
self._incompatible_ids = incompatible_ids
|
| 133 |
+
self._bool: bool | None = None
|
| 134 |
+
|
| 135 |
+
def __getitem__(self, index: Any) -> Any:
|
| 136 |
+
# Implemented to satisfy the ABC check. This is not needed by the
|
| 137 |
+
# resolver, and should not be used by the provider either (for
|
| 138 |
+
# performance reasons).
|
| 139 |
+
raise NotImplementedError("don't do this")
|
| 140 |
+
|
| 141 |
+
def __iter__(self) -> Iterator[Candidate]:
|
| 142 |
+
infos = self._get_infos()
|
| 143 |
+
if not self._installed:
|
| 144 |
+
iterator = _iter_built(infos)
|
| 145 |
+
elif self._prefers_installed:
|
| 146 |
+
iterator = _iter_built_with_prepended(self._installed, infos)
|
| 147 |
+
else:
|
| 148 |
+
iterator = _iter_built_with_inserted(self._installed, infos)
|
| 149 |
+
return (c for c in iterator if id(c) not in self._incompatible_ids)
|
| 150 |
+
|
| 151 |
+
def __len__(self) -> int:
|
| 152 |
+
# Implemented to satisfy the ABC check. This is not needed by the
|
| 153 |
+
# resolver, and should not be used by the provider either (for
|
| 154 |
+
# performance reasons).
|
| 155 |
+
raise NotImplementedError("don't do this")
|
| 156 |
+
|
| 157 |
+
def __bool__(self) -> bool:
|
| 158 |
+
if self._bool is not None:
|
| 159 |
+
return self._bool
|
| 160 |
+
|
| 161 |
+
if self._prefers_installed and self._installed:
|
| 162 |
+
self._bool = True
|
| 163 |
+
return True
|
| 164 |
+
|
| 165 |
+
self._bool = any(self)
|
| 166 |
+
return self._bool
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/provider.py
ADDED
|
@@ -0,0 +1,285 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from __future__ import annotations
|
| 2 |
+
|
| 3 |
+
import math
|
| 4 |
+
from collections.abc import Iterable, Iterator, Mapping, Sequence
|
| 5 |
+
from functools import cache
|
| 6 |
+
from typing import (
|
| 7 |
+
TYPE_CHECKING,
|
| 8 |
+
TypeVar,
|
| 9 |
+
)
|
| 10 |
+
|
| 11 |
+
from pip._vendor.resolvelib.providers import AbstractProvider
|
| 12 |
+
|
| 13 |
+
from pip._internal.req.req_install import InstallRequirement
|
| 14 |
+
|
| 15 |
+
from .base import Candidate, Constraint, Requirement
|
| 16 |
+
from .candidates import REQUIRES_PYTHON_IDENTIFIER
|
| 17 |
+
from .factory import Factory
|
| 18 |
+
from .requirements import ExplicitRequirement
|
| 19 |
+
|
| 20 |
+
if TYPE_CHECKING:
|
| 21 |
+
from pip._vendor.resolvelib.providers import Preference
|
| 22 |
+
from pip._vendor.resolvelib.resolvers import RequirementInformation
|
| 23 |
+
|
| 24 |
+
PreferenceInformation = RequirementInformation[Requirement, Candidate]
|
| 25 |
+
|
| 26 |
+
_ProviderBase = AbstractProvider[Requirement, Candidate, str]
|
| 27 |
+
else:
|
| 28 |
+
_ProviderBase = AbstractProvider
|
| 29 |
+
|
| 30 |
+
# Notes on the relationship between the provider, the factory, and the
|
| 31 |
+
# candidate and requirement classes.
|
| 32 |
+
#
|
| 33 |
+
# The provider is a direct implementation of the resolvelib class. Its role
|
| 34 |
+
# is to deliver the API that resolvelib expects.
|
| 35 |
+
#
|
| 36 |
+
# Rather than work with completely abstract "requirement" and "candidate"
|
| 37 |
+
# concepts as resolvelib does, pip has concrete classes implementing these two
|
| 38 |
+
# ideas. The API of Requirement and Candidate objects are defined in the base
|
| 39 |
+
# classes, but essentially map fairly directly to the equivalent provider
|
| 40 |
+
# methods. In particular, `find_matches` and `is_satisfied_by` are
|
| 41 |
+
# requirement methods, and `get_dependencies` is a candidate method.
|
| 42 |
+
#
|
| 43 |
+
# The factory is the interface to pip's internal mechanisms. It is stateless,
|
| 44 |
+
# and is created by the resolver and held as a property of the provider. It is
|
| 45 |
+
# responsible for creating Requirement and Candidate objects, and provides
|
| 46 |
+
# services to those objects (access to pip's finder and preparer).
|
| 47 |
+
|
| 48 |
+
|
| 49 |
+
D = TypeVar("D")
|
| 50 |
+
V = TypeVar("V")
|
| 51 |
+
|
| 52 |
+
|
| 53 |
+
def _get_with_identifier(
|
| 54 |
+
mapping: Mapping[str, V],
|
| 55 |
+
identifier: str,
|
| 56 |
+
default: D,
|
| 57 |
+
) -> D | V:
|
| 58 |
+
"""Get item from a package name lookup mapping with a resolver identifier.
|
| 59 |
+
|
| 60 |
+
This extra logic is needed when the target mapping is keyed by package
|
| 61 |
+
name, which cannot be directly looked up with an identifier (which may
|
| 62 |
+
contain requested extras). Additional logic is added to also look up a value
|
| 63 |
+
by "cleaning up" the extras from the identifier.
|
| 64 |
+
"""
|
| 65 |
+
if identifier in mapping:
|
| 66 |
+
return mapping[identifier]
|
| 67 |
+
# HACK: Theoretically we should check whether this identifier is a valid
|
| 68 |
+
# "NAME[EXTRAS]" format, and parse out the name part with packaging or
|
| 69 |
+
# some regular expression. But since pip's resolver only spits out three
|
| 70 |
+
# kinds of identifiers: normalized PEP 503 names, normalized names plus
|
| 71 |
+
# extras, and Requires-Python, we can cheat a bit here.
|
| 72 |
+
name, open_bracket, _ = identifier.partition("[")
|
| 73 |
+
if open_bracket and name in mapping:
|
| 74 |
+
return mapping[name]
|
| 75 |
+
return default
|
| 76 |
+
|
| 77 |
+
|
| 78 |
+
class PipProvider(_ProviderBase):
|
| 79 |
+
"""Pip's provider implementation for resolvelib.
|
| 80 |
+
|
| 81 |
+
:params constraints: A mapping of constraints specified by the user. Keys
|
| 82 |
+
are canonicalized project names.
|
| 83 |
+
:params ignore_dependencies: Whether the user specified ``--no-deps``.
|
| 84 |
+
:params upgrade_strategy: The user-specified upgrade strategy.
|
| 85 |
+
:params user_requested: A set of canonicalized package names that the user
|
| 86 |
+
supplied for pip to install/upgrade.
|
| 87 |
+
"""
|
| 88 |
+
|
| 89 |
+
def __init__(
|
| 90 |
+
self,
|
| 91 |
+
factory: Factory,
|
| 92 |
+
constraints: dict[str, Constraint],
|
| 93 |
+
ignore_dependencies: bool,
|
| 94 |
+
upgrade_strategy: str,
|
| 95 |
+
user_requested: dict[str, int],
|
| 96 |
+
) -> None:
|
| 97 |
+
self._factory = factory
|
| 98 |
+
self._constraints = constraints
|
| 99 |
+
self._ignore_dependencies = ignore_dependencies
|
| 100 |
+
self._upgrade_strategy = upgrade_strategy
|
| 101 |
+
self._user_requested = user_requested
|
| 102 |
+
|
| 103 |
+
@property
|
| 104 |
+
def constraints(self) -> dict[str, Constraint]:
|
| 105 |
+
"""Public view of user-specified constraints.
|
| 106 |
+
|
| 107 |
+
Exposes the provider's constraints mapping without encouraging
|
| 108 |
+
external callers to reach into private attributes.
|
| 109 |
+
"""
|
| 110 |
+
return self._constraints
|
| 111 |
+
|
| 112 |
+
def identify(self, requirement_or_candidate: Requirement | Candidate) -> str:
|
| 113 |
+
return requirement_or_candidate.name
|
| 114 |
+
|
| 115 |
+
def narrow_requirement_selection(
|
| 116 |
+
self,
|
| 117 |
+
identifiers: Iterable[str],
|
| 118 |
+
resolutions: Mapping[str, Candidate],
|
| 119 |
+
candidates: Mapping[str, Iterator[Candidate]],
|
| 120 |
+
information: Mapping[str, Iterator[PreferenceInformation]],
|
| 121 |
+
backtrack_causes: Sequence[PreferenceInformation],
|
| 122 |
+
) -> Iterable[str]:
|
| 123 |
+
"""Produce a subset of identifiers that should be considered before others.
|
| 124 |
+
|
| 125 |
+
Currently pip narrows the following selection:
|
| 126 |
+
* Requires-Python, if present is always returned by itself
|
| 127 |
+
* Backtrack causes are considered next because they can be identified
|
| 128 |
+
in linear time here, whereas because get_preference() is called
|
| 129 |
+
for each identifier, it would be quadratic to check for them there.
|
| 130 |
+
Further, the current backtrack causes likely need to be resolved
|
| 131 |
+
before other requirements as a resolution can't be found while
|
| 132 |
+
there is a conflict.
|
| 133 |
+
"""
|
| 134 |
+
backtrack_identifiers = set()
|
| 135 |
+
for info in backtrack_causes:
|
| 136 |
+
backtrack_identifiers.add(info.requirement.name)
|
| 137 |
+
if info.parent is not None:
|
| 138 |
+
backtrack_identifiers.add(info.parent.name)
|
| 139 |
+
|
| 140 |
+
current_backtrack_causes = []
|
| 141 |
+
for identifier in identifiers:
|
| 142 |
+
# Requires-Python has only one candidate and the check is basically
|
| 143 |
+
# free, so we always do it first to avoid needless work if it fails.
|
| 144 |
+
# This skips calling get_preference() for all other identifiers.
|
| 145 |
+
if identifier == REQUIRES_PYTHON_IDENTIFIER:
|
| 146 |
+
return [identifier]
|
| 147 |
+
|
| 148 |
+
# Check if this identifier is a backtrack cause
|
| 149 |
+
if identifier in backtrack_identifiers:
|
| 150 |
+
current_backtrack_causes.append(identifier)
|
| 151 |
+
continue
|
| 152 |
+
|
| 153 |
+
if current_backtrack_causes:
|
| 154 |
+
return current_backtrack_causes
|
| 155 |
+
|
| 156 |
+
return identifiers
|
| 157 |
+
|
| 158 |
+
def get_preference(
|
| 159 |
+
self,
|
| 160 |
+
identifier: str,
|
| 161 |
+
resolutions: Mapping[str, Candidate],
|
| 162 |
+
candidates: Mapping[str, Iterator[Candidate]],
|
| 163 |
+
information: Mapping[str, Iterable[PreferenceInformation]],
|
| 164 |
+
backtrack_causes: Sequence[PreferenceInformation],
|
| 165 |
+
) -> Preference:
|
| 166 |
+
"""Produce a sort key for given requirement based on preference.
|
| 167 |
+
|
| 168 |
+
The lower the return value is, the more preferred this group of
|
| 169 |
+
arguments is.
|
| 170 |
+
|
| 171 |
+
Currently pip considers the following in order:
|
| 172 |
+
|
| 173 |
+
* Any requirement that is "direct", e.g., points to an explicit URL.
|
| 174 |
+
* Any requirement that is "pinned", i.e., contains the operator ``===``
|
| 175 |
+
or ``==`` without a wildcard.
|
| 176 |
+
* Any requirement that imposes an upper version limit, i.e., contains the
|
| 177 |
+
operator ``<``, ``<=``, ``~=``, or ``==`` with a wildcard. Because
|
| 178 |
+
pip prioritizes the latest version, preferring explicit upper bounds
|
| 179 |
+
can rule out infeasible candidates sooner. This does not imply that
|
| 180 |
+
upper bounds are good practice; they can make dependency management
|
| 181 |
+
and resolution harder.
|
| 182 |
+
* Order user-specified requirements as they are specified, placing
|
| 183 |
+
other requirements afterward.
|
| 184 |
+
* Any "non-free" requirement, i.e., one that contains at least one
|
| 185 |
+
operator, such as ``>=`` or ``!=``.
|
| 186 |
+
* Alphabetical order for consistency (aids debuggability).
|
| 187 |
+
"""
|
| 188 |
+
try:
|
| 189 |
+
next(iter(information[identifier]))
|
| 190 |
+
except StopIteration:
|
| 191 |
+
# There is no information for this identifier, so there's no known
|
| 192 |
+
# candidates.
|
| 193 |
+
has_information = False
|
| 194 |
+
else:
|
| 195 |
+
has_information = True
|
| 196 |
+
|
| 197 |
+
if not has_information:
|
| 198 |
+
direct = False
|
| 199 |
+
ireqs: tuple[InstallRequirement | None, ...] = ()
|
| 200 |
+
else:
|
| 201 |
+
# Go through the information and for each requirement,
|
| 202 |
+
# check if it's explicit (e.g., a direct link) and get the
|
| 203 |
+
# InstallRequirement (the second element) from get_candidate_lookup()
|
| 204 |
+
directs, ireqs = zip(
|
| 205 |
+
*(
|
| 206 |
+
(isinstance(r, ExplicitRequirement), r.get_candidate_lookup()[1])
|
| 207 |
+
for r, _ in information[identifier]
|
| 208 |
+
)
|
| 209 |
+
)
|
| 210 |
+
direct = any(directs)
|
| 211 |
+
|
| 212 |
+
operators: list[tuple[str, str]] = [
|
| 213 |
+
(specifier.operator, specifier.version)
|
| 214 |
+
for specifier_set in (ireq.specifier for ireq in ireqs if ireq)
|
| 215 |
+
for specifier in specifier_set
|
| 216 |
+
]
|
| 217 |
+
|
| 218 |
+
pinned = any(((op[:2] == "==") and ("*" not in ver)) for op, ver in operators)
|
| 219 |
+
upper_bounded = any(
|
| 220 |
+
((op in ("<", "<=", "~=")) or (op == "==" and "*" in ver))
|
| 221 |
+
for op, ver in operators
|
| 222 |
+
)
|
| 223 |
+
unfree = bool(operators)
|
| 224 |
+
requested_order = self._user_requested.get(identifier, math.inf)
|
| 225 |
+
|
| 226 |
+
return (
|
| 227 |
+
not direct,
|
| 228 |
+
not pinned,
|
| 229 |
+
not upper_bounded,
|
| 230 |
+
requested_order,
|
| 231 |
+
not unfree,
|
| 232 |
+
identifier,
|
| 233 |
+
)
|
| 234 |
+
|
| 235 |
+
def find_matches(
|
| 236 |
+
self,
|
| 237 |
+
identifier: str,
|
| 238 |
+
requirements: Mapping[str, Iterator[Requirement]],
|
| 239 |
+
incompatibilities: Mapping[str, Iterator[Candidate]],
|
| 240 |
+
) -> Iterable[Candidate]:
|
| 241 |
+
def _eligible_for_upgrade(identifier: str) -> bool:
|
| 242 |
+
"""Are upgrades allowed for this project?
|
| 243 |
+
|
| 244 |
+
This checks the upgrade strategy, and whether the project was one
|
| 245 |
+
that the user specified in the command line, in order to decide
|
| 246 |
+
whether we should upgrade if there's a newer version available.
|
| 247 |
+
|
| 248 |
+
(Note that we don't need access to the `--upgrade` flag, because
|
| 249 |
+
an upgrade strategy of "to-satisfy-only" means that `--upgrade`
|
| 250 |
+
was not specified).
|
| 251 |
+
"""
|
| 252 |
+
if self._upgrade_strategy == "eager":
|
| 253 |
+
return True
|
| 254 |
+
elif self._upgrade_strategy == "only-if-needed":
|
| 255 |
+
user_order = _get_with_identifier(
|
| 256 |
+
self._user_requested,
|
| 257 |
+
identifier,
|
| 258 |
+
default=None,
|
| 259 |
+
)
|
| 260 |
+
return user_order is not None
|
| 261 |
+
return False
|
| 262 |
+
|
| 263 |
+
constraint = _get_with_identifier(
|
| 264 |
+
self._constraints,
|
| 265 |
+
identifier,
|
| 266 |
+
default=Constraint.empty(),
|
| 267 |
+
)
|
| 268 |
+
return self._factory.find_candidates(
|
| 269 |
+
identifier=identifier,
|
| 270 |
+
requirements=requirements,
|
| 271 |
+
constraint=constraint,
|
| 272 |
+
prefers_installed=(not _eligible_for_upgrade(identifier)),
|
| 273 |
+
incompatibilities=incompatibilities,
|
| 274 |
+
is_satisfied_by=self.is_satisfied_by,
|
| 275 |
+
)
|
| 276 |
+
|
| 277 |
+
@staticmethod
|
| 278 |
+
@cache
|
| 279 |
+
def is_satisfied_by(requirement: Requirement, candidate: Candidate) -> bool:
|
| 280 |
+
return requirement.is_satisfied_by(candidate)
|
| 281 |
+
|
| 282 |
+
def get_dependencies(self, candidate: Candidate) -> Iterable[Requirement]:
|
| 283 |
+
with_requires = not self._ignore_dependencies
|
| 284 |
+
# iter_dependencies() can perform nontrivial work so delay until needed.
|
| 285 |
+
return (r for r in candidate.iter_dependencies(with_requires) if r is not None)
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/reporter.py
ADDED
|
@@ -0,0 +1,98 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from __future__ import annotations
|
| 2 |
+
|
| 3 |
+
from collections import defaultdict
|
| 4 |
+
from collections.abc import Mapping
|
| 5 |
+
from logging import getLogger
|
| 6 |
+
from typing import Any
|
| 7 |
+
|
| 8 |
+
from pip._vendor.resolvelib.reporters import BaseReporter
|
| 9 |
+
|
| 10 |
+
from .base import Candidate, Constraint, Requirement
|
| 11 |
+
|
| 12 |
+
logger = getLogger(__name__)
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
class PipReporter(BaseReporter[Requirement, Candidate, str]):
|
| 16 |
+
def __init__(self, constraints: Mapping[str, Constraint] | None = None) -> None:
|
| 17 |
+
self.reject_count_by_package: defaultdict[str, int] = defaultdict(int)
|
| 18 |
+
self._constraints = constraints or {}
|
| 19 |
+
|
| 20 |
+
self._messages_at_reject_count = {
|
| 21 |
+
1: (
|
| 22 |
+
"pip is looking at multiple versions of {package_name} to "
|
| 23 |
+
"determine which version is compatible with other "
|
| 24 |
+
"requirements. This could take a while."
|
| 25 |
+
),
|
| 26 |
+
8: (
|
| 27 |
+
"pip is still looking at multiple versions of {package_name} to "
|
| 28 |
+
"determine which version is compatible with other "
|
| 29 |
+
"requirements. This could take a while."
|
| 30 |
+
),
|
| 31 |
+
13: (
|
| 32 |
+
"This is taking longer than usual. You might need to provide "
|
| 33 |
+
"the dependency resolver with stricter constraints to reduce "
|
| 34 |
+
"runtime. See https://pip.pypa.io/warnings/backtracking for "
|
| 35 |
+
"guidance. If you want to abort this run, press Ctrl + C."
|
| 36 |
+
),
|
| 37 |
+
}
|
| 38 |
+
|
| 39 |
+
def rejecting_candidate(self, criterion: Any, candidate: Candidate) -> None:
|
| 40 |
+
"""Report a candidate being rejected.
|
| 41 |
+
|
| 42 |
+
Logs both the rejection count message (if applicable) and details about
|
| 43 |
+
the requirements and constraints that caused the rejection.
|
| 44 |
+
"""
|
| 45 |
+
self.reject_count_by_package[candidate.name] += 1
|
| 46 |
+
|
| 47 |
+
count = self.reject_count_by_package[candidate.name]
|
| 48 |
+
if count in self._messages_at_reject_count:
|
| 49 |
+
message = self._messages_at_reject_count[count]
|
| 50 |
+
logger.info("INFO: %s", message.format(package_name=candidate.name))
|
| 51 |
+
|
| 52 |
+
msg = "Will try a different candidate, due to conflict:"
|
| 53 |
+
for req_info in criterion.information:
|
| 54 |
+
req, parent = req_info.requirement, req_info.parent
|
| 55 |
+
msg += "\n "
|
| 56 |
+
if parent:
|
| 57 |
+
msg += f"{parent.name} {parent.version} depends on "
|
| 58 |
+
else:
|
| 59 |
+
msg += "The user requested "
|
| 60 |
+
msg += req.format_for_error()
|
| 61 |
+
|
| 62 |
+
# Add any relevant constraints
|
| 63 |
+
if self._constraints:
|
| 64 |
+
name = candidate.name
|
| 65 |
+
constraint = self._constraints.get(name)
|
| 66 |
+
if constraint and constraint.specifier:
|
| 67 |
+
constraint_text = f"{name}{constraint.specifier}"
|
| 68 |
+
msg += f"\n The user requested (constraint) {constraint_text}"
|
| 69 |
+
|
| 70 |
+
logger.debug(msg)
|
| 71 |
+
|
| 72 |
+
|
| 73 |
+
class PipDebuggingReporter(BaseReporter[Requirement, Candidate, str]):
|
| 74 |
+
"""A reporter that does an info log for every event it sees."""
|
| 75 |
+
|
| 76 |
+
def starting(self) -> None:
|
| 77 |
+
logger.info("Reporter.starting()")
|
| 78 |
+
|
| 79 |
+
def starting_round(self, index: int) -> None:
|
| 80 |
+
logger.info("Reporter.starting_round(%r)", index)
|
| 81 |
+
|
| 82 |
+
def ending_round(self, index: int, state: Any) -> None:
|
| 83 |
+
logger.info("Reporter.ending_round(%r, state)", index)
|
| 84 |
+
logger.debug("Reporter.ending_round(%r, %r)", index, state)
|
| 85 |
+
|
| 86 |
+
def ending(self, state: Any) -> None:
|
| 87 |
+
logger.info("Reporter.ending(%r)", state)
|
| 88 |
+
|
| 89 |
+
def adding_requirement(
|
| 90 |
+
self, requirement: Requirement, parent: Candidate | None
|
| 91 |
+
) -> None:
|
| 92 |
+
logger.info("Reporter.adding_requirement(%r, %r)", requirement, parent)
|
| 93 |
+
|
| 94 |
+
def rejecting_candidate(self, criterion: Any, candidate: Candidate) -> None:
|
| 95 |
+
logger.info("Reporter.rejecting_candidate(%r, %r)", criterion, candidate)
|
| 96 |
+
|
| 97 |
+
def pinning(self, candidate: Candidate) -> None:
|
| 98 |
+
logger.info("Reporter.pinning(%r)", candidate)
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/requirements.py
ADDED
|
@@ -0,0 +1,251 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from __future__ import annotations
|
| 2 |
+
|
| 3 |
+
from typing import Any
|
| 4 |
+
|
| 5 |
+
from pip._vendor.packaging.specifiers import SpecifierSet
|
| 6 |
+
from pip._vendor.packaging.utils import NormalizedName, canonicalize_name
|
| 7 |
+
|
| 8 |
+
from pip._internal.req.constructors import install_req_drop_extras
|
| 9 |
+
from pip._internal.req.req_install import InstallRequirement
|
| 10 |
+
|
| 11 |
+
from .base import Candidate, CandidateLookup, Requirement, format_name
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
class ExplicitRequirement(Requirement):
|
| 15 |
+
def __init__(self, candidate: Candidate) -> None:
|
| 16 |
+
self.candidate = candidate
|
| 17 |
+
|
| 18 |
+
def __str__(self) -> str:
|
| 19 |
+
return str(self.candidate)
|
| 20 |
+
|
| 21 |
+
def __repr__(self) -> str:
|
| 22 |
+
return f"{self.__class__.__name__}({self.candidate!r})"
|
| 23 |
+
|
| 24 |
+
def __hash__(self) -> int:
|
| 25 |
+
return hash(self.candidate)
|
| 26 |
+
|
| 27 |
+
def __eq__(self, other: Any) -> bool:
|
| 28 |
+
if not isinstance(other, ExplicitRequirement):
|
| 29 |
+
return False
|
| 30 |
+
return self.candidate == other.candidate
|
| 31 |
+
|
| 32 |
+
@property
|
| 33 |
+
def project_name(self) -> NormalizedName:
|
| 34 |
+
# No need to canonicalize - the candidate did this
|
| 35 |
+
return self.candidate.project_name
|
| 36 |
+
|
| 37 |
+
@property
|
| 38 |
+
def name(self) -> str:
|
| 39 |
+
# No need to canonicalize - the candidate did this
|
| 40 |
+
return self.candidate.name
|
| 41 |
+
|
| 42 |
+
def format_for_error(self) -> str:
|
| 43 |
+
return self.candidate.format_for_error()
|
| 44 |
+
|
| 45 |
+
def get_candidate_lookup(self) -> CandidateLookup:
|
| 46 |
+
return self.candidate, None
|
| 47 |
+
|
| 48 |
+
def is_satisfied_by(self, candidate: Candidate) -> bool:
|
| 49 |
+
return candidate == self.candidate
|
| 50 |
+
|
| 51 |
+
|
| 52 |
+
class SpecifierRequirement(Requirement):
|
| 53 |
+
def __init__(self, ireq: InstallRequirement) -> None:
|
| 54 |
+
assert ireq.link is None, "This is a link, not a specifier"
|
| 55 |
+
self._ireq = ireq
|
| 56 |
+
self._equal_cache: str | None = None
|
| 57 |
+
self._hash: int | None = None
|
| 58 |
+
self._extras = frozenset(canonicalize_name(e) for e in self._ireq.extras)
|
| 59 |
+
|
| 60 |
+
@property
|
| 61 |
+
def _equal(self) -> str:
|
| 62 |
+
if self._equal_cache is not None:
|
| 63 |
+
return self._equal_cache
|
| 64 |
+
|
| 65 |
+
self._equal_cache = str(self._ireq)
|
| 66 |
+
return self._equal_cache
|
| 67 |
+
|
| 68 |
+
def __str__(self) -> str:
|
| 69 |
+
return str(self._ireq.req)
|
| 70 |
+
|
| 71 |
+
def __repr__(self) -> str:
|
| 72 |
+
return f"{self.__class__.__name__}({str(self._ireq.req)!r})"
|
| 73 |
+
|
| 74 |
+
def __eq__(self, other: object) -> bool:
|
| 75 |
+
if not isinstance(other, SpecifierRequirement):
|
| 76 |
+
return NotImplemented
|
| 77 |
+
return self._equal == other._equal
|
| 78 |
+
|
| 79 |
+
def __hash__(self) -> int:
|
| 80 |
+
if self._hash is not None:
|
| 81 |
+
return self._hash
|
| 82 |
+
|
| 83 |
+
self._hash = hash(self._equal)
|
| 84 |
+
return self._hash
|
| 85 |
+
|
| 86 |
+
@property
|
| 87 |
+
def project_name(self) -> NormalizedName:
|
| 88 |
+
assert self._ireq.req, "Specifier-backed ireq is always PEP 508"
|
| 89 |
+
return canonicalize_name(self._ireq.req.name)
|
| 90 |
+
|
| 91 |
+
@property
|
| 92 |
+
def name(self) -> str:
|
| 93 |
+
return format_name(self.project_name, self._extras)
|
| 94 |
+
|
| 95 |
+
def format_for_error(self) -> str:
|
| 96 |
+
# Convert comma-separated specifiers into "A, B, ..., F and G"
|
| 97 |
+
# This makes the specifier a bit more "human readable", without
|
| 98 |
+
# risking a change in meaning. (Hopefully! Not all edge cases have
|
| 99 |
+
# been checked)
|
| 100 |
+
parts = [s.strip() for s in str(self).split(",")]
|
| 101 |
+
if len(parts) == 0:
|
| 102 |
+
return ""
|
| 103 |
+
elif len(parts) == 1:
|
| 104 |
+
return parts[0]
|
| 105 |
+
|
| 106 |
+
return ", ".join(parts[:-1]) + " and " + parts[-1]
|
| 107 |
+
|
| 108 |
+
def get_candidate_lookup(self) -> CandidateLookup:
|
| 109 |
+
return None, self._ireq
|
| 110 |
+
|
| 111 |
+
def is_satisfied_by(self, candidate: Candidate) -> bool:
|
| 112 |
+
assert candidate.name == self.name, (
|
| 113 |
+
f"Internal issue: Candidate is not for this requirement "
|
| 114 |
+
f"{candidate.name} vs {self.name}"
|
| 115 |
+
)
|
| 116 |
+
# We can safely always allow prereleases here since PackageFinder
|
| 117 |
+
# already implements the prerelease logic, and would have filtered out
|
| 118 |
+
# prerelease candidates if the user does not expect them.
|
| 119 |
+
assert self._ireq.req, "Specifier-backed ireq is always PEP 508"
|
| 120 |
+
spec = self._ireq.req.specifier
|
| 121 |
+
return spec.contains(candidate.version, prereleases=True)
|
| 122 |
+
|
| 123 |
+
|
| 124 |
+
class SpecifierWithoutExtrasRequirement(SpecifierRequirement):
|
| 125 |
+
"""
|
| 126 |
+
Requirement backed by an install requirement on a base package.
|
| 127 |
+
Trims extras from its install requirement if there are any.
|
| 128 |
+
"""
|
| 129 |
+
|
| 130 |
+
def __init__(self, ireq: InstallRequirement) -> None:
|
| 131 |
+
assert ireq.link is None, "This is a link, not a specifier"
|
| 132 |
+
self._ireq = install_req_drop_extras(ireq)
|
| 133 |
+
self._equal_cache: str | None = None
|
| 134 |
+
self._hash: int | None = None
|
| 135 |
+
self._extras = frozenset(canonicalize_name(e) for e in self._ireq.extras)
|
| 136 |
+
|
| 137 |
+
@property
|
| 138 |
+
def _equal(self) -> str:
|
| 139 |
+
if self._equal_cache is not None:
|
| 140 |
+
return self._equal_cache
|
| 141 |
+
|
| 142 |
+
self._equal_cache = str(self._ireq)
|
| 143 |
+
return self._equal_cache
|
| 144 |
+
|
| 145 |
+
def __eq__(self, other: object) -> bool:
|
| 146 |
+
if not isinstance(other, SpecifierWithoutExtrasRequirement):
|
| 147 |
+
return NotImplemented
|
| 148 |
+
return self._equal == other._equal
|
| 149 |
+
|
| 150 |
+
def __hash__(self) -> int:
|
| 151 |
+
if self._hash is not None:
|
| 152 |
+
return self._hash
|
| 153 |
+
|
| 154 |
+
self._hash = hash(self._equal)
|
| 155 |
+
return self._hash
|
| 156 |
+
|
| 157 |
+
|
| 158 |
+
class RequiresPythonRequirement(Requirement):
|
| 159 |
+
"""A requirement representing Requires-Python metadata."""
|
| 160 |
+
|
| 161 |
+
def __init__(self, specifier: SpecifierSet, match: Candidate) -> None:
|
| 162 |
+
self.specifier = specifier
|
| 163 |
+
self._specifier_string = str(specifier) # for faster __eq__
|
| 164 |
+
self._hash: int | None = None
|
| 165 |
+
self._candidate = match
|
| 166 |
+
|
| 167 |
+
# Pre-compute candidate lookup to avoid repeated specifier checks
|
| 168 |
+
if specifier.contains(match.version, prereleases=True):
|
| 169 |
+
self._candidate_lookup: CandidateLookup = (match, None)
|
| 170 |
+
else:
|
| 171 |
+
self._candidate_lookup = (None, None)
|
| 172 |
+
|
| 173 |
+
def __str__(self) -> str:
|
| 174 |
+
return f"Python {self.specifier}"
|
| 175 |
+
|
| 176 |
+
def __repr__(self) -> str:
|
| 177 |
+
return f"{self.__class__.__name__}({str(self.specifier)!r})"
|
| 178 |
+
|
| 179 |
+
def __hash__(self) -> int:
|
| 180 |
+
if self._hash is not None:
|
| 181 |
+
return self._hash
|
| 182 |
+
|
| 183 |
+
self._hash = hash((self._specifier_string, self._candidate))
|
| 184 |
+
return self._hash
|
| 185 |
+
|
| 186 |
+
def __eq__(self, other: Any) -> bool:
|
| 187 |
+
if not isinstance(other, RequiresPythonRequirement):
|
| 188 |
+
return False
|
| 189 |
+
return (
|
| 190 |
+
self._specifier_string == other._specifier_string
|
| 191 |
+
and self._candidate == other._candidate
|
| 192 |
+
)
|
| 193 |
+
|
| 194 |
+
@property
|
| 195 |
+
def project_name(self) -> NormalizedName:
|
| 196 |
+
return self._candidate.project_name
|
| 197 |
+
|
| 198 |
+
@property
|
| 199 |
+
def name(self) -> str:
|
| 200 |
+
return self._candidate.name
|
| 201 |
+
|
| 202 |
+
def format_for_error(self) -> str:
|
| 203 |
+
return str(self)
|
| 204 |
+
|
| 205 |
+
def get_candidate_lookup(self) -> CandidateLookup:
|
| 206 |
+
return self._candidate_lookup
|
| 207 |
+
|
| 208 |
+
def is_satisfied_by(self, candidate: Candidate) -> bool:
|
| 209 |
+
assert candidate.name == self._candidate.name, "Not Python candidate"
|
| 210 |
+
# We can safely always allow prereleases here since PackageFinder
|
| 211 |
+
# already implements the prerelease logic, and would have filtered out
|
| 212 |
+
# prerelease candidates if the user does not expect them.
|
| 213 |
+
return self.specifier.contains(candidate.version, prereleases=True)
|
| 214 |
+
|
| 215 |
+
|
| 216 |
+
class UnsatisfiableRequirement(Requirement):
|
| 217 |
+
"""A requirement that cannot be satisfied."""
|
| 218 |
+
|
| 219 |
+
def __init__(self, name: NormalizedName) -> None:
|
| 220 |
+
self._name = name
|
| 221 |
+
|
| 222 |
+
def __str__(self) -> str:
|
| 223 |
+
return f"{self._name} (unavailable)"
|
| 224 |
+
|
| 225 |
+
def __repr__(self) -> str:
|
| 226 |
+
return f"{self.__class__.__name__}({str(self._name)!r})"
|
| 227 |
+
|
| 228 |
+
def __eq__(self, other: object) -> bool:
|
| 229 |
+
if not isinstance(other, UnsatisfiableRequirement):
|
| 230 |
+
return NotImplemented
|
| 231 |
+
return self._name == other._name
|
| 232 |
+
|
| 233 |
+
def __hash__(self) -> int:
|
| 234 |
+
return hash(self._name)
|
| 235 |
+
|
| 236 |
+
@property
|
| 237 |
+
def project_name(self) -> NormalizedName:
|
| 238 |
+
return self._name
|
| 239 |
+
|
| 240 |
+
@property
|
| 241 |
+
def name(self) -> str:
|
| 242 |
+
return self._name
|
| 243 |
+
|
| 244 |
+
def format_for_error(self) -> str:
|
| 245 |
+
return str(self)
|
| 246 |
+
|
| 247 |
+
def get_candidate_lookup(self) -> CandidateLookup:
|
| 248 |
+
return None, None
|
| 249 |
+
|
| 250 |
+
def is_satisfied_by(self, candidate: Candidate) -> bool:
|
| 251 |
+
return False
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/resolver.py
ADDED
|
@@ -0,0 +1,332 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from __future__ import annotations
|
| 2 |
+
|
| 3 |
+
import contextlib
|
| 4 |
+
import functools
|
| 5 |
+
import logging
|
| 6 |
+
import os
|
| 7 |
+
from typing import TYPE_CHECKING, cast
|
| 8 |
+
|
| 9 |
+
from pip._vendor.packaging.utils import canonicalize_name
|
| 10 |
+
from pip._vendor.resolvelib import BaseReporter, ResolutionImpossible, ResolutionTooDeep
|
| 11 |
+
from pip._vendor.resolvelib import Resolver as RLResolver
|
| 12 |
+
from pip._vendor.resolvelib.structs import DirectedGraph
|
| 13 |
+
|
| 14 |
+
from pip._internal.cache import WheelCache
|
| 15 |
+
from pip._internal.exceptions import ResolutionTooDeepError
|
| 16 |
+
from pip._internal.index.package_finder import PackageFinder
|
| 17 |
+
from pip._internal.operations.prepare import RequirementPreparer
|
| 18 |
+
from pip._internal.req.constructors import install_req_extend_extras
|
| 19 |
+
from pip._internal.req.req_install import InstallRequirement
|
| 20 |
+
from pip._internal.req.req_set import RequirementSet
|
| 21 |
+
from pip._internal.resolution.base import BaseResolver, InstallRequirementProvider
|
| 22 |
+
from pip._internal.resolution.resolvelib.provider import PipProvider
|
| 23 |
+
from pip._internal.resolution.resolvelib.reporter import (
|
| 24 |
+
PipDebuggingReporter,
|
| 25 |
+
PipReporter,
|
| 26 |
+
)
|
| 27 |
+
from pip._internal.utils.packaging import get_requirement
|
| 28 |
+
|
| 29 |
+
from .base import Candidate, Requirement
|
| 30 |
+
from .factory import Factory
|
| 31 |
+
|
| 32 |
+
if TYPE_CHECKING:
|
| 33 |
+
from pip._vendor.resolvelib.resolvers import Result as RLResult
|
| 34 |
+
|
| 35 |
+
Result = RLResult[Requirement, Candidate, str]
|
| 36 |
+
|
| 37 |
+
|
| 38 |
+
logger = logging.getLogger(__name__)
|
| 39 |
+
|
| 40 |
+
|
| 41 |
+
class Resolver(BaseResolver):
|
| 42 |
+
_allowed_strategies = {"eager", "only-if-needed", "to-satisfy-only"}
|
| 43 |
+
|
| 44 |
+
def __init__(
|
| 45 |
+
self,
|
| 46 |
+
preparer: RequirementPreparer,
|
| 47 |
+
finder: PackageFinder,
|
| 48 |
+
wheel_cache: WheelCache | None,
|
| 49 |
+
make_install_req: InstallRequirementProvider,
|
| 50 |
+
use_user_site: bool,
|
| 51 |
+
ignore_dependencies: bool,
|
| 52 |
+
ignore_installed: bool,
|
| 53 |
+
ignore_requires_python: bool,
|
| 54 |
+
force_reinstall: bool,
|
| 55 |
+
upgrade_strategy: str,
|
| 56 |
+
py_version_info: tuple[int, ...] | None = None,
|
| 57 |
+
):
|
| 58 |
+
super().__init__()
|
| 59 |
+
assert upgrade_strategy in self._allowed_strategies
|
| 60 |
+
|
| 61 |
+
self.factory = Factory(
|
| 62 |
+
finder=finder,
|
| 63 |
+
preparer=preparer,
|
| 64 |
+
make_install_req=make_install_req,
|
| 65 |
+
wheel_cache=wheel_cache,
|
| 66 |
+
use_user_site=use_user_site,
|
| 67 |
+
force_reinstall=force_reinstall,
|
| 68 |
+
ignore_installed=ignore_installed,
|
| 69 |
+
ignore_requires_python=ignore_requires_python,
|
| 70 |
+
py_version_info=py_version_info,
|
| 71 |
+
)
|
| 72 |
+
self.ignore_dependencies = ignore_dependencies
|
| 73 |
+
self.upgrade_strategy = upgrade_strategy
|
| 74 |
+
self._result: Result | None = None
|
| 75 |
+
|
| 76 |
+
def resolve(
|
| 77 |
+
self, root_reqs: list[InstallRequirement], check_supported_wheels: bool
|
| 78 |
+
) -> RequirementSet:
|
| 79 |
+
collected = self.factory.collect_root_requirements(root_reqs)
|
| 80 |
+
provider = PipProvider(
|
| 81 |
+
factory=self.factory,
|
| 82 |
+
constraints=collected.constraints,
|
| 83 |
+
ignore_dependencies=self.ignore_dependencies,
|
| 84 |
+
upgrade_strategy=self.upgrade_strategy,
|
| 85 |
+
user_requested=collected.user_requested,
|
| 86 |
+
)
|
| 87 |
+
if "PIP_RESOLVER_DEBUG" in os.environ:
|
| 88 |
+
reporter: BaseReporter[Requirement, Candidate, str] = PipDebuggingReporter()
|
| 89 |
+
else:
|
| 90 |
+
reporter = PipReporter(constraints=provider.constraints)
|
| 91 |
+
|
| 92 |
+
resolver: RLResolver[Requirement, Candidate, str] = RLResolver(
|
| 93 |
+
provider,
|
| 94 |
+
reporter,
|
| 95 |
+
)
|
| 96 |
+
|
| 97 |
+
try:
|
| 98 |
+
limit_how_complex_resolution_can_be = 200000
|
| 99 |
+
result = self._result = resolver.resolve(
|
| 100 |
+
collected.requirements, max_rounds=limit_how_complex_resolution_can_be
|
| 101 |
+
)
|
| 102 |
+
|
| 103 |
+
except ResolutionImpossible as e:
|
| 104 |
+
error = self.factory.get_installation_error(
|
| 105 |
+
cast("ResolutionImpossible[Requirement, Candidate]", e),
|
| 106 |
+
collected.constraints,
|
| 107 |
+
)
|
| 108 |
+
raise error from e
|
| 109 |
+
except ResolutionTooDeep:
|
| 110 |
+
raise ResolutionTooDeepError from None
|
| 111 |
+
|
| 112 |
+
req_set = RequirementSet(check_supported_wheels=check_supported_wheels)
|
| 113 |
+
# process candidates with extras last to ensure their base equivalent is
|
| 114 |
+
# already in the req_set if appropriate.
|
| 115 |
+
# Python's sort is stable so using a binary key function keeps relative order
|
| 116 |
+
# within both subsets.
|
| 117 |
+
for candidate in sorted(
|
| 118 |
+
result.mapping.values(), key=lambda c: c.name != c.project_name
|
| 119 |
+
):
|
| 120 |
+
ireq = candidate.get_install_requirement()
|
| 121 |
+
if ireq is None:
|
| 122 |
+
if candidate.name != candidate.project_name:
|
| 123 |
+
# extend existing req's extras
|
| 124 |
+
with contextlib.suppress(KeyError):
|
| 125 |
+
req = req_set.get_requirement(candidate.project_name)
|
| 126 |
+
req_set.add_named_requirement(
|
| 127 |
+
install_req_extend_extras(
|
| 128 |
+
req, get_requirement(candidate.name).extras
|
| 129 |
+
)
|
| 130 |
+
)
|
| 131 |
+
continue
|
| 132 |
+
|
| 133 |
+
# Check if there is already an installation under the same name,
|
| 134 |
+
# and set a flag for later stages to uninstall it, if needed.
|
| 135 |
+
installed_dist = self.factory.get_dist_to_uninstall(candidate)
|
| 136 |
+
if installed_dist is None:
|
| 137 |
+
# There is no existing installation -- nothing to uninstall.
|
| 138 |
+
ireq.should_reinstall = False
|
| 139 |
+
elif self.factory.force_reinstall:
|
| 140 |
+
# The --force-reinstall flag is set -- reinstall.
|
| 141 |
+
ireq.should_reinstall = True
|
| 142 |
+
elif installed_dist.version != candidate.version:
|
| 143 |
+
# The installation is different in version -- reinstall.
|
| 144 |
+
ireq.should_reinstall = True
|
| 145 |
+
elif candidate.is_editable or installed_dist.editable:
|
| 146 |
+
# The incoming distribution is editable, or different in
|
| 147 |
+
# editable-ness to installation -- reinstall.
|
| 148 |
+
ireq.should_reinstall = True
|
| 149 |
+
elif candidate.source_link and candidate.source_link.is_file:
|
| 150 |
+
# The incoming distribution is under file://
|
| 151 |
+
if candidate.source_link.is_wheel:
|
| 152 |
+
# is a local wheel -- do nothing.
|
| 153 |
+
logger.info(
|
| 154 |
+
"%s is already installed with the same version as the "
|
| 155 |
+
"provided wheel. Use --force-reinstall to force an "
|
| 156 |
+
"installation of the wheel.",
|
| 157 |
+
ireq.name,
|
| 158 |
+
)
|
| 159 |
+
continue
|
| 160 |
+
|
| 161 |
+
# is a local sdist or path -- reinstall
|
| 162 |
+
ireq.should_reinstall = True
|
| 163 |
+
else:
|
| 164 |
+
continue
|
| 165 |
+
|
| 166 |
+
link = candidate.source_link
|
| 167 |
+
if link and link.is_yanked:
|
| 168 |
+
# The reason can contain non-ASCII characters, Unicode
|
| 169 |
+
# is required for Python 2.
|
| 170 |
+
msg = (
|
| 171 |
+
"The candidate selected for download or install is a "
|
| 172 |
+
"yanked version: {name!r} candidate (version {version} "
|
| 173 |
+
"at {link})\nReason for being yanked: {reason}"
|
| 174 |
+
).format(
|
| 175 |
+
name=candidate.name,
|
| 176 |
+
version=candidate.version,
|
| 177 |
+
link=link,
|
| 178 |
+
reason=link.yanked_reason or "<none given>",
|
| 179 |
+
)
|
| 180 |
+
logger.warning(msg)
|
| 181 |
+
|
| 182 |
+
req_set.add_named_requirement(ireq)
|
| 183 |
+
|
| 184 |
+
return req_set
|
| 185 |
+
|
| 186 |
+
def get_installation_order(
|
| 187 |
+
self, req_set: RequirementSet
|
| 188 |
+
) -> list[InstallRequirement]:
|
| 189 |
+
"""Get order for installation of requirements in RequirementSet.
|
| 190 |
+
|
| 191 |
+
The returned list contains a requirement before another that depends on
|
| 192 |
+
it. This helps ensure that the environment is kept consistent as they
|
| 193 |
+
get installed one-by-one.
|
| 194 |
+
|
| 195 |
+
The current implementation creates a topological ordering of the
|
| 196 |
+
dependency graph, giving more weight to packages with less
|
| 197 |
+
or no dependencies, while breaking any cycles in the graph at
|
| 198 |
+
arbitrary points. We make no guarantees about where the cycle
|
| 199 |
+
would be broken, other than it *would* be broken.
|
| 200 |
+
"""
|
| 201 |
+
assert self._result is not None, "must call resolve() first"
|
| 202 |
+
|
| 203 |
+
if not req_set.requirements:
|
| 204 |
+
# Nothing is left to install, so we do not need an order.
|
| 205 |
+
return []
|
| 206 |
+
|
| 207 |
+
graph = self._result.graph
|
| 208 |
+
weights = get_topological_weights(graph, set(req_set.requirements.keys()))
|
| 209 |
+
|
| 210 |
+
sorted_items = sorted(
|
| 211 |
+
req_set.requirements.items(),
|
| 212 |
+
key=functools.partial(_req_set_item_sorter, weights=weights),
|
| 213 |
+
reverse=True,
|
| 214 |
+
)
|
| 215 |
+
return [ireq for _, ireq in sorted_items]
|
| 216 |
+
|
| 217 |
+
|
| 218 |
+
def get_topological_weights(
|
| 219 |
+
graph: DirectedGraph[str | None], requirement_keys: set[str]
|
| 220 |
+
) -> dict[str | None, int]:
|
| 221 |
+
"""Assign weights to each node based on how "deep" they are.
|
| 222 |
+
|
| 223 |
+
This implementation may change at any point in the future without prior
|
| 224 |
+
notice.
|
| 225 |
+
|
| 226 |
+
We first simplify the dependency graph by pruning any leaves and giving them
|
| 227 |
+
the highest weight: a package without any dependencies should be installed
|
| 228 |
+
first. This is done again and again in the same way, giving ever less weight
|
| 229 |
+
to the newly found leaves. The loop stops when no leaves are left: all
|
| 230 |
+
remaining packages have at least one dependency left in the graph.
|
| 231 |
+
|
| 232 |
+
Then we continue with the remaining graph, by taking the length for the
|
| 233 |
+
longest path to any node from root, ignoring any paths that contain a single
|
| 234 |
+
node twice (i.e. cycles). This is done through a depth-first search through
|
| 235 |
+
the graph, while keeping track of the path to the node.
|
| 236 |
+
|
| 237 |
+
Cycles in the graph result would result in node being revisited while also
|
| 238 |
+
being on its own path. In this case, take no action. This helps ensure we
|
| 239 |
+
don't get stuck in a cycle.
|
| 240 |
+
|
| 241 |
+
When assigning weight, the longer path (i.e. larger length) is preferred.
|
| 242 |
+
|
| 243 |
+
We are only interested in the weights of packages that are in the
|
| 244 |
+
requirement_keys.
|
| 245 |
+
"""
|
| 246 |
+
path: set[str | None] = set()
|
| 247 |
+
weights: dict[str | None, list[int]] = {}
|
| 248 |
+
|
| 249 |
+
def visit(node: str | None) -> None:
|
| 250 |
+
if node in path:
|
| 251 |
+
# We hit a cycle, so we'll break it here.
|
| 252 |
+
return
|
| 253 |
+
|
| 254 |
+
# The walk is exponential and for pathologically connected graphs (which
|
| 255 |
+
# are the ones most likely to contain cycles in the first place) it can
|
| 256 |
+
# take until the heat-death of the universe. To counter this we limit
|
| 257 |
+
# the number of attempts to visit (i.e. traverse through) any given
|
| 258 |
+
# node. We choose a value here which gives decent enough coverage for
|
| 259 |
+
# fairly well behaved graphs, and still limits the walk complexity to be
|
| 260 |
+
# linear in nature.
|
| 261 |
+
cur_weights = weights.get(node, [])
|
| 262 |
+
if len(cur_weights) >= 5:
|
| 263 |
+
return
|
| 264 |
+
|
| 265 |
+
# Time to visit the children!
|
| 266 |
+
path.add(node)
|
| 267 |
+
for child in graph.iter_children(node):
|
| 268 |
+
visit(child)
|
| 269 |
+
path.remove(node)
|
| 270 |
+
|
| 271 |
+
if node not in requirement_keys:
|
| 272 |
+
return
|
| 273 |
+
|
| 274 |
+
cur_weights.append(len(path))
|
| 275 |
+
weights[node] = cur_weights
|
| 276 |
+
|
| 277 |
+
# Simplify the graph, pruning leaves that have no dependencies. This is
|
| 278 |
+
# needed for large graphs (say over 200 packages) because the `visit`
|
| 279 |
+
# function is slower for large/densely connected graphs, taking minutes.
|
| 280 |
+
# See https://github.com/pypa/pip/issues/10557
|
| 281 |
+
# We repeat the pruning step until we have no more leaves to remove.
|
| 282 |
+
while True:
|
| 283 |
+
leaves = set()
|
| 284 |
+
for key in graph:
|
| 285 |
+
if key is None:
|
| 286 |
+
continue
|
| 287 |
+
for _child in graph.iter_children(key):
|
| 288 |
+
# This means we have at least one child
|
| 289 |
+
break
|
| 290 |
+
else:
|
| 291 |
+
# No child.
|
| 292 |
+
leaves.add(key)
|
| 293 |
+
if not leaves:
|
| 294 |
+
# We are done simplifying.
|
| 295 |
+
break
|
| 296 |
+
# Calculate the weight for the leaves.
|
| 297 |
+
weight = len(graph) - 1
|
| 298 |
+
for leaf in leaves:
|
| 299 |
+
if leaf not in requirement_keys:
|
| 300 |
+
continue
|
| 301 |
+
weights[leaf] = [weight]
|
| 302 |
+
# Remove the leaves from the graph, making it simpler.
|
| 303 |
+
for leaf in leaves:
|
| 304 |
+
graph.remove(leaf)
|
| 305 |
+
|
| 306 |
+
# Visit the remaining graph, this will only have nodes to handle if the
|
| 307 |
+
# graph had a cycle in it, which the pruning step above could not handle.
|
| 308 |
+
# `None` is guaranteed to be the root node by resolvelib.
|
| 309 |
+
visit(None)
|
| 310 |
+
|
| 311 |
+
# Sanity check: all requirement keys should be in the weights,
|
| 312 |
+
# and no other keys should be in the weights.
|
| 313 |
+
difference = set(weights.keys()).difference(requirement_keys)
|
| 314 |
+
assert not difference, difference
|
| 315 |
+
|
| 316 |
+
# Now give back all the weights, choosing the largest ones from what we
|
| 317 |
+
# accumulated.
|
| 318 |
+
return {node: max(wgts) for (node, wgts) in weights.items()}
|
| 319 |
+
|
| 320 |
+
|
| 321 |
+
def _req_set_item_sorter(
|
| 322 |
+
item: tuple[str, InstallRequirement],
|
| 323 |
+
weights: dict[str | None, int],
|
| 324 |
+
) -> tuple[int, str]:
|
| 325 |
+
"""Key function used to sort install requirements for installation.
|
| 326 |
+
|
| 327 |
+
Based on the "weight" mapping calculated in ``get_installation_order()``.
|
| 328 |
+
The canonical package name is returned as the second member as a tie-
|
| 329 |
+
breaker to ensure the result is predictable, which is useful in tests.
|
| 330 |
+
"""
|
| 331 |
+
name = canonicalize_name(item[0])
|
| 332 |
+
return weights[name], name
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/utils/__init__.py
ADDED
|
File without changes
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/utils/_jaraco_text.py
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Functions brought over from jaraco.text.
|
| 2 |
+
|
| 3 |
+
These functions are not supposed to be used within `pip._internal`. These are
|
| 4 |
+
helper functions brought over from `jaraco.text` to enable vendoring newer
|
| 5 |
+
copies of `pkg_resources` without having to vendor `jaraco.text` and its entire
|
| 6 |
+
dependency cone; something that our vendoring setup is not currently capable of
|
| 7 |
+
handling.
|
| 8 |
+
|
| 9 |
+
License reproduced from original source below:
|
| 10 |
+
|
| 11 |
+
Copyright Jason R. Coombs
|
| 12 |
+
|
| 13 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 14 |
+
of this software and associated documentation files (the "Software"), to
|
| 15 |
+
deal in the Software without restriction, including without limitation the
|
| 16 |
+
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
| 17 |
+
sell copies of the Software, and to permit persons to whom the Software is
|
| 18 |
+
furnished to do so, subject to the following conditions:
|
| 19 |
+
|
| 20 |
+
The above copyright notice and this permission notice shall be included in
|
| 21 |
+
all copies or substantial portions of the Software.
|
| 22 |
+
|
| 23 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 24 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 25 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 26 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 27 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
| 28 |
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
| 29 |
+
IN THE SOFTWARE.
|
| 30 |
+
"""
|
| 31 |
+
|
| 32 |
+
import functools
|
| 33 |
+
import itertools
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
def _nonblank(str):
|
| 37 |
+
return str and not str.startswith("#")
|
| 38 |
+
|
| 39 |
+
|
| 40 |
+
@functools.singledispatch
|
| 41 |
+
def yield_lines(iterable):
|
| 42 |
+
r"""
|
| 43 |
+
Yield valid lines of a string or iterable.
|
| 44 |
+
|
| 45 |
+
>>> list(yield_lines(''))
|
| 46 |
+
[]
|
| 47 |
+
>>> list(yield_lines(['foo', 'bar']))
|
| 48 |
+
['foo', 'bar']
|
| 49 |
+
>>> list(yield_lines('foo\nbar'))
|
| 50 |
+
['foo', 'bar']
|
| 51 |
+
>>> list(yield_lines('\nfoo\n#bar\nbaz #comment'))
|
| 52 |
+
['foo', 'baz #comment']
|
| 53 |
+
>>> list(yield_lines(['foo\nbar', 'baz', 'bing\n\n\n']))
|
| 54 |
+
['foo', 'bar', 'baz', 'bing']
|
| 55 |
+
"""
|
| 56 |
+
return itertools.chain.from_iterable(map(yield_lines, iterable))
|
| 57 |
+
|
| 58 |
+
|
| 59 |
+
@yield_lines.register(str)
|
| 60 |
+
def _(text):
|
| 61 |
+
return filter(_nonblank, map(str.strip, text.splitlines()))
|
| 62 |
+
|
| 63 |
+
|
| 64 |
+
def drop_comment(line):
|
| 65 |
+
"""
|
| 66 |
+
Drop comments.
|
| 67 |
+
|
| 68 |
+
>>> drop_comment('foo # bar')
|
| 69 |
+
'foo'
|
| 70 |
+
|
| 71 |
+
A hash without a space may be in a URL.
|
| 72 |
+
|
| 73 |
+
>>> drop_comment('http://example.com/foo#bar')
|
| 74 |
+
'http://example.com/foo#bar'
|
| 75 |
+
"""
|
| 76 |
+
return line.partition(" #")[0]
|
| 77 |
+
|
| 78 |
+
|
| 79 |
+
def join_continuation(lines):
|
| 80 |
+
r"""
|
| 81 |
+
Join lines continued by a trailing backslash.
|
| 82 |
+
|
| 83 |
+
>>> list(join_continuation(['foo \\', 'bar', 'baz']))
|
| 84 |
+
['foobar', 'baz']
|
| 85 |
+
>>> list(join_continuation(['foo \\', 'bar', 'baz']))
|
| 86 |
+
['foobar', 'baz']
|
| 87 |
+
>>> list(join_continuation(['foo \\', 'bar \\', 'baz']))
|
| 88 |
+
['foobarbaz']
|
| 89 |
+
|
| 90 |
+
Not sure why, but...
|
| 91 |
+
The character preceding the backslash is also elided.
|
| 92 |
+
|
| 93 |
+
>>> list(join_continuation(['goo\\', 'dly']))
|
| 94 |
+
['godly']
|
| 95 |
+
|
| 96 |
+
A terrible idea, but...
|
| 97 |
+
If no line is available to continue, suppress the lines.
|
| 98 |
+
|
| 99 |
+
>>> list(join_continuation(['foo', 'bar\\', 'baz\\']))
|
| 100 |
+
['foo']
|
| 101 |
+
"""
|
| 102 |
+
lines = iter(lines)
|
| 103 |
+
for item in lines:
|
| 104 |
+
while item.endswith("\\"):
|
| 105 |
+
try:
|
| 106 |
+
item = item[:-2].strip() + next(lines)
|
| 107 |
+
except StopIteration:
|
| 108 |
+
return
|
| 109 |
+
yield item
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/utils/_log.py
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Customize logging
|
| 2 |
+
|
| 3 |
+
Defines custom logger class for the `logger.verbose(...)` method.
|
| 4 |
+
|
| 5 |
+
init_logging() must be called before any other modules that call logging.getLogger.
|
| 6 |
+
"""
|
| 7 |
+
|
| 8 |
+
import logging
|
| 9 |
+
from typing import Any, cast
|
| 10 |
+
|
| 11 |
+
# custom log level for `--verbose` output
|
| 12 |
+
# between DEBUG and INFO
|
| 13 |
+
VERBOSE = 15
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
class VerboseLogger(logging.Logger):
|
| 17 |
+
"""Custom Logger, defining a verbose log-level
|
| 18 |
+
|
| 19 |
+
VERBOSE is between INFO and DEBUG.
|
| 20 |
+
"""
|
| 21 |
+
|
| 22 |
+
def verbose(self, msg: str, *args: Any, **kwargs: Any) -> None:
|
| 23 |
+
return self.log(VERBOSE, msg, *args, **kwargs)
|
| 24 |
+
|
| 25 |
+
|
| 26 |
+
def getLogger(name: str) -> VerboseLogger:
|
| 27 |
+
"""logging.getLogger, but ensures our VerboseLogger class is returned"""
|
| 28 |
+
return cast(VerboseLogger, logging.getLogger(name))
|
| 29 |
+
|
| 30 |
+
|
| 31 |
+
def init_logging() -> None:
|
| 32 |
+
"""Register our VerboseLogger and VERBOSE log level.
|
| 33 |
+
|
| 34 |
+
Should be called before any calls to getLogger(),
|
| 35 |
+
i.e. in pip._internal.__init__
|
| 36 |
+
"""
|
| 37 |
+
logging.setLoggerClass(VerboseLogger)
|
| 38 |
+
logging.addLevelName(VERBOSE, "VERBOSE")
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/utils/appdirs.py
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
This code wraps the vendored appdirs module to so the return values are
|
| 3 |
+
compatible for the current pip code base.
|
| 4 |
+
|
| 5 |
+
The intention is to rewrite current usages gradually, keeping the tests pass,
|
| 6 |
+
and eventually drop this after all usages are changed.
|
| 7 |
+
"""
|
| 8 |
+
|
| 9 |
+
import os
|
| 10 |
+
import sys
|
| 11 |
+
|
| 12 |
+
from pip._vendor import platformdirs as _appdirs
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
def user_cache_dir(appname: str) -> str:
|
| 16 |
+
return _appdirs.user_cache_dir(appname, appauthor=False)
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
def _macos_user_config_dir(appname: str, roaming: bool = True) -> str:
|
| 20 |
+
# Use ~/Application Support/pip, if the directory exists.
|
| 21 |
+
path = _appdirs.user_data_dir(appname, appauthor=False, roaming=roaming)
|
| 22 |
+
if os.path.isdir(path):
|
| 23 |
+
return path
|
| 24 |
+
|
| 25 |
+
# Use a Linux-like ~/.config/pip, by default.
|
| 26 |
+
linux_like_path = "~/.config/"
|
| 27 |
+
if appname:
|
| 28 |
+
linux_like_path = os.path.join(linux_like_path, appname)
|
| 29 |
+
|
| 30 |
+
return os.path.expanduser(linux_like_path)
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
def user_config_dir(appname: str, roaming: bool = True) -> str:
|
| 34 |
+
if sys.platform == "darwin":
|
| 35 |
+
return _macos_user_config_dir(appname, roaming)
|
| 36 |
+
|
| 37 |
+
return _appdirs.user_config_dir(appname, appauthor=False, roaming=roaming)
|
| 38 |
+
|
| 39 |
+
|
| 40 |
+
# for the discussion regarding site_config_dir locations
|
| 41 |
+
# see <https://github.com/pypa/pip/issues/1733>
|
| 42 |
+
def site_config_dirs(appname: str) -> list[str]:
|
| 43 |
+
if sys.platform == "darwin":
|
| 44 |
+
dirval = _appdirs.site_data_dir(appname, appauthor=False, multipath=True)
|
| 45 |
+
return dirval.split(os.pathsep)
|
| 46 |
+
|
| 47 |
+
dirval = _appdirs.site_config_dir(appname, appauthor=False, multipath=True)
|
| 48 |
+
if sys.platform == "win32":
|
| 49 |
+
return [dirval]
|
| 50 |
+
|
| 51 |
+
# Unix-y system. Look in /etc as well.
|
| 52 |
+
return dirval.split(os.pathsep) + ["/etc"]
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/utils/compat.py
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Stuff that differs in different Python versions and platform
|
| 2 |
+
distributions."""
|
| 3 |
+
|
| 4 |
+
import importlib.resources
|
| 5 |
+
import logging
|
| 6 |
+
import os
|
| 7 |
+
import sys
|
| 8 |
+
from typing import IO
|
| 9 |
+
|
| 10 |
+
__all__ = ["get_path_uid", "stdlib_pkgs", "tomllib", "WINDOWS"]
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
logger = logging.getLogger(__name__)
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
def has_tls() -> bool:
|
| 17 |
+
try:
|
| 18 |
+
import _ssl # noqa: F401 # ignore unused
|
| 19 |
+
|
| 20 |
+
return True
|
| 21 |
+
except ImportError:
|
| 22 |
+
pass
|
| 23 |
+
|
| 24 |
+
from pip._vendor.urllib3.util import IS_PYOPENSSL
|
| 25 |
+
|
| 26 |
+
return IS_PYOPENSSL
|
| 27 |
+
|
| 28 |
+
|
| 29 |
+
def get_path_uid(path: str) -> int:
|
| 30 |
+
"""
|
| 31 |
+
Return path's uid.
|
| 32 |
+
|
| 33 |
+
Does not follow symlinks:
|
| 34 |
+
https://github.com/pypa/pip/pull/935#discussion_r5307003
|
| 35 |
+
|
| 36 |
+
Placed this function in compat due to differences on AIX and
|
| 37 |
+
Jython, that should eventually go away.
|
| 38 |
+
|
| 39 |
+
:raises OSError: When path is a symlink or can't be read.
|
| 40 |
+
"""
|
| 41 |
+
if hasattr(os, "O_NOFOLLOW"):
|
| 42 |
+
fd = os.open(path, os.O_RDONLY | os.O_NOFOLLOW)
|
| 43 |
+
file_uid = os.fstat(fd).st_uid
|
| 44 |
+
os.close(fd)
|
| 45 |
+
else: # AIX and Jython
|
| 46 |
+
# WARNING: time of check vulnerability, but best we can do w/o NOFOLLOW
|
| 47 |
+
if not os.path.islink(path):
|
| 48 |
+
# older versions of Jython don't have `os.fstat`
|
| 49 |
+
file_uid = os.stat(path).st_uid
|
| 50 |
+
else:
|
| 51 |
+
# raise OSError for parity with os.O_NOFOLLOW above
|
| 52 |
+
raise OSError(f"{path} is a symlink; Will not return uid for symlinks")
|
| 53 |
+
return file_uid
|
| 54 |
+
|
| 55 |
+
|
| 56 |
+
# The importlib.resources.open_text function was deprecated in 3.11 with suggested
|
| 57 |
+
# replacement we use below.
|
| 58 |
+
if sys.version_info < (3, 11):
|
| 59 |
+
open_text_resource = importlib.resources.open_text
|
| 60 |
+
else:
|
| 61 |
+
|
| 62 |
+
def open_text_resource(
|
| 63 |
+
package: str, resource: str, encoding: str = "utf-8", errors: str = "strict"
|
| 64 |
+
) -> IO[str]:
|
| 65 |
+
return (importlib.resources.files(package) / resource).open(
|
| 66 |
+
"r", encoding=encoding, errors=errors
|
| 67 |
+
)
|
| 68 |
+
|
| 69 |
+
|
| 70 |
+
if sys.version_info >= (3, 11):
|
| 71 |
+
import tomllib
|
| 72 |
+
else:
|
| 73 |
+
from pip._vendor import tomli as tomllib
|
| 74 |
+
|
| 75 |
+
|
| 76 |
+
# packages in the stdlib that may have installation metadata, but should not be
|
| 77 |
+
# considered 'installed'. this theoretically could be determined based on
|
| 78 |
+
# dist.location (py27:`sysconfig.get_paths()['stdlib']`,
|
| 79 |
+
# py26:sysconfig.get_config_vars('LIBDEST')), but fear platform variation may
|
| 80 |
+
# make this ineffective, so hard-coding
|
| 81 |
+
stdlib_pkgs = {"python", "wsgiref", "argparse"}
|
| 82 |
+
|
| 83 |
+
|
| 84 |
+
# windows detection, covers cpython and ironpython
|
| 85 |
+
WINDOWS = sys.platform.startswith("win") or (sys.platform == "cli" and os.name == "nt")
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/utils/compatibility_tags.py
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Generate and work with PEP 425 Compatibility Tags."""
|
| 2 |
+
|
| 3 |
+
from __future__ import annotations
|
| 4 |
+
|
| 5 |
+
import re
|
| 6 |
+
|
| 7 |
+
from pip._vendor.packaging.tags import (
|
| 8 |
+
PythonVersion,
|
| 9 |
+
Tag,
|
| 10 |
+
android_platforms,
|
| 11 |
+
compatible_tags,
|
| 12 |
+
cpython_tags,
|
| 13 |
+
generic_tags,
|
| 14 |
+
interpreter_name,
|
| 15 |
+
interpreter_version,
|
| 16 |
+
ios_platforms,
|
| 17 |
+
mac_platforms,
|
| 18 |
+
)
|
| 19 |
+
|
| 20 |
+
_apple_arch_pat = re.compile(r"(.+)_(\d+)_(\d+)_(.+)")
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
def version_info_to_nodot(version_info: tuple[int, ...]) -> str:
|
| 24 |
+
# Only use up to the first two numbers.
|
| 25 |
+
return "".join(map(str, version_info[:2]))
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
def _mac_platforms(arch: str) -> list[str]:
|
| 29 |
+
match = _apple_arch_pat.match(arch)
|
| 30 |
+
if match:
|
| 31 |
+
name, major, minor, actual_arch = match.groups()
|
| 32 |
+
mac_version = (int(major), int(minor))
|
| 33 |
+
arches = [
|
| 34 |
+
# Since we have always only checked that the platform starts
|
| 35 |
+
# with "macosx", for backwards-compatibility we extract the
|
| 36 |
+
# actual prefix provided by the user in case they provided
|
| 37 |
+
# something like "macosxcustom_". It may be good to remove
|
| 38 |
+
# this as undocumented or deprecate it in the future.
|
| 39 |
+
"{}_{}".format(name, arch[len("macosx_") :])
|
| 40 |
+
for arch in mac_platforms(mac_version, actual_arch)
|
| 41 |
+
]
|
| 42 |
+
else:
|
| 43 |
+
# arch pattern didn't match (?!)
|
| 44 |
+
arches = [arch]
|
| 45 |
+
return arches
|
| 46 |
+
|
| 47 |
+
|
| 48 |
+
def _ios_platforms(arch: str) -> list[str]:
|
| 49 |
+
match = _apple_arch_pat.match(arch)
|
| 50 |
+
if match:
|
| 51 |
+
name, major, minor, actual_multiarch = match.groups()
|
| 52 |
+
ios_version = (int(major), int(minor))
|
| 53 |
+
arches = [
|
| 54 |
+
# Since we have always only checked that the platform starts
|
| 55 |
+
# with "ios", for backwards-compatibility we extract the
|
| 56 |
+
# actual prefix provided by the user in case they provided
|
| 57 |
+
# something like "ioscustom_". It may be good to remove
|
| 58 |
+
# this as undocumented or deprecate it in the future.
|
| 59 |
+
"{}_{}".format(name, arch[len("ios_") :])
|
| 60 |
+
for arch in ios_platforms(ios_version, actual_multiarch)
|
| 61 |
+
]
|
| 62 |
+
else:
|
| 63 |
+
# arch pattern didn't match (?!)
|
| 64 |
+
arches = [arch]
|
| 65 |
+
return arches
|
| 66 |
+
|
| 67 |
+
|
| 68 |
+
def _android_platforms(arch: str) -> list[str]:
|
| 69 |
+
match = re.fullmatch(r"android_(\d+)_(.+)", arch)
|
| 70 |
+
if match:
|
| 71 |
+
api_level, abi = match.groups()
|
| 72 |
+
return list(android_platforms(int(api_level), abi))
|
| 73 |
+
else:
|
| 74 |
+
# arch pattern didn't match (?!)
|
| 75 |
+
return [arch]
|
| 76 |
+
|
| 77 |
+
|
| 78 |
+
def _custom_manylinux_platforms(arch: str) -> list[str]:
|
| 79 |
+
arches = [arch]
|
| 80 |
+
arch_prefix, arch_sep, arch_suffix = arch.partition("_")
|
| 81 |
+
if arch_prefix == "manylinux2014":
|
| 82 |
+
# manylinux1/manylinux2010 wheels run on most manylinux2014 systems
|
| 83 |
+
# with the exception of wheels depending on ncurses. PEP 599 states
|
| 84 |
+
# manylinux1/manylinux2010 wheels should be considered
|
| 85 |
+
# manylinux2014 wheels:
|
| 86 |
+
# https://www.python.org/dev/peps/pep-0599/#backwards-compatibility-with-manylinux2010-wheels
|
| 87 |
+
if arch_suffix in {"i686", "x86_64"}:
|
| 88 |
+
arches.append("manylinux2010" + arch_sep + arch_suffix)
|
| 89 |
+
arches.append("manylinux1" + arch_sep + arch_suffix)
|
| 90 |
+
elif arch_prefix == "manylinux2010":
|
| 91 |
+
# manylinux1 wheels run on most manylinux2010 systems with the
|
| 92 |
+
# exception of wheels depending on ncurses. PEP 571 states
|
| 93 |
+
# manylinux1 wheels should be considered manylinux2010 wheels:
|
| 94 |
+
# https://www.python.org/dev/peps/pep-0571/#backwards-compatibility-with-manylinux1-wheels
|
| 95 |
+
arches.append("manylinux1" + arch_sep + arch_suffix)
|
| 96 |
+
return arches
|
| 97 |
+
|
| 98 |
+
|
| 99 |
+
def _get_custom_platforms(arch: str) -> list[str]:
|
| 100 |
+
arch_prefix, arch_sep, arch_suffix = arch.partition("_")
|
| 101 |
+
if arch.startswith("macosx"):
|
| 102 |
+
arches = _mac_platforms(arch)
|
| 103 |
+
elif arch.startswith("ios"):
|
| 104 |
+
arches = _ios_platforms(arch)
|
| 105 |
+
elif arch_prefix == "android":
|
| 106 |
+
arches = _android_platforms(arch)
|
| 107 |
+
elif arch_prefix in ["manylinux2014", "manylinux2010"]:
|
| 108 |
+
arches = _custom_manylinux_platforms(arch)
|
| 109 |
+
else:
|
| 110 |
+
arches = [arch]
|
| 111 |
+
return arches
|
| 112 |
+
|
| 113 |
+
|
| 114 |
+
def _expand_allowed_platforms(platforms: list[str] | None) -> list[str] | None:
|
| 115 |
+
if not platforms:
|
| 116 |
+
return None
|
| 117 |
+
|
| 118 |
+
seen = set()
|
| 119 |
+
result = []
|
| 120 |
+
|
| 121 |
+
for p in platforms:
|
| 122 |
+
if p in seen:
|
| 123 |
+
continue
|
| 124 |
+
additions = [c for c in _get_custom_platforms(p) if c not in seen]
|
| 125 |
+
seen.update(additions)
|
| 126 |
+
result.extend(additions)
|
| 127 |
+
|
| 128 |
+
return result
|
| 129 |
+
|
| 130 |
+
|
| 131 |
+
def _get_python_version(version: str) -> PythonVersion:
|
| 132 |
+
if len(version) > 1:
|
| 133 |
+
return int(version[0]), int(version[1:])
|
| 134 |
+
else:
|
| 135 |
+
return (int(version[0]),)
|
| 136 |
+
|
| 137 |
+
|
| 138 |
+
def _get_custom_interpreter(
|
| 139 |
+
implementation: str | None = None, version: str | None = None
|
| 140 |
+
) -> str:
|
| 141 |
+
if implementation is None:
|
| 142 |
+
implementation = interpreter_name()
|
| 143 |
+
if version is None:
|
| 144 |
+
version = interpreter_version()
|
| 145 |
+
return f"{implementation}{version}"
|
| 146 |
+
|
| 147 |
+
|
| 148 |
+
def get_supported(
|
| 149 |
+
version: str | None = None,
|
| 150 |
+
platforms: list[str] | None = None,
|
| 151 |
+
impl: str | None = None,
|
| 152 |
+
abis: list[str] | None = None,
|
| 153 |
+
) -> list[Tag]:
|
| 154 |
+
"""Return a list of supported tags for each version specified in
|
| 155 |
+
`versions`.
|
| 156 |
+
|
| 157 |
+
:param version: a string version, of the form "33" or "32",
|
| 158 |
+
or None. The version will be assumed to support our ABI.
|
| 159 |
+
:param platform: specify a list of platforms you want valid
|
| 160 |
+
tags for, or None. If None, use the local system platform.
|
| 161 |
+
:param impl: specify the exact implementation you want valid
|
| 162 |
+
tags for, or None. If None, use the local interpreter impl.
|
| 163 |
+
:param abis: specify a list of abis you want valid
|
| 164 |
+
tags for, or None. If None, use the local interpreter abi.
|
| 165 |
+
"""
|
| 166 |
+
supported: list[Tag] = []
|
| 167 |
+
|
| 168 |
+
python_version: PythonVersion | None = None
|
| 169 |
+
if version is not None:
|
| 170 |
+
python_version = _get_python_version(version)
|
| 171 |
+
|
| 172 |
+
interpreter = _get_custom_interpreter(impl, version)
|
| 173 |
+
|
| 174 |
+
platforms = _expand_allowed_platforms(platforms)
|
| 175 |
+
|
| 176 |
+
is_cpython = (impl or interpreter_name()) == "cp"
|
| 177 |
+
if is_cpython:
|
| 178 |
+
supported.extend(
|
| 179 |
+
cpython_tags(
|
| 180 |
+
python_version=python_version,
|
| 181 |
+
abis=abis,
|
| 182 |
+
platforms=platforms,
|
| 183 |
+
)
|
| 184 |
+
)
|
| 185 |
+
else:
|
| 186 |
+
supported.extend(
|
| 187 |
+
generic_tags(
|
| 188 |
+
interpreter=interpreter,
|
| 189 |
+
abis=abis,
|
| 190 |
+
platforms=platforms,
|
| 191 |
+
)
|
| 192 |
+
)
|
| 193 |
+
supported.extend(
|
| 194 |
+
compatible_tags(
|
| 195 |
+
python_version=python_version,
|
| 196 |
+
interpreter=interpreter,
|
| 197 |
+
platforms=platforms,
|
| 198 |
+
)
|
| 199 |
+
)
|
| 200 |
+
|
| 201 |
+
return supported
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/utils/datetime.py
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""For when pip wants to check the date or time."""
|
| 2 |
+
|
| 3 |
+
import datetime
|
| 4 |
+
import sys
|
| 5 |
+
|
| 6 |
+
|
| 7 |
+
def today_is_later_than(year: int, month: int, day: int) -> bool:
|
| 8 |
+
today = datetime.date.today()
|
| 9 |
+
given = datetime.date(year, month, day)
|
| 10 |
+
|
| 11 |
+
return today > given
|
| 12 |
+
|
| 13 |
+
|
| 14 |
+
def parse_iso_datetime(isodate: str) -> datetime.datetime:
|
| 15 |
+
"""Convert an ISO format string to a datetime.
|
| 16 |
+
|
| 17 |
+
Handles the format 2020-01-22T14:24:01Z (trailing Z)
|
| 18 |
+
which is not supported by older versions of fromisoformat.
|
| 19 |
+
"""
|
| 20 |
+
# Python 3.11+ supports Z suffix natively in fromisoformat
|
| 21 |
+
if sys.version_info >= (3, 11):
|
| 22 |
+
return datetime.datetime.fromisoformat(isodate)
|
| 23 |
+
else:
|
| 24 |
+
return datetime.datetime.fromisoformat(
|
| 25 |
+
isodate.replace("Z", "+00:00")
|
| 26 |
+
if isodate.endswith("Z") and ("T" in isodate or " " in isodate.strip())
|
| 27 |
+
else isodate
|
| 28 |
+
)
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/utils/deprecation.py
ADDED
|
@@ -0,0 +1,126 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
A module that implements tooling to enable easy warnings about deprecations.
|
| 3 |
+
"""
|
| 4 |
+
|
| 5 |
+
from __future__ import annotations
|
| 6 |
+
|
| 7 |
+
import logging
|
| 8 |
+
import warnings
|
| 9 |
+
from typing import Any, TextIO
|
| 10 |
+
|
| 11 |
+
from pip._vendor.packaging.version import parse
|
| 12 |
+
|
| 13 |
+
from pip import __version__ as current_version # NOTE: tests patch this name.
|
| 14 |
+
|
| 15 |
+
DEPRECATION_MSG_PREFIX = "DEPRECATION: "
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
class PipDeprecationWarning(Warning):
|
| 19 |
+
pass
|
| 20 |
+
|
| 21 |
+
|
| 22 |
+
_original_showwarning: Any = None
|
| 23 |
+
|
| 24 |
+
|
| 25 |
+
# Warnings <-> Logging Integration
|
| 26 |
+
def _showwarning(
|
| 27 |
+
message: Warning | str,
|
| 28 |
+
category: type[Warning],
|
| 29 |
+
filename: str,
|
| 30 |
+
lineno: int,
|
| 31 |
+
file: TextIO | None = None,
|
| 32 |
+
line: str | None = None,
|
| 33 |
+
) -> None:
|
| 34 |
+
if file is not None:
|
| 35 |
+
if _original_showwarning is not None:
|
| 36 |
+
_original_showwarning(message, category, filename, lineno, file, line)
|
| 37 |
+
elif issubclass(category, PipDeprecationWarning):
|
| 38 |
+
# We use a specially named logger which will handle all of the
|
| 39 |
+
# deprecation messages for pip.
|
| 40 |
+
logger = logging.getLogger("pip._internal.deprecations")
|
| 41 |
+
logger.warning(message)
|
| 42 |
+
else:
|
| 43 |
+
_original_showwarning(message, category, filename, lineno, file, line)
|
| 44 |
+
|
| 45 |
+
|
| 46 |
+
def install_warning_logger() -> None:
|
| 47 |
+
# Enable our Deprecation Warnings
|
| 48 |
+
warnings.simplefilter("default", PipDeprecationWarning, append=True)
|
| 49 |
+
|
| 50 |
+
global _original_showwarning
|
| 51 |
+
|
| 52 |
+
if _original_showwarning is None:
|
| 53 |
+
_original_showwarning = warnings.showwarning
|
| 54 |
+
warnings.showwarning = _showwarning
|
| 55 |
+
|
| 56 |
+
|
| 57 |
+
def deprecated(
|
| 58 |
+
*,
|
| 59 |
+
reason: str,
|
| 60 |
+
replacement: str | None,
|
| 61 |
+
gone_in: str | None,
|
| 62 |
+
feature_flag: str | None = None,
|
| 63 |
+
issue: int | None = None,
|
| 64 |
+
) -> None:
|
| 65 |
+
"""Helper to deprecate existing functionality.
|
| 66 |
+
|
| 67 |
+
reason:
|
| 68 |
+
Textual reason shown to the user about why this functionality has
|
| 69 |
+
been deprecated. Should be a complete sentence.
|
| 70 |
+
replacement:
|
| 71 |
+
Textual suggestion shown to the user about what alternative
|
| 72 |
+
functionality they can use.
|
| 73 |
+
gone_in:
|
| 74 |
+
The version of pip does this functionality should get removed in.
|
| 75 |
+
Raises an error if pip's current version is greater than or equal to
|
| 76 |
+
this.
|
| 77 |
+
feature_flag:
|
| 78 |
+
Command-line flag of the form --use-feature={feature_flag} for testing
|
| 79 |
+
upcoming functionality.
|
| 80 |
+
issue:
|
| 81 |
+
Issue number on the tracker that would serve as a useful place for
|
| 82 |
+
users to find related discussion and provide feedback.
|
| 83 |
+
"""
|
| 84 |
+
|
| 85 |
+
# Determine whether or not the feature is already gone in this version.
|
| 86 |
+
is_gone = gone_in is not None and parse(current_version) >= parse(gone_in)
|
| 87 |
+
|
| 88 |
+
message_parts = [
|
| 89 |
+
(reason, f"{DEPRECATION_MSG_PREFIX}{{}}"),
|
| 90 |
+
(
|
| 91 |
+
gone_in,
|
| 92 |
+
(
|
| 93 |
+
"pip {} will enforce this behaviour change."
|
| 94 |
+
if not is_gone
|
| 95 |
+
else "Since pip {}, this is no longer supported."
|
| 96 |
+
),
|
| 97 |
+
),
|
| 98 |
+
(
|
| 99 |
+
replacement,
|
| 100 |
+
"A possible replacement is {}.",
|
| 101 |
+
),
|
| 102 |
+
(
|
| 103 |
+
feature_flag,
|
| 104 |
+
(
|
| 105 |
+
"You can use the flag --use-feature={} to test the upcoming behaviour."
|
| 106 |
+
if not is_gone
|
| 107 |
+
else None
|
| 108 |
+
),
|
| 109 |
+
),
|
| 110 |
+
(
|
| 111 |
+
issue,
|
| 112 |
+
"Discussion can be found at https://github.com/pypa/pip/issues/{}",
|
| 113 |
+
),
|
| 114 |
+
]
|
| 115 |
+
|
| 116 |
+
message = " ".join(
|
| 117 |
+
format_str.format(value)
|
| 118 |
+
for value, format_str in message_parts
|
| 119 |
+
if format_str is not None and value is not None
|
| 120 |
+
)
|
| 121 |
+
|
| 122 |
+
# Raise as an error if this behaviour is deprecated.
|
| 123 |
+
if is_gone:
|
| 124 |
+
raise PipDeprecationWarning(message)
|
| 125 |
+
|
| 126 |
+
warnings.warn(message, category=PipDeprecationWarning, stacklevel=2)
|
miniconda3/envs/ladir/lib/python3.10/site-packages/pip/_internal/utils/direct_url_helpers.py
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from __future__ import annotations
|
| 2 |
+
|
| 3 |
+
from pip._internal.models.direct_url import ArchiveInfo, DirectUrl, DirInfo, VcsInfo
|
| 4 |
+
from pip._internal.models.link import Link
|
| 5 |
+
from pip._internal.utils.urls import path_to_url
|
| 6 |
+
from pip._internal.vcs import vcs
|
| 7 |
+
|
| 8 |
+
|
| 9 |
+
def direct_url_as_pep440_direct_reference(direct_url: DirectUrl, name: str) -> str:
|
| 10 |
+
"""Convert a DirectUrl to a pip requirement string."""
|
| 11 |
+
direct_url.validate() # if invalid, this is a pip bug
|
| 12 |
+
requirement = name + " @ "
|
| 13 |
+
fragments = []
|
| 14 |
+
if isinstance(direct_url.info, VcsInfo):
|
| 15 |
+
requirement += (
|
| 16 |
+
f"{direct_url.info.vcs}+{direct_url.url}@{direct_url.info.commit_id}"
|
| 17 |
+
)
|
| 18 |
+
elif isinstance(direct_url.info, ArchiveInfo):
|
| 19 |
+
requirement += direct_url.url
|
| 20 |
+
if direct_url.info.hash:
|
| 21 |
+
fragments.append(direct_url.info.hash)
|
| 22 |
+
else:
|
| 23 |
+
assert isinstance(direct_url.info, DirInfo)
|
| 24 |
+
requirement += direct_url.url
|
| 25 |
+
if direct_url.subdirectory:
|
| 26 |
+
fragments.append("subdirectory=" + direct_url.subdirectory)
|
| 27 |
+
if fragments:
|
| 28 |
+
requirement += "#" + "&".join(fragments)
|
| 29 |
+
return requirement
|
| 30 |
+
|
| 31 |
+
|
| 32 |
+
def direct_url_for_editable(source_dir: str) -> DirectUrl:
|
| 33 |
+
return DirectUrl(
|
| 34 |
+
url=path_to_url(source_dir),
|
| 35 |
+
info=DirInfo(editable=True),
|
| 36 |
+
)
|
| 37 |
+
|
| 38 |
+
|
| 39 |
+
def direct_url_from_link(
|
| 40 |
+
link: Link, source_dir: str | None = None, link_is_in_wheel_cache: bool = False
|
| 41 |
+
) -> DirectUrl:
|
| 42 |
+
if link.is_vcs:
|
| 43 |
+
vcs_backend = vcs.get_backend_for_scheme(link.scheme)
|
| 44 |
+
assert vcs_backend
|
| 45 |
+
url, requested_revision, _ = vcs_backend.get_url_rev_and_auth(
|
| 46 |
+
link.url_without_fragment
|
| 47 |
+
)
|
| 48 |
+
# For VCS links, we need to find out and add commit_id.
|
| 49 |
+
if link_is_in_wheel_cache:
|
| 50 |
+
# If the requested VCS link corresponds to a cached
|
| 51 |
+
# wheel, it means the requested revision was an
|
| 52 |
+
# immutable commit hash, otherwise it would not have
|
| 53 |
+
# been cached. In that case we don't have a source_dir
|
| 54 |
+
# with the VCS checkout.
|
| 55 |
+
assert requested_revision
|
| 56 |
+
commit_id = requested_revision
|
| 57 |
+
else:
|
| 58 |
+
# If the wheel was not in cache, it means we have
|
| 59 |
+
# had to checkout from VCS to build and we have a source_dir
|
| 60 |
+
# which we can inspect to find out the commit id.
|
| 61 |
+
assert source_dir
|
| 62 |
+
commit_id = vcs_backend.get_revision(source_dir)
|
| 63 |
+
return DirectUrl(
|
| 64 |
+
url=url,
|
| 65 |
+
info=VcsInfo(
|
| 66 |
+
vcs=vcs_backend.name,
|
| 67 |
+
commit_id=commit_id,
|
| 68 |
+
requested_revision=requested_revision,
|
| 69 |
+
),
|
| 70 |
+
subdirectory=link.subdirectory_fragment,
|
| 71 |
+
)
|
| 72 |
+
elif link.is_existing_dir():
|
| 73 |
+
return DirectUrl(
|
| 74 |
+
url=link.url_without_fragment,
|
| 75 |
+
info=DirInfo(),
|
| 76 |
+
subdirectory=link.subdirectory_fragment,
|
| 77 |
+
)
|
| 78 |
+
else:
|
| 79 |
+
hash = None
|
| 80 |
+
hash_name = link.hash_name
|
| 81 |
+
if hash_name:
|
| 82 |
+
hash = f"{hash_name}={link.hash}"
|
| 83 |
+
return DirectUrl(
|
| 84 |
+
url=link.url_without_fragment,
|
| 85 |
+
info=ArchiveInfo(hash=hash),
|
| 86 |
+
subdirectory=link.subdirectory_fragment,
|
| 87 |
+
)
|