├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ └── feature-request.yml ├── PULL_REQUEST_TEMPLATE.md ├── chronographer.yml ├── triage-new-issues.yml └── workflows │ ├── ci.yml │ ├── lock-threads.yml │ ├── news-file.yml │ └── update-rtd-redirects.yml ├── .gitignore ├── .mailmap ├── .pre-commit-config.yaml ├── .readthedocs-custom-redirects.yml ├── .readthedocs.yml ├── AUTHORS.txt ├── LICENSE.txt ├── MANIFEST.in ├── NEWS.rst ├── README.rst ├── SECURITY.md ├── docs ├── html │ ├── cli │ │ ├── index.md │ │ ├── pip.rst │ │ ├── pip_cache.rst │ │ ├── pip_check.rst │ │ ├── pip_config.rst │ │ ├── pip_debug.rst │ │ ├── pip_download.rst │ │ ├── pip_freeze.rst │ │ ├── pip_hash.rst │ │ ├── pip_inspect.rst │ │ ├── pip_install.rst │ │ ├── pip_list.rst │ │ ├── pip_search.rst │ │ ├── pip_show.rst │ │ ├── pip_uninstall.rst │ │ └── pip_wheel.rst │ ├── conf.py │ ├── copyright.rst │ ├── development │ │ ├── architecture │ │ │ ├── anatomy.rst │ │ │ ├── command-line-interface.rst │ │ │ ├── configuration-files.rst │ │ │ ├── index.rst │ │ │ ├── overview.rst │ │ │ ├── package-finding.rst │ │ │ └── upgrade-options.rst │ │ ├── ci.rst │ │ ├── contributing.rst │ │ ├── conventions.rst │ │ ├── getting-started.rst │ │ ├── index.rst │ │ ├── issue-triage.md │ │ ├── release-process.rst │ │ └── vendoring-policy.rst │ ├── getting-started.md │ ├── index.md │ ├── installation.md │ ├── installing.rst │ ├── news.rst │ ├── quickstart.rst │ ├── reference │ │ ├── build-system │ │ │ ├── index.md │ │ │ ├── pyproject-toml.md │ │ │ └── setup-py.md │ │ ├── index.md │ │ ├── inspect-report.md │ │ ├── installation-report.md │ │ ├── pip.rst │ │ ├── pip_cache.rst │ │ ├── pip_check.rst │ │ ├── pip_config.rst │ │ ├── pip_debug.rst │ │ ├── pip_download.rst │ │ ├── pip_freeze.rst │ │ ├── pip_hash.rst │ │ ├── pip_install.rst │ │ ├── pip_list.rst │ │ ├── pip_search.rst │ │ ├── pip_show.rst │ │ ├── pip_uninstall.rst │ │ ├── pip_wheel.rst │ │ ├── requirement-specifiers.md │ │ └── requirements-file-format.md │ ├── topics │ │ ├── authentication.md │ │ ├── caching.md │ │ ├── configuration.md │ │ ├── dependency-resolution.md │ │ ├── deps.dot │ │ ├── deps.png │ │ ├── https-certificates.md │ │ ├── index.md │ │ ├── local-project-installs.md │ │ ├── more-dependency-resolution.md │ │ ├── python-option.md │ │ ├── repeatable-installs.md │ │ ├── secure-installs.md │ │ └── vcs-support.md │ ├── user_guide.rst │ └── ux_research_design.rst ├── man │ ├── commands │ │ ├── cache.rst │ │ ├── check.rst │ │ ├── config.rst │ │ ├── debug.rst │ │ ├── download.rst │ │ ├── freeze.rst │ │ ├── hash.rst │ │ ├── help.rst │ │ ├── install.rst │ │ ├── list.rst │ │ ├── search.rst │ │ ├── show.rst │ │ ├── uninstall.rst │ │ └── wheel.rst │ └── index.rst ├── pip_sphinxext.py └── requirements.txt ├── news ├── .gitignore ├── 11394.bugfix.rst ├── 12005.bugfix.rst ├── 12155.process.rst ├── 12175.removal.rst ├── 12183.trivial.rst ├── 12187.bugfix.rst ├── 12191.bugfix.rst ├── 12194.trivial.rst ├── 12204.feature.rst ├── 12215.feature.rst ├── 12224.feature.rst ├── 12225.bugfix.rst ├── 12252.trivial.rst ├── 12254.process.rst ├── 12261.trivial.rst ├── 4A0C40FF-ABE1-48C7-954C-7C3EB229135F.trivial.rst ├── 732404DE-8011-4146-8CAD-85D7756D88A6.trivial.rst ├── 85F7E260-68FF-4C1E-A2CB-CF8634829D2D.trivial.rst ├── certifi.vendor.rst └── zhsdgdlsjgksdfj.trivial.rst ├── noxfile.py ├── pyproject.toml ├── setup.cfg ├── setup.py ├── src └── pip │ ├── __init__.py │ ├── __main__.py │ ├── __pip-runner__.py │ ├── _internal │ ├── __init__.py │ ├── build_env.py │ ├── cache.py │ ├── cli │ │ ├── __init__.py │ │ ├── autocompletion.py │ │ ├── base_command.py │ │ ├── cmdoptions.py │ │ ├── command_context.py │ │ ├── main.py │ │ ├── main_parser.py │ │ ├── parser.py │ │ ├── progress_bars.py │ │ ├── req_command.py │ │ ├── spinners.py │ │ └── status_codes.py │ ├── commands │ │ ├── __init__.py │ │ ├── cache.py │ │ ├── check.py │ │ ├── completion.py │ │ ├── configuration.py │ │ ├── debug.py │ │ ├── download.py │ │ ├── freeze.py │ │ ├── hash.py │ │ ├── help.py │ │ ├── index.py │ │ ├── inspect.py │ │ ├── install.py │ │ ├── list.py │ │ ├── search.py │ │ ├── show.py │ │ ├── uninstall.py │ │ └── wheel.py │ ├── configuration.py │ ├── distributions │ │ ├── __init__.py │ │ ├── base.py │ │ ├── installed.py │ │ ├── sdist.py │ │ └── wheel.py │ ├── exceptions.py │ ├── index │ │ ├── __init__.py │ │ ├── collector.py │ │ ├── package_finder.py │ │ └── sources.py │ ├── locations │ │ ├── __init__.py │ │ ├── _distutils.py │ │ ├── _sysconfig.py │ │ └── base.py │ ├── main.py │ ├── metadata │ │ ├── __init__.py │ │ ├── _json.py │ │ ├── base.py │ │ ├── importlib │ │ │ ├── __init__.py │ │ │ ├── _compat.py │ │ │ ├── _dists.py │ │ │ └── _envs.py │ │ └── pkg_resources.py │ ├── models │ │ ├── __init__.py │ │ ├── candidate.py │ │ ├── direct_url.py │ │ ├── format_control.py │ │ ├── index.py │ │ ├── installation_report.py │ │ ├── link.py │ │ ├── scheme.py │ │ ├── search_scope.py │ │ ├── selection_prefs.py │ │ ├── target_python.py │ │ └── wheel.py │ ├── network │ │ ├── __init__.py │ │ ├── auth.py │ │ ├── cache.py │ │ ├── download.py │ │ ├── lazy_wheel.py │ │ ├── session.py │ │ ├── utils.py │ │ └── xmlrpc.py │ ├── operations │ │ ├── __init__.py │ │ ├── build │ │ │ ├── __init__.py │ │ │ ├── build_tracker.py │ │ │ ├── metadata.py │ │ │ ├── metadata_editable.py │ │ │ ├── metadata_legacy.py │ │ │ ├── wheel.py │ │ │ ├── wheel_editable.py │ │ │ └── wheel_legacy.py │ │ ├── check.py │ │ ├── freeze.py │ │ ├── install │ │ │ ├── __init__.py │ │ │ ├── editable_legacy.py │ │ │ └── wheel.py │ │ └── prepare.py │ ├── pyproject.py │ ├── req │ │ ├── __init__.py │ │ ├── constructors.py │ │ ├── req_file.py │ │ ├── req_install.py │ │ ├── req_set.py │ │ └── req_uninstall.py │ ├── resolution │ │ ├── __init__.py │ │ ├── base.py │ │ ├── legacy │ │ │ ├── __init__.py │ │ │ └── resolver.py │ │ └── resolvelib │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── candidates.py │ │ │ ├── factory.py │ │ │ ├── found_candidates.py │ │ │ ├── provider.py │ │ │ ├── reporter.py │ │ │ ├── requirements.py │ │ │ └── resolver.py │ ├── self_outdated_check.py │ ├── utils │ │ ├── __init__.py │ │ ├── _jaraco_text.py │ │ ├── _log.py │ │ ├── appdirs.py │ │ ├── compat.py │ │ ├── compatibility_tags.py │ │ ├── datetime.py │ │ ├── deprecation.py │ │ ├── direct_url_helpers.py │ │ ├── egg_link.py │ │ ├── encoding.py │ │ ├── entrypoints.py │ │ ├── filesystem.py │ │ ├── filetypes.py │ │ ├── glibc.py │ │ ├── hashes.py │ │ ├── logging.py │ │ ├── misc.py │ │ ├── models.py │ │ ├── packaging.py │ │ ├── setuptools_build.py │ │ ├── subprocess.py │ │ ├── temp_dir.py │ │ ├── unpacking.py │ │ ├── urls.py │ │ ├── virtualenv.py │ │ └── wheel.py │ ├── vcs │ │ ├── __init__.py │ │ ├── bazaar.py │ │ ├── git.py │ │ ├── mercurial.py │ │ ├── subversion.py │ │ └── versioncontrol.py │ └── wheel_builder.py │ ├── _vendor │ ├── README.rst │ ├── __init__.py │ ├── cachecontrol.pyi │ ├── cachecontrol │ │ ├── LICENSE.txt │ │ ├── __init__.py │ │ ├── _cmd.py │ │ ├── adapter.py │ │ ├── cache.py │ │ ├── caches │ │ │ ├── __init__.py │ │ │ ├── file_cache.py │ │ │ └── redis_cache.py │ │ ├── compat.py │ │ ├── controller.py │ │ ├── filewrapper.py │ │ ├── heuristics.py │ │ ├── serialize.py │ │ └── wrapper.py │ ├── certifi │ │ ├── LICENSE │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── cacert.pem │ │ ├── core.py │ │ └── py.typed │ ├── chardet │ │ ├── LICENSE │ │ ├── __init__.py │ │ ├── big5freq.py │ │ ├── big5prober.py │ │ ├── chardistribution.py │ │ ├── charsetgroupprober.py │ │ ├── charsetprober.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ └── chardetect.py │ │ ├── codingstatemachine.py │ │ ├── codingstatemachinedict.py │ │ ├── cp949prober.py │ │ ├── enums.py │ │ ├── escprober.py │ │ ├── escsm.py │ │ ├── eucjpprober.py │ │ ├── euckrfreq.py │ │ ├── euckrprober.py │ │ ├── euctwfreq.py │ │ ├── euctwprober.py │ │ ├── gb2312freq.py │ │ ├── gb2312prober.py │ │ ├── hebrewprober.py │ │ ├── jisfreq.py │ │ ├── johabfreq.py │ │ ├── johabprober.py │ │ ├── jpcntx.py │ │ ├── langbulgarianmodel.py │ │ ├── langgreekmodel.py │ │ ├── langhebrewmodel.py │ │ ├── langhungarianmodel.py │ │ ├── langrussianmodel.py │ │ ├── langthaimodel.py │ │ ├── langturkishmodel.py │ │ ├── latin1prober.py │ │ ├── macromanprober.py │ │ ├── mbcharsetprober.py │ │ ├── mbcsgroupprober.py │ │ ├── mbcssm.py │ │ ├── metadata │ │ │ ├── __init__.py │ │ │ └── languages.py │ │ ├── py.typed │ │ ├── resultdict.py │ │ ├── sbcharsetprober.py │ │ ├── sbcsgroupprober.py │ │ ├── sjisprober.py │ │ ├── universaldetector.py │ │ ├── utf1632prober.py │ │ ├── utf8prober.py │ │ └── version.py │ ├── colorama.pyi │ ├── colorama │ │ ├── LICENSE.txt │ │ ├── __init__.py │ │ ├── ansi.py │ │ ├── ansitowin32.py │ │ ├── initialise.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── ansi_test.py │ │ │ ├── ansitowin32_test.py │ │ │ ├── initialise_test.py │ │ │ ├── isatty_test.py │ │ │ ├── utils.py │ │ │ └── winterm_test.py │ │ ├── win32.py │ │ └── winterm.py │ ├── distlib.pyi │ ├── distlib │ │ ├── LICENSE.txt │ │ ├── __init__.py │ │ ├── compat.py │ │ ├── database.py │ │ ├── index.py │ │ ├── locators.py │ │ ├── manifest.py │ │ ├── markers.py │ │ ├── metadata.py │ │ ├── resources.py │ │ ├── scripts.py │ │ ├── t32.exe │ │ ├── t64-arm.exe │ │ ├── t64.exe │ │ ├── util.py │ │ ├── version.py │ │ ├── w32.exe │ │ ├── w64-arm.exe │ │ ├── w64.exe │ │ └── wheel.py │ ├── distro │ │ ├── LICENSE │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── distro.py │ │ └── py.typed │ ├── idna │ │ ├── LICENSE.md │ │ ├── __init__.py │ │ ├── codec.py │ │ ├── compat.py │ │ ├── core.py │ │ ├── idnadata.py │ │ ├── intranges.py │ │ ├── package_data.py │ │ ├── py.typed │ │ └── uts46data.py │ ├── msgpack.pyi │ ├── msgpack │ │ ├── COPYING │ │ ├── __init__.py │ │ ├── exceptions.py │ │ ├── ext.py │ │ └── fallback.py │ ├── packaging │ │ ├── LICENSE │ │ ├── LICENSE.APACHE │ │ ├── LICENSE.BSD │ │ ├── __about__.py │ │ ├── __init__.py │ │ ├── _manylinux.py │ │ ├── _musllinux.py │ │ ├── _structures.py │ │ ├── markers.py │ │ ├── py.typed │ │ ├── requirements.py │ │ ├── specifiers.py │ │ ├── tags.py │ │ ├── utils.py │ │ └── version.py │ ├── pkg_resources.pyi │ ├── pkg_resources │ │ ├── LICENSE │ │ └── __init__.py │ ├── platformdirs │ │ ├── LICENSE │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── android.py │ │ ├── api.py │ │ ├── macos.py │ │ ├── py.typed │ │ ├── unix.py │ │ ├── version.py │ │ └── windows.py │ ├── pygments.pyi │ ├── pygments │ │ ├── LICENSE │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── cmdline.py │ │ ├── console.py │ │ ├── filter.py │ │ ├── filters │ │ │ └── __init__.py │ │ ├── formatter.py │ │ ├── formatters │ │ │ ├── __init__.py │ │ │ ├── _mapping.py │ │ │ ├── bbcode.py │ │ │ ├── groff.py │ │ │ ├── html.py │ │ │ ├── img.py │ │ │ ├── irc.py │ │ │ ├── latex.py │ │ │ ├── other.py │ │ │ ├── pangomarkup.py │ │ │ ├── rtf.py │ │ │ ├── svg.py │ │ │ ├── terminal.py │ │ │ └── terminal256.py │ │ ├── lexer.py │ │ ├── lexers │ │ │ ├── __init__.py │ │ │ ├── _mapping.py │ │ │ └── python.py │ │ ├── modeline.py │ │ ├── plugin.py │ │ ├── regexopt.py │ │ ├── scanner.py │ │ ├── sphinxext.py │ │ ├── style.py │ │ ├── styles │ │ │ └── __init__.py │ │ ├── token.py │ │ ├── unistring.py │ │ └── util.py │ ├── pyparsing │ │ ├── LICENSE │ │ ├── __init__.py │ │ ├── actions.py │ │ ├── common.py │ │ ├── core.py │ │ ├── diagram │ │ │ └── __init__.py │ │ ├── exceptions.py │ │ ├── helpers.py │ │ ├── py.typed │ │ ├── results.py │ │ ├── testing.py │ │ ├── unicode.py │ │ └── util.py │ ├── pyproject_hooks.pyi │ ├── pyproject_hooks │ │ ├── LICENSE │ │ ├── __init__.py │ │ ├── _compat.py │ │ ├── _impl.py │ │ └── _in_process │ │ │ ├── __init__.py │ │ │ └── _in_process.py │ ├── requests.pyi │ ├── requests │ │ ├── LICENSE │ │ ├── __init__.py │ │ ├── __version__.py │ │ ├── _internal_utils.py │ │ ├── adapters.py │ │ ├── api.py │ │ ├── auth.py │ │ ├── certs.py │ │ ├── compat.py │ │ ├── cookies.py │ │ ├── exceptions.py │ │ ├── help.py │ │ ├── hooks.py │ │ ├── models.py │ │ ├── packages.py │ │ ├── sessions.py │ │ ├── status_codes.py │ │ ├── structures.py │ │ └── utils.py │ ├── resolvelib │ │ ├── LICENSE │ │ ├── __init__.py │ │ ├── __init__.pyi │ │ ├── compat │ │ │ ├── __init__.py │ │ │ ├── collections_abc.py │ │ │ └── collections_abc.pyi │ │ ├── providers.py │ │ ├── providers.pyi │ │ ├── py.typed │ │ ├── reporters.py │ │ ├── reporters.pyi │ │ ├── resolvers.py │ │ ├── resolvers.pyi │ │ ├── structs.py │ │ └── structs.pyi │ ├── rich │ │ ├── LICENSE │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── _cell_widths.py │ │ ├── _emoji_codes.py │ │ ├── _emoji_replace.py │ │ ├── _export_format.py │ │ ├── _extension.py │ │ ├── _fileno.py │ │ ├── _inspect.py │ │ ├── _log_render.py │ │ ├── _loop.py │ │ ├── _null_file.py │ │ ├── _palettes.py │ │ ├── _pick.py │ │ ├── _ratio.py │ │ ├── _spinners.py │ │ ├── _stack.py │ │ ├── _timer.py │ │ ├── _win32_console.py │ │ ├── _windows.py │ │ ├── _windows_renderer.py │ │ ├── _wrap.py │ │ ├── abc.py │ │ ├── align.py │ │ ├── ansi.py │ │ ├── bar.py │ │ ├── box.py │ │ ├── cells.py │ │ ├── color.py │ │ ├── color_triplet.py │ │ ├── columns.py │ │ ├── console.py │ │ ├── constrain.py │ │ ├── containers.py │ │ ├── control.py │ │ ├── default_styles.py │ │ ├── diagnose.py │ │ ├── emoji.py │ │ ├── errors.py │ │ ├── file_proxy.py │ │ ├── filesize.py │ │ ├── highlighter.py │ │ ├── json.py │ │ ├── jupyter.py │ │ ├── layout.py │ │ ├── live.py │ │ ├── live_render.py │ │ ├── logging.py │ │ ├── markup.py │ │ ├── measure.py │ │ ├── padding.py │ │ ├── pager.py │ │ ├── palette.py │ │ ├── panel.py │ │ ├── pretty.py │ │ ├── progress.py │ │ ├── progress_bar.py │ │ ├── prompt.py │ │ ├── protocol.py │ │ ├── py.typed │ │ ├── region.py │ │ ├── repr.py │ │ ├── rule.py │ │ ├── scope.py │ │ ├── screen.py │ │ ├── segment.py │ │ ├── spinner.py │ │ ├── status.py │ │ ├── style.py │ │ ├── styled.py │ │ ├── syntax.py │ │ ├── table.py │ │ ├── terminal_theme.py │ │ ├── text.py │ │ ├── theme.py │ │ ├── themes.py │ │ ├── traceback.py │ │ └── tree.py │ ├── six.LICENSE │ ├── six.py │ ├── six │ │ ├── __init__.pyi │ │ └── moves │ │ │ ├── __init__.pyi │ │ │ └── configparser.pyi │ ├── tenacity │ │ ├── LICENSE │ │ ├── __init__.py │ │ ├── _asyncio.py │ │ ├── _utils.py │ │ ├── after.py │ │ ├── before.py │ │ ├── before_sleep.py │ │ ├── nap.py │ │ ├── py.typed │ │ ├── retry.py │ │ ├── stop.py │ │ ├── tornadoweb.py │ │ └── wait.py │ ├── tomli │ │ ├── LICENSE │ │ ├── __init__.py │ │ ├── _parser.py │ │ ├── _re.py │ │ ├── _types.py │ │ └── py.typed │ ├── typing_extensions.LICENSE │ ├── typing_extensions.py │ ├── typing_extensions.pyi │ ├── urllib3.pyi │ ├── urllib3 │ │ ├── LICENSE.txt │ │ ├── __init__.py │ │ ├── _collections.py │ │ ├── _version.py │ │ ├── connection.py │ │ ├── connectionpool.py │ │ ├── contrib │ │ │ ├── __init__.py │ │ │ ├── _appengine_environ.py │ │ │ ├── _securetransport │ │ │ │ ├── __init__.py │ │ │ │ ├── bindings.py │ │ │ │ └── low_level.py │ │ │ ├── appengine.py │ │ │ ├── ntlmpool.py │ │ │ ├── pyopenssl.py │ │ │ ├── securetransport.py │ │ │ └── socks.py │ │ ├── exceptions.py │ │ ├── fields.py │ │ ├── filepost.py │ │ ├── packages │ │ │ ├── __init__.py │ │ │ ├── backports │ │ │ │ ├── __init__.py │ │ │ │ ├── makefile.py │ │ │ │ └── weakref_finalize.py │ │ │ └── six.py │ │ ├── poolmanager.py │ │ ├── request.py │ │ ├── response.py │ │ └── util │ │ │ ├── __init__.py │ │ │ ├── connection.py │ │ │ ├── proxy.py │ │ │ ├── queue.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ ├── retry.py │ │ │ ├── ssl_.py │ │ │ ├── ssl_match_hostname.py │ │ │ ├── ssltransport.py │ │ │ ├── timeout.py │ │ │ ├── url.py │ │ │ └── wait.py │ ├── vendor.txt │ ├── webencodings.pyi │ └── webencodings │ │ ├── LICENSE │ │ ├── __init__.py │ │ ├── labels.py │ │ ├── mklabels.py │ │ ├── tests.py │ │ └── x_user_defined.py │ └── py.typed ├── tests ├── __init__.py ├── conftest.py ├── data │ ├── backends │ │ ├── dummy_backend-0.1-py2.py3-none-any.whl │ │ ├── test_backend-0.1-py2.py3-none-any.whl │ │ └── test_backend-0.1.tar.gz │ ├── completion_paths │ │ ├── README.txt │ │ ├── REPLAY │ │ │ └── video.mpeg │ │ ├── requirements.txt │ │ └── resources │ │ │ └── images │ │ │ └── icon.png │ ├── indexes │ │ ├── README.txt │ │ ├── datarequire │ │ │ └── fakepackage │ │ │ │ └── index.html │ │ ├── dev │ │ │ └── bar │ │ │ │ └── index.html │ │ ├── empty_with_pkg │ │ │ ├── index.html │ │ │ └── simple-1.0.tar.gz │ │ ├── in dex │ │ │ ├── README.txt │ │ │ └── simple │ │ │ │ └── index.html │ │ ├── pre │ │ │ └── bar │ │ │ │ └── index.html │ │ ├── simple │ │ │ └── simple │ │ │ │ └── index.html │ │ ├── yanked │ │ │ └── simple │ │ │ │ └── index.html │ │ └── yanked_all │ │ │ └── simple │ │ │ └── index.html │ ├── packages │ │ ├── BrokenEmitsUTF8 │ │ │ ├── broken.py │ │ │ └── setup.py │ │ ├── FSPkg │ │ │ ├── fspkg │ │ │ │ └── __init__.py │ │ │ └── setup.py │ │ ├── HackedEggInfo │ │ │ └── setup.py │ │ ├── INITools-0.2.tar.gz │ │ ├── LineEndings │ │ │ └── setup.py │ │ ├── LocalEnvironMarker │ │ │ ├── .gitignore │ │ │ ├── localenvironmarker │ │ │ │ └── __init__.py │ │ │ └── setup.py │ │ ├── LocalExtras-0.0.2 │ │ │ ├── .gitignore │ │ │ ├── localextras │ │ │ │ └── __init__.py │ │ │ └── setup.py │ │ ├── LocalExtras │ │ │ ├── .gitignore │ │ │ ├── localextras │ │ │ │ └── __init__.py │ │ │ └── setup.py │ │ ├── README.txt │ │ ├── SetupPyLatin1 │ │ │ └── setup.py │ │ ├── SetupPyUTF8 │ │ │ └── setup.py │ │ ├── TopoRequires-0.0.1.tar.gz │ │ ├── TopoRequires2-0.0.1.tar.gz │ │ ├── TopoRequires3-0.0.1.tar.gz │ │ ├── TopoRequires4-0.0.1.tar.gz │ │ ├── Upper-1.0.tar.gz │ │ ├── Upper-2.0.tar.gz │ │ ├── argparse-1.2.1.tar.gz │ │ ├── broken-0.1.tar.gz │ │ ├── broken-0.2broken.tar.gz │ │ ├── brokenegginfo-0.1.tar.gz │ │ ├── brokenwheel-1.0-py2.py3-none-any.whl │ │ ├── child-0.1.tar.gz │ │ ├── colander-0.9.9-py2.py3-none-any.whl │ │ ├── compilewheel-1.0-py2.py3-none-any.whl │ │ ├── complex_dist-0.1-py2.py3-none-any.whl │ │ ├── console_scripts_uppercase-1.0-py2.py3-none-any.whl │ │ ├── corruptwheel-1.0-py2.py3-none-any.whl │ │ ├── distribute-0.7.3.zip │ │ ├── duplicate-1.0.tar.gz │ │ ├── gmpy-1.15.tar.gz │ │ ├── gmpy2-2.0.tar.gz │ │ ├── has.script-1.0-py2.py3-none-any.whl │ │ ├── invalid.whl │ │ ├── meta-1.0-py2.py3-none-any.whl │ │ ├── mypy-0.782-py3-none-any.whl │ │ ├── parent-0.1.tar.gz │ │ ├── pep517_setup_and_pyproject │ │ │ ├── pyproject.toml │ │ │ ├── setup.cfg │ │ │ └── setup.py │ │ ├── pep517_wrapper_buildsys │ │ │ ├── mybuildsys.py │ │ │ ├── pyproject.toml │ │ │ ├── setup.cfg │ │ │ └── setup.py │ │ ├── pep518-3.0.tar.gz │ │ ├── pep518_forkbomb-235.tar.gz │ │ ├── pep518_twin_forkbombs_first-234.tar.gz │ │ ├── pep518_twin_forkbombs_second-238.tar.gz │ │ ├── pep518_with_extra_and_markers-1.0.tar.gz │ │ ├── pip-test-package-0.1.1.tar.gz │ │ ├── pip-test-package-0.1.tar.gz │ │ ├── pkgwithmpkg-1.0-py2.7-macosx10.7.mpkg.zip │ │ ├── pkgwithmpkg-1.0.tar.gz │ │ ├── priority-1.0-py2.py3-none-any.whl │ │ ├── priority-1.0.tar.gz │ │ ├── prjwithdatafile-1.0-py2.py3-none-any.whl │ │ ├── require_simple-1.0.tar.gz │ │ ├── requiresPaste │ │ │ ├── pyproject.toml │ │ │ └── requiresPaste.py │ │ ├── requires_simple_extra-0.1-py2.py3-none-any.whl │ │ ├── requires_source-1.0-py2.py3-none-any.whl │ │ ├── requires_wheelbroken_upper │ │ │ ├── requires_wheelbroken_upper │ │ │ │ └── __init__.py │ │ │ └── setup.py │ │ ├── requiresupper-1.0.tar.gz │ │ ├── script.wheel1-0.1-py2.py3-none-any.whl │ │ ├── script.wheel1a-0.1-py2.py3-none-any.whl │ │ ├── script.wheel2-0.1-py2.py3-none-any.whl │ │ ├── script.wheel2a-0.1-py2.py3-none-any.whl │ │ ├── script.wheel3-0.1-py2.py3-none-any.whl │ │ ├── setuptools-0.9.6.tar.gz │ │ ├── setuptools-0.9.8-py2.py3-none-any.whl │ │ ├── simple-1.0.tar.gz │ │ ├── simple-2.0.tar.gz │ │ ├── simple-3.0.tar.gz │ │ ├── simple.dist-0.1-py1-none-invalid.whl │ │ ├── simple.dist-0.1-py2.py3-none-any.whl │ │ ├── simple2-1.0.tar.gz │ │ ├── simple2-2.0.tar.gz │ │ ├── simple2-3.0.tar.gz │ │ ├── simple_namespace-1.0-py2.py3-none-any.whl │ │ ├── simplewheel-1.0-py2.py3-none-any.whl │ │ ├── simplewheel-2.0-1-py2.py3-none-any.whl │ │ ├── simplewheel-2.0-py2.py3-none-any.whl │ │ ├── simplewheel-2.0-py3-fakeabi-fakeplat.whl │ │ ├── singlemodule-0.0.0.tar.gz │ │ ├── singlemodule-0.0.1.tar.gz │ │ ├── singlemodule-0.0.1.tar.lzma │ │ ├── singlemodule-0.0.1.tar.xz │ │ ├── source-1.0.tar.gz │ │ ├── symlinks │ │ │ ├── doc │ │ │ │ └── intro │ │ │ ├── docs │ │ │ ├── setup.cfg │ │ │ ├── setup.py │ │ │ └── symlinks │ │ │ │ └── __init__.py │ │ ├── test_tar.tgz │ │ ├── test_zip.zip │ │ ├── translationstring-1.1.tar.gz │ │ ├── virtualenv-1.10.tar.gz │ │ ├── virtualenv-1.9.1.tar.gz │ │ ├── wheelbroken-0.1.tar.gz │ │ └── wheelbrokenafter-0.1.tar.gz │ ├── packages2 │ │ └── duplicate-1.0.tar.gz │ ├── packages3 │ │ ├── dinner │ │ │ ├── Dinner-1.0.tar.gz │ │ │ ├── Dinner-2.0.tar.gz │ │ │ └── index.html │ │ ├── index.html │ │ └── requiredinner │ │ │ ├── index.html │ │ │ └── requiredinner-1.0.tar.gz │ ├── reqfiles │ │ ├── README.txt │ │ └── supported_options2.txt │ └── src │ │ ├── TopoRequires │ │ ├── setup.py │ │ └── toporequires │ │ │ └── __init__.py │ │ ├── TopoRequires2 │ │ ├── setup.cfg.pending │ │ ├── setup.py │ │ └── toporequires2 │ │ │ └── __init__.py │ │ ├── TopoRequires3 │ │ ├── setup.cfg.pending │ │ ├── setup.py │ │ └── toporequires3 │ │ │ └── __init__.py │ │ ├── TopoRequires4 │ │ ├── setup.cfg.pending │ │ ├── setup.py │ │ └── toporequires4 │ │ │ └── __init__.py │ │ ├── chattymodule │ │ ├── chattymodule.py │ │ ├── setup.cfg │ │ └── setup.py │ │ ├── compilewheel │ │ ├── setup.cfg │ │ ├── setup.py │ │ └── simple │ │ │ └── __init__.py │ │ ├── extension │ │ ├── extension.c │ │ └── setup.py │ │ ├── pep517_pyproject_only │ │ └── pyproject.toml │ │ ├── pep517_setup_and_pyproject │ │ ├── pyproject.toml │ │ └── setup.py │ │ ├── pep517_setup_cfg_only │ │ └── setup.cfg │ │ ├── pep517_setup_only │ │ └── setup.py │ │ ├── pep518-3.0 │ │ ├── MANIFEST.in │ │ ├── pep518.py │ │ ├── pyproject.toml │ │ ├── setup.cfg │ │ └── setup.py │ │ ├── pep518_conflicting_requires │ │ ├── MANIFEST.in │ │ ├── pep518.py │ │ ├── pyproject.toml │ │ └── setup.py │ │ ├── pep518_forkbomb-235 │ │ ├── MANIFEST.in │ │ ├── pep518_forkbomb.py │ │ ├── pyproject.toml │ │ ├── setup.cfg │ │ └── setup.py │ │ ├── pep518_invalid_build_system │ │ ├── MANIFEST.in │ │ ├── pep518.py │ │ ├── pyproject.toml │ │ └── setup.py │ │ ├── pep518_invalid_requires │ │ ├── MANIFEST.in │ │ ├── pep518.py │ │ ├── pyproject.toml │ │ └── setup.py │ │ ├── pep518_missing_requires │ │ ├── MANIFEST.in │ │ ├── pep518.py │ │ ├── pyproject.toml │ │ └── setup.py │ │ ├── pep518_twin_forkbombs_first-234 │ │ ├── MANIFEST.in │ │ ├── pep518_twin_forkbombs_first.py │ │ ├── pyproject.toml │ │ ├── setup.cfg │ │ └── setup.py │ │ ├── pep518_twin_forkbombs_second-238 │ │ ├── MANIFEST.in │ │ ├── pep518_twin_forkbombs_second.py │ │ ├── pyproject.toml │ │ ├── setup.cfg │ │ └── setup.py │ │ ├── pep518_with_extra_and_markers-1.0 │ │ ├── MANIFEST.in │ │ ├── pep518_with_extra_and_markers.py │ │ ├── pyproject.toml │ │ ├── setup.cfg │ │ └── setup.py │ │ ├── pep518_with_namespace_package-1.0 │ │ ├── pep518_with_namespace_package.py │ │ ├── pyproject.toml │ │ ├── setup.cfg │ │ └── setup.py │ │ ├── prjwithdatafile │ │ ├── prjwithdatafile │ │ │ ├── README.txt │ │ │ └── somemodule.py │ │ └── setup.py │ │ ├── requires_capitalized │ │ └── setup.py │ │ ├── requires_requires_capitalized │ │ └── setup.py │ │ ├── requires_simple │ │ ├── requires_simple │ │ │ └── __init__.py │ │ └── setup.py │ │ ├── requires_simple_extra │ │ ├── requires_simple_extra.py │ │ ├── setup.cfg │ │ └── setup.py │ │ ├── setup_error │ │ └── setup.py │ │ ├── simple_namespace │ │ ├── setup.cfg │ │ ├── setup.py │ │ └── simple_namespace │ │ │ ├── __init__.py │ │ │ └── module │ │ │ └── __init__.py │ │ ├── simplewheel-1.0 │ │ ├── setup.cfg │ │ ├── setup.py │ │ └── simplewheel │ │ │ └── __init__.py │ │ ├── simplewheel-2.0 │ │ ├── setup.cfg │ │ ├── setup.py │ │ └── simplewheel │ │ │ └── __init__.py │ │ ├── singlemodule │ │ ├── setup.cfg │ │ ├── setup.py │ │ └── singlemodule.py │ │ └── withpyproject │ │ ├── pyproject.toml │ │ └── setup.py ├── functional │ ├── __init__.py │ ├── test_bad_url.py │ ├── test_broken_stdout.py │ ├── test_build_env.py │ ├── test_cache.py │ ├── test_check.py │ ├── test_cli.py │ ├── test_completion.py │ ├── test_config_settings.py │ ├── test_configuration.py │ ├── test_debug.py │ ├── test_download.py │ ├── test_fast_deps.py │ ├── test_freeze.py │ ├── test_hash.py │ ├── test_help.py │ ├── test_index.py │ ├── test_inspect.py │ ├── test_install.py │ ├── test_install_check.py │ ├── test_install_cleanup.py │ ├── test_install_compat.py │ ├── test_install_config.py │ ├── test_install_direct_url.py │ ├── test_install_extras.py │ ├── test_install_force_reinstall.py │ ├── test_install_index.py │ ├── test_install_report.py │ ├── test_install_reqs.py │ ├── test_install_requested.py │ ├── test_install_upgrade.py │ ├── test_install_user.py │ ├── test_install_vcs_git.py │ ├── test_install_wheel.py │ ├── test_list.py │ ├── test_new_resolver.py │ ├── test_new_resolver_errors.py │ ├── test_new_resolver_hashes.py │ ├── test_new_resolver_target.py │ ├── test_new_resolver_user.py │ ├── test_no_color.py │ ├── test_pep517.py │ ├── test_pep660.py │ ├── test_pep668.py │ ├── test_pip_runner_script.py │ ├── test_python_option.py │ ├── test_search.py │ ├── test_show.py │ ├── test_truststore.py │ ├── test_uninstall.py │ ├── test_uninstall_user.py │ ├── test_vcs_bazaar.py │ ├── test_vcs_git.py │ ├── test_vcs_mercurial.py │ ├── test_vcs_subversion.py │ ├── test_warning.py │ └── test_wheel.py ├── lib │ ├── __init__.py │ ├── certs.py │ ├── compat.py │ ├── configuration_helpers.py │ ├── direct_url.py │ ├── filesystem.py │ ├── git_submodule_helpers.py │ ├── index.py │ ├── local_repos.py │ ├── options_helpers.py │ ├── requests_mocks.py │ ├── server.py │ ├── test_lib.py │ ├── test_wheel.py │ ├── venv.py │ └── wheel.py ├── requirements-common_wheels.txt ├── requirements.txt └── unit │ ├── __init__.py │ ├── metadata │ ├── test_metadata.py │ └── test_metadata_pkg_resources.py │ ├── resolution_resolvelib │ ├── __init__.py │ ├── conftest.py │ ├── test_provider.py │ ├── test_requirement.py │ └── test_resolver.py │ ├── test_appdirs.py │ ├── test_base_command.py │ ├── test_cache.py │ ├── test_cmdoptions.py │ ├── test_collector.py │ ├── test_command_install.py │ ├── test_commands.py │ ├── test_compat.py │ ├── test_configuration.py │ ├── test_direct_url.py │ ├── test_direct_url_helpers.py │ ├── test_exceptions.py │ ├── test_finder.py │ ├── test_format_control.py │ ├── test_index.py │ ├── test_link.py │ ├── test_locations.py │ ├── test_logging.py │ ├── test_models.py │ ├── test_models_wheel.py │ ├── test_network_auth.py │ ├── test_network_cache.py │ ├── test_network_download.py │ ├── test_network_lazy_wheel.py │ ├── test_network_session.py │ ├── test_network_utils.py │ ├── test_operations_prepare.py │ ├── test_options.py │ ├── test_packaging.py │ ├── test_pep517.py │ ├── test_pyproject_config.py │ ├── test_req.py │ ├── test_req_file.py │ ├── test_req_install.py │ ├── test_req_uninstall.py │ ├── test_resolution_legacy_resolver.py │ ├── test_search_scope.py │ ├── test_self_check_outdated.py │ ├── test_target_python.py │ ├── test_urls.py │ ├── test_utils.py │ ├── test_utils_compatibility_tags.py │ ├── test_utils_filesystem.py │ ├── test_utils_subprocess.py │ ├── test_utils_temp_dir.py │ ├── test_utils_unpacking.py │ ├── test_utils_virtualenv.py │ ├── test_utils_wheel.py │ ├── test_vcs.py │ ├── test_vcs_mercurial.py │ ├── test_wheel.py │ └── test_wheel_builder.py └── tools ├── ci └── New-RAMDisk.ps1 ├── news └── template.rst ├── protected_pip.py ├── release ├── __init__.py └── check_version.py ├── update-rtd-redirects.py └── vendoring └── patches ├── certifi.patch ├── pkg_resources.patch ├── pygments.patch ├── requests.patch ├── tenacity.patch ├── urllib3-disable-brotli.patch └── urllib3.patch /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/chronographer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/.github/chronographer.yml -------------------------------------------------------------------------------- /.github/triage-new-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/.github/triage-new-issues.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/lock-threads.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/.github/workflows/lock-threads.yml -------------------------------------------------------------------------------- /.github/workflows/news-file.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/.github/workflows/news-file.yml -------------------------------------------------------------------------------- /.github/workflows/update-rtd-redirects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/.github/workflows/update-rtd-redirects.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/.mailmap -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs-custom-redirects.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/.readthedocs-custom-redirects.yml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NEWS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/NEWS.rst -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/README.rst -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docs/html/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/cli/index.md -------------------------------------------------------------------------------- /docs/html/cli/pip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/cli/pip.rst -------------------------------------------------------------------------------- /docs/html/cli/pip_cache.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/cli/pip_cache.rst -------------------------------------------------------------------------------- /docs/html/cli/pip_check.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/cli/pip_check.rst -------------------------------------------------------------------------------- /docs/html/cli/pip_config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/cli/pip_config.rst -------------------------------------------------------------------------------- /docs/html/cli/pip_debug.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/cli/pip_debug.rst -------------------------------------------------------------------------------- /docs/html/cli/pip_download.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/cli/pip_download.rst -------------------------------------------------------------------------------- /docs/html/cli/pip_freeze.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/cli/pip_freeze.rst -------------------------------------------------------------------------------- /docs/html/cli/pip_hash.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/cli/pip_hash.rst -------------------------------------------------------------------------------- /docs/html/cli/pip_inspect.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/cli/pip_inspect.rst -------------------------------------------------------------------------------- /docs/html/cli/pip_install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/cli/pip_install.rst -------------------------------------------------------------------------------- /docs/html/cli/pip_list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/cli/pip_list.rst -------------------------------------------------------------------------------- /docs/html/cli/pip_search.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/cli/pip_search.rst -------------------------------------------------------------------------------- /docs/html/cli/pip_show.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/cli/pip_show.rst -------------------------------------------------------------------------------- /docs/html/cli/pip_uninstall.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/cli/pip_uninstall.rst -------------------------------------------------------------------------------- /docs/html/cli/pip_wheel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/cli/pip_wheel.rst -------------------------------------------------------------------------------- /docs/html/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/conf.py -------------------------------------------------------------------------------- /docs/html/copyright.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/copyright.rst -------------------------------------------------------------------------------- /docs/html/development/ci.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/development/ci.rst -------------------------------------------------------------------------------- /docs/html/development/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/development/contributing.rst -------------------------------------------------------------------------------- /docs/html/development/conventions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/development/conventions.rst -------------------------------------------------------------------------------- /docs/html/development/getting-started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/development/getting-started.rst -------------------------------------------------------------------------------- /docs/html/development/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/development/index.rst -------------------------------------------------------------------------------- /docs/html/development/issue-triage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/development/issue-triage.md -------------------------------------------------------------------------------- /docs/html/development/release-process.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/development/release-process.rst -------------------------------------------------------------------------------- /docs/html/development/vendoring-policy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/development/vendoring-policy.rst -------------------------------------------------------------------------------- /docs/html/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/getting-started.md -------------------------------------------------------------------------------- /docs/html/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/index.md -------------------------------------------------------------------------------- /docs/html/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/installation.md -------------------------------------------------------------------------------- /docs/html/installing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/installing.rst -------------------------------------------------------------------------------- /docs/html/news.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/news.rst -------------------------------------------------------------------------------- /docs/html/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/quickstart.rst -------------------------------------------------------------------------------- /docs/html/reference/build-system/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/reference/build-system/index.md -------------------------------------------------------------------------------- /docs/html/reference/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/reference/index.md -------------------------------------------------------------------------------- /docs/html/reference/inspect-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/reference/inspect-report.md -------------------------------------------------------------------------------- /docs/html/reference/installation-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/reference/installation-report.md -------------------------------------------------------------------------------- /docs/html/reference/pip.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/reference/pip.rst -------------------------------------------------------------------------------- /docs/html/reference/pip_cache.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/reference/pip_cache.rst -------------------------------------------------------------------------------- /docs/html/reference/pip_check.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/reference/pip_check.rst -------------------------------------------------------------------------------- /docs/html/reference/pip_config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/reference/pip_config.rst -------------------------------------------------------------------------------- /docs/html/reference/pip_debug.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/reference/pip_debug.rst -------------------------------------------------------------------------------- /docs/html/reference/pip_download.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/reference/pip_download.rst -------------------------------------------------------------------------------- /docs/html/reference/pip_freeze.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/reference/pip_freeze.rst -------------------------------------------------------------------------------- /docs/html/reference/pip_hash.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/reference/pip_hash.rst -------------------------------------------------------------------------------- /docs/html/reference/pip_install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/reference/pip_install.rst -------------------------------------------------------------------------------- /docs/html/reference/pip_list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/reference/pip_list.rst -------------------------------------------------------------------------------- /docs/html/reference/pip_search.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/reference/pip_search.rst -------------------------------------------------------------------------------- /docs/html/reference/pip_show.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/reference/pip_show.rst -------------------------------------------------------------------------------- /docs/html/reference/pip_uninstall.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/reference/pip_uninstall.rst -------------------------------------------------------------------------------- /docs/html/reference/pip_wheel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/reference/pip_wheel.rst -------------------------------------------------------------------------------- /docs/html/topics/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/topics/authentication.md -------------------------------------------------------------------------------- /docs/html/topics/caching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/topics/caching.md -------------------------------------------------------------------------------- /docs/html/topics/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/topics/configuration.md -------------------------------------------------------------------------------- /docs/html/topics/dependency-resolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/topics/dependency-resolution.md -------------------------------------------------------------------------------- /docs/html/topics/deps.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/topics/deps.dot -------------------------------------------------------------------------------- /docs/html/topics/deps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/topics/deps.png -------------------------------------------------------------------------------- /docs/html/topics/https-certificates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/topics/https-certificates.md -------------------------------------------------------------------------------- /docs/html/topics/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/topics/index.md -------------------------------------------------------------------------------- /docs/html/topics/local-project-installs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/topics/local-project-installs.md -------------------------------------------------------------------------------- /docs/html/topics/python-option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/topics/python-option.md -------------------------------------------------------------------------------- /docs/html/topics/repeatable-installs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/topics/repeatable-installs.md -------------------------------------------------------------------------------- /docs/html/topics/secure-installs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/topics/secure-installs.md -------------------------------------------------------------------------------- /docs/html/topics/vcs-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/topics/vcs-support.md -------------------------------------------------------------------------------- /docs/html/user_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/user_guide.rst -------------------------------------------------------------------------------- /docs/html/ux_research_design.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/html/ux_research_design.rst -------------------------------------------------------------------------------- /docs/man/commands/cache.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/man/commands/cache.rst -------------------------------------------------------------------------------- /docs/man/commands/check.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/man/commands/check.rst -------------------------------------------------------------------------------- /docs/man/commands/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/man/commands/config.rst -------------------------------------------------------------------------------- /docs/man/commands/debug.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/man/commands/debug.rst -------------------------------------------------------------------------------- /docs/man/commands/download.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/man/commands/download.rst -------------------------------------------------------------------------------- /docs/man/commands/freeze.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/man/commands/freeze.rst -------------------------------------------------------------------------------- /docs/man/commands/hash.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/man/commands/hash.rst -------------------------------------------------------------------------------- /docs/man/commands/help.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/man/commands/help.rst -------------------------------------------------------------------------------- /docs/man/commands/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/man/commands/install.rst -------------------------------------------------------------------------------- /docs/man/commands/list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/man/commands/list.rst -------------------------------------------------------------------------------- /docs/man/commands/search.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/man/commands/search.rst -------------------------------------------------------------------------------- /docs/man/commands/show.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/man/commands/show.rst -------------------------------------------------------------------------------- /docs/man/commands/uninstall.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/man/commands/uninstall.rst -------------------------------------------------------------------------------- /docs/man/commands/wheel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/man/commands/wheel.rst -------------------------------------------------------------------------------- /docs/man/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/man/index.rst -------------------------------------------------------------------------------- /docs/pip_sphinxext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/pip_sphinxext.py -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /news/.gitignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | -------------------------------------------------------------------------------- /news/11394.bugfix.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/news/11394.bugfix.rst -------------------------------------------------------------------------------- /news/12005.bugfix.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/news/12005.bugfix.rst -------------------------------------------------------------------------------- /news/12155.process.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/news/12155.process.rst -------------------------------------------------------------------------------- /news/12175.removal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/news/12175.removal.rst -------------------------------------------------------------------------------- /news/12183.trivial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/news/12183.trivial.rst -------------------------------------------------------------------------------- /news/12187.bugfix.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/news/12187.bugfix.rst -------------------------------------------------------------------------------- /news/12191.bugfix.rst: -------------------------------------------------------------------------------- 1 | Prevent downloading sdists twice when PEP 658 metadata is present. 2 | -------------------------------------------------------------------------------- /news/12194.trivial.rst: -------------------------------------------------------------------------------- 1 | Add lots of comments to the ``BuildTracker``. 2 | -------------------------------------------------------------------------------- /news/12204.feature.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/news/12204.feature.rst -------------------------------------------------------------------------------- /news/12215.feature.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/news/12215.feature.rst -------------------------------------------------------------------------------- /news/12224.feature.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/news/12224.feature.rst -------------------------------------------------------------------------------- /news/12225.bugfix.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/news/12225.bugfix.rst -------------------------------------------------------------------------------- /news/12252.trivial.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /news/12254.process.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/news/12254.process.rst -------------------------------------------------------------------------------- /news/12261.trivial.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /news/732404DE-8011-4146-8CAD-85D7756D88A6.trivial.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /news/85F7E260-68FF-4C1E-A2CB-CF8634829D2D.trivial.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /news/certifi.vendor.rst: -------------------------------------------------------------------------------- 1 | Upgrade certifi to 2023.7.22 2 | -------------------------------------------------------------------------------- /news/zhsdgdlsjgksdfj.trivial.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/noxfile.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/setup.py -------------------------------------------------------------------------------- /src/pip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/__init__.py -------------------------------------------------------------------------------- /src/pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/__main__.py -------------------------------------------------------------------------------- /src/pip/__pip-runner__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/__pip-runner__.py -------------------------------------------------------------------------------- /src/pip/_internal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/__init__.py -------------------------------------------------------------------------------- /src/pip/_internal/build_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/build_env.py -------------------------------------------------------------------------------- /src/pip/_internal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/cache.py -------------------------------------------------------------------------------- /src/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/cli/__init__.py -------------------------------------------------------------------------------- /src/pip/_internal/cli/autocompletion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/cli/autocompletion.py -------------------------------------------------------------------------------- /src/pip/_internal/cli/base_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/cli/base_command.py -------------------------------------------------------------------------------- /src/pip/_internal/cli/cmdoptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/cli/cmdoptions.py -------------------------------------------------------------------------------- /src/pip/_internal/cli/command_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/cli/command_context.py -------------------------------------------------------------------------------- /src/pip/_internal/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/cli/main.py -------------------------------------------------------------------------------- /src/pip/_internal/cli/main_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/cli/main_parser.py -------------------------------------------------------------------------------- /src/pip/_internal/cli/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/cli/parser.py -------------------------------------------------------------------------------- /src/pip/_internal/cli/progress_bars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/cli/progress_bars.py -------------------------------------------------------------------------------- /src/pip/_internal/cli/req_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/cli/req_command.py -------------------------------------------------------------------------------- /src/pip/_internal/cli/spinners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/cli/spinners.py -------------------------------------------------------------------------------- /src/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/cli/status_codes.py -------------------------------------------------------------------------------- /src/pip/_internal/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/commands/__init__.py -------------------------------------------------------------------------------- /src/pip/_internal/commands/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/commands/cache.py -------------------------------------------------------------------------------- /src/pip/_internal/commands/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/commands/check.py -------------------------------------------------------------------------------- /src/pip/_internal/commands/completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/commands/completion.py -------------------------------------------------------------------------------- /src/pip/_internal/commands/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/commands/configuration.py -------------------------------------------------------------------------------- /src/pip/_internal/commands/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/commands/debug.py -------------------------------------------------------------------------------- /src/pip/_internal/commands/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/commands/download.py -------------------------------------------------------------------------------- /src/pip/_internal/commands/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/commands/freeze.py -------------------------------------------------------------------------------- /src/pip/_internal/commands/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/commands/hash.py -------------------------------------------------------------------------------- /src/pip/_internal/commands/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/commands/help.py -------------------------------------------------------------------------------- /src/pip/_internal/commands/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/commands/index.py -------------------------------------------------------------------------------- /src/pip/_internal/commands/inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/commands/inspect.py -------------------------------------------------------------------------------- /src/pip/_internal/commands/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/commands/install.py -------------------------------------------------------------------------------- /src/pip/_internal/commands/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/commands/list.py -------------------------------------------------------------------------------- /src/pip/_internal/commands/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/commands/search.py -------------------------------------------------------------------------------- /src/pip/_internal/commands/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/commands/show.py -------------------------------------------------------------------------------- /src/pip/_internal/commands/uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/commands/uninstall.py -------------------------------------------------------------------------------- /src/pip/_internal/commands/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/commands/wheel.py -------------------------------------------------------------------------------- /src/pip/_internal/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/configuration.py -------------------------------------------------------------------------------- /src/pip/_internal/distributions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/distributions/__init__.py -------------------------------------------------------------------------------- /src/pip/_internal/distributions/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/distributions/base.py -------------------------------------------------------------------------------- /src/pip/_internal/distributions/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/distributions/sdist.py -------------------------------------------------------------------------------- /src/pip/_internal/distributions/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/distributions/wheel.py -------------------------------------------------------------------------------- /src/pip/_internal/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/exceptions.py -------------------------------------------------------------------------------- /src/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /src/pip/_internal/index/collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/index/collector.py -------------------------------------------------------------------------------- /src/pip/_internal/index/package_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/index/package_finder.py -------------------------------------------------------------------------------- /src/pip/_internal/index/sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/index/sources.py -------------------------------------------------------------------------------- /src/pip/_internal/locations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/locations/__init__.py -------------------------------------------------------------------------------- /src/pip/_internal/locations/_distutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/locations/_distutils.py -------------------------------------------------------------------------------- /src/pip/_internal/locations/_sysconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/locations/_sysconfig.py -------------------------------------------------------------------------------- /src/pip/_internal/locations/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/locations/base.py -------------------------------------------------------------------------------- /src/pip/_internal/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/main.py -------------------------------------------------------------------------------- /src/pip/_internal/metadata/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/metadata/__init__.py -------------------------------------------------------------------------------- /src/pip/_internal/metadata/_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/metadata/_json.py -------------------------------------------------------------------------------- /src/pip/_internal/metadata/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/metadata/base.py -------------------------------------------------------------------------------- /src/pip/_internal/metadata/pkg_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/metadata/pkg_resources.py -------------------------------------------------------------------------------- /src/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/models/__init__.py -------------------------------------------------------------------------------- /src/pip/_internal/models/candidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/models/candidate.py -------------------------------------------------------------------------------- /src/pip/_internal/models/direct_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/models/direct_url.py -------------------------------------------------------------------------------- /src/pip/_internal/models/format_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/models/format_control.py -------------------------------------------------------------------------------- /src/pip/_internal/models/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/models/index.py -------------------------------------------------------------------------------- /src/pip/_internal/models/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/models/link.py -------------------------------------------------------------------------------- /src/pip/_internal/models/scheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/models/scheme.py -------------------------------------------------------------------------------- /src/pip/_internal/models/search_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/models/search_scope.py -------------------------------------------------------------------------------- /src/pip/_internal/models/selection_prefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/models/selection_prefs.py -------------------------------------------------------------------------------- /src/pip/_internal/models/target_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/models/target_python.py -------------------------------------------------------------------------------- /src/pip/_internal/models/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/models/wheel.py -------------------------------------------------------------------------------- /src/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /src/pip/_internal/network/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/network/auth.py -------------------------------------------------------------------------------- /src/pip/_internal/network/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/network/cache.py -------------------------------------------------------------------------------- /src/pip/_internal/network/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/network/download.py -------------------------------------------------------------------------------- /src/pip/_internal/network/lazy_wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/network/lazy_wheel.py -------------------------------------------------------------------------------- /src/pip/_internal/network/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/network/session.py -------------------------------------------------------------------------------- /src/pip/_internal/network/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/network/utils.py -------------------------------------------------------------------------------- /src/pip/_internal/network/xmlrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/network/xmlrpc.py -------------------------------------------------------------------------------- /src/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pip/_internal/operations/build/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/operations/build/wheel.py -------------------------------------------------------------------------------- /src/pip/_internal/operations/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/operations/check.py -------------------------------------------------------------------------------- /src/pip/_internal/operations/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/operations/freeze.py -------------------------------------------------------------------------------- /src/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /src/pip/_internal/operations/prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/operations/prepare.py -------------------------------------------------------------------------------- /src/pip/_internal/pyproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/pyproject.py -------------------------------------------------------------------------------- /src/pip/_internal/req/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/req/__init__.py -------------------------------------------------------------------------------- /src/pip/_internal/req/constructors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/req/constructors.py -------------------------------------------------------------------------------- /src/pip/_internal/req/req_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/req/req_file.py -------------------------------------------------------------------------------- /src/pip/_internal/req/req_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/req/req_install.py -------------------------------------------------------------------------------- /src/pip/_internal/req/req_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/req/req_set.py -------------------------------------------------------------------------------- /src/pip/_internal/req/req_uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/req/req_uninstall.py -------------------------------------------------------------------------------- /src/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pip/_internal/resolution/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/resolution/base.py -------------------------------------------------------------------------------- /src/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pip/_internal/self_outdated_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/self_outdated_check.py -------------------------------------------------------------------------------- /src/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pip/_internal/utils/_jaraco_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/utils/_jaraco_text.py -------------------------------------------------------------------------------- /src/pip/_internal/utils/_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/utils/_log.py -------------------------------------------------------------------------------- /src/pip/_internal/utils/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/utils/appdirs.py -------------------------------------------------------------------------------- /src/pip/_internal/utils/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/utils/compat.py -------------------------------------------------------------------------------- /src/pip/_internal/utils/datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/utils/datetime.py -------------------------------------------------------------------------------- /src/pip/_internal/utils/deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/utils/deprecation.py -------------------------------------------------------------------------------- /src/pip/_internal/utils/egg_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/utils/egg_link.py -------------------------------------------------------------------------------- /src/pip/_internal/utils/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/utils/encoding.py -------------------------------------------------------------------------------- /src/pip/_internal/utils/entrypoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/utils/entrypoints.py -------------------------------------------------------------------------------- /src/pip/_internal/utils/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/utils/filesystem.py -------------------------------------------------------------------------------- /src/pip/_internal/utils/filetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/utils/filetypes.py -------------------------------------------------------------------------------- /src/pip/_internal/utils/glibc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/utils/glibc.py -------------------------------------------------------------------------------- /src/pip/_internal/utils/hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/utils/hashes.py -------------------------------------------------------------------------------- /src/pip/_internal/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/utils/logging.py -------------------------------------------------------------------------------- /src/pip/_internal/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/utils/misc.py -------------------------------------------------------------------------------- /src/pip/_internal/utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/utils/models.py -------------------------------------------------------------------------------- /src/pip/_internal/utils/packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/utils/packaging.py -------------------------------------------------------------------------------- /src/pip/_internal/utils/setuptools_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/utils/setuptools_build.py -------------------------------------------------------------------------------- /src/pip/_internal/utils/subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/utils/subprocess.py -------------------------------------------------------------------------------- /src/pip/_internal/utils/temp_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/utils/temp_dir.py -------------------------------------------------------------------------------- /src/pip/_internal/utils/unpacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/utils/unpacking.py -------------------------------------------------------------------------------- /src/pip/_internal/utils/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/utils/urls.py -------------------------------------------------------------------------------- /src/pip/_internal/utils/virtualenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/utils/virtualenv.py -------------------------------------------------------------------------------- /src/pip/_internal/utils/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/utils/wheel.py -------------------------------------------------------------------------------- /src/pip/_internal/vcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/vcs/__init__.py -------------------------------------------------------------------------------- /src/pip/_internal/vcs/bazaar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/vcs/bazaar.py -------------------------------------------------------------------------------- /src/pip/_internal/vcs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/vcs/git.py -------------------------------------------------------------------------------- /src/pip/_internal/vcs/mercurial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/vcs/mercurial.py -------------------------------------------------------------------------------- /src/pip/_internal/vcs/subversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/vcs/subversion.py -------------------------------------------------------------------------------- /src/pip/_internal/vcs/versioncontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/vcs/versioncontrol.py -------------------------------------------------------------------------------- /src/pip/_internal/wheel_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_internal/wheel_builder.py -------------------------------------------------------------------------------- /src/pip/_vendor/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/README.rst -------------------------------------------------------------------------------- /src/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /src/pip/_vendor/cachecontrol.pyi: -------------------------------------------------------------------------------- 1 | from cachecontrol import * -------------------------------------------------------------------------------- /src/pip/_vendor/cachecontrol/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/cachecontrol/LICENSE.txt -------------------------------------------------------------------------------- /src/pip/_vendor/cachecontrol/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/cachecontrol/__init__.py -------------------------------------------------------------------------------- /src/pip/_vendor/cachecontrol/_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/cachecontrol/_cmd.py -------------------------------------------------------------------------------- /src/pip/_vendor/cachecontrol/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/cachecontrol/adapter.py -------------------------------------------------------------------------------- /src/pip/_vendor/cachecontrol/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/cachecontrol/cache.py -------------------------------------------------------------------------------- /src/pip/_vendor/cachecontrol/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/cachecontrol/compat.py -------------------------------------------------------------------------------- /src/pip/_vendor/cachecontrol/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/cachecontrol/controller.py -------------------------------------------------------------------------------- /src/pip/_vendor/cachecontrol/filewrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/cachecontrol/filewrapper.py -------------------------------------------------------------------------------- /src/pip/_vendor/cachecontrol/heuristics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/cachecontrol/heuristics.py -------------------------------------------------------------------------------- /src/pip/_vendor/cachecontrol/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/cachecontrol/serialize.py -------------------------------------------------------------------------------- /src/pip/_vendor/cachecontrol/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/cachecontrol/wrapper.py -------------------------------------------------------------------------------- /src/pip/_vendor/certifi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/certifi/LICENSE -------------------------------------------------------------------------------- /src/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/certifi/__init__.py -------------------------------------------------------------------------------- /src/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/certifi/__main__.py -------------------------------------------------------------------------------- /src/pip/_vendor/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/certifi/cacert.pem -------------------------------------------------------------------------------- /src/pip/_vendor/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/certifi/core.py -------------------------------------------------------------------------------- /src/pip/_vendor/certifi/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/LICENSE -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/__init__.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/big5freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/big5freq.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/big5prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/big5prober.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/charsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/charsetprober.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/cli/chardetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/cli/chardetect.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/cp949prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/cp949prober.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/enums.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/escprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/escprober.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/escsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/escsm.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/eucjpprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/eucjpprober.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/euckrfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/euckrfreq.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/euckrprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/euckrprober.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/euctwfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/euctwfreq.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/euctwprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/euctwprober.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/gb2312freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/gb2312freq.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/gb2312prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/gb2312prober.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/hebrewprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/hebrewprober.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/jisfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/jisfreq.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/johabfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/johabfreq.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/johabprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/johabprober.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/jpcntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/jpcntx.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/langgreekmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/langgreekmodel.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/langthaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/langthaimodel.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/latin1prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/latin1prober.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/macromanprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/macromanprober.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/mbcssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/mbcssm.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/metadata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/resultdict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/resultdict.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/sjisprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/sjisprober.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/utf1632prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/utf1632prober.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/utf8prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/utf8prober.py -------------------------------------------------------------------------------- /src/pip/_vendor/chardet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/chardet/version.py -------------------------------------------------------------------------------- /src/pip/_vendor/colorama.pyi: -------------------------------------------------------------------------------- 1 | from colorama import * -------------------------------------------------------------------------------- /src/pip/_vendor/colorama/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/colorama/LICENSE.txt -------------------------------------------------------------------------------- /src/pip/_vendor/colorama/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/colorama/__init__.py -------------------------------------------------------------------------------- /src/pip/_vendor/colorama/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/colorama/ansi.py -------------------------------------------------------------------------------- /src/pip/_vendor/colorama/ansitowin32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/colorama/ansitowin32.py -------------------------------------------------------------------------------- /src/pip/_vendor/colorama/initialise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/colorama/initialise.py -------------------------------------------------------------------------------- /src/pip/_vendor/colorama/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. 2 | -------------------------------------------------------------------------------- /src/pip/_vendor/colorama/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/colorama/tests/utils.py -------------------------------------------------------------------------------- /src/pip/_vendor/colorama/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/colorama/win32.py -------------------------------------------------------------------------------- /src/pip/_vendor/colorama/winterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/colorama/winterm.py -------------------------------------------------------------------------------- /src/pip/_vendor/distlib.pyi: -------------------------------------------------------------------------------- 1 | from distlib import * -------------------------------------------------------------------------------- /src/pip/_vendor/distlib/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/distlib/LICENSE.txt -------------------------------------------------------------------------------- /src/pip/_vendor/distlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/distlib/__init__.py -------------------------------------------------------------------------------- /src/pip/_vendor/distlib/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/distlib/compat.py -------------------------------------------------------------------------------- /src/pip/_vendor/distlib/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/distlib/database.py -------------------------------------------------------------------------------- /src/pip/_vendor/distlib/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/distlib/index.py -------------------------------------------------------------------------------- /src/pip/_vendor/distlib/locators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/distlib/locators.py -------------------------------------------------------------------------------- /src/pip/_vendor/distlib/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/distlib/manifest.py -------------------------------------------------------------------------------- /src/pip/_vendor/distlib/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/distlib/markers.py -------------------------------------------------------------------------------- /src/pip/_vendor/distlib/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/distlib/metadata.py -------------------------------------------------------------------------------- /src/pip/_vendor/distlib/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/distlib/resources.py -------------------------------------------------------------------------------- /src/pip/_vendor/distlib/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/distlib/scripts.py -------------------------------------------------------------------------------- /src/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /src/pip/_vendor/distlib/t64-arm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/distlib/t64-arm.exe -------------------------------------------------------------------------------- /src/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /src/pip/_vendor/distlib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/distlib/util.py -------------------------------------------------------------------------------- /src/pip/_vendor/distlib/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/distlib/version.py -------------------------------------------------------------------------------- /src/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /src/pip/_vendor/distlib/w64-arm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/distlib/w64-arm.exe -------------------------------------------------------------------------------- /src/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /src/pip/_vendor/distlib/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/distlib/wheel.py -------------------------------------------------------------------------------- /src/pip/_vendor/distro/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/distro/LICENSE -------------------------------------------------------------------------------- /src/pip/_vendor/distro/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/distro/__init__.py -------------------------------------------------------------------------------- /src/pip/_vendor/distro/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/distro/__main__.py -------------------------------------------------------------------------------- /src/pip/_vendor/distro/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/distro/distro.py -------------------------------------------------------------------------------- /src/pip/_vendor/distro/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pip/_vendor/idna/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/idna/LICENSE.md -------------------------------------------------------------------------------- /src/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/idna/__init__.py -------------------------------------------------------------------------------- /src/pip/_vendor/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/idna/codec.py -------------------------------------------------------------------------------- /src/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/idna/compat.py -------------------------------------------------------------------------------- /src/pip/_vendor/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/idna/core.py -------------------------------------------------------------------------------- /src/pip/_vendor/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/idna/idnadata.py -------------------------------------------------------------------------------- /src/pip/_vendor/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/idna/intranges.py -------------------------------------------------------------------------------- /src/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.4' 2 | 3 | -------------------------------------------------------------------------------- /src/pip/_vendor/idna/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pip/_vendor/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/idna/uts46data.py -------------------------------------------------------------------------------- /src/pip/_vendor/msgpack.pyi: -------------------------------------------------------------------------------- 1 | from msgpack import * -------------------------------------------------------------------------------- /src/pip/_vendor/msgpack/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/msgpack/COPYING -------------------------------------------------------------------------------- /src/pip/_vendor/msgpack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/msgpack/__init__.py -------------------------------------------------------------------------------- /src/pip/_vendor/msgpack/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/msgpack/exceptions.py -------------------------------------------------------------------------------- /src/pip/_vendor/msgpack/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/msgpack/ext.py -------------------------------------------------------------------------------- /src/pip/_vendor/msgpack/fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/msgpack/fallback.py -------------------------------------------------------------------------------- /src/pip/_vendor/packaging/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/packaging/LICENSE -------------------------------------------------------------------------------- /src/pip/_vendor/packaging/LICENSE.APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/packaging/LICENSE.APACHE -------------------------------------------------------------------------------- /src/pip/_vendor/packaging/LICENSE.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/packaging/LICENSE.BSD -------------------------------------------------------------------------------- /src/pip/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/packaging/__about__.py -------------------------------------------------------------------------------- /src/pip/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/packaging/__init__.py -------------------------------------------------------------------------------- /src/pip/_vendor/packaging/_manylinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/packaging/_manylinux.py -------------------------------------------------------------------------------- /src/pip/_vendor/packaging/_musllinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/packaging/_musllinux.py -------------------------------------------------------------------------------- /src/pip/_vendor/packaging/_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/packaging/_structures.py -------------------------------------------------------------------------------- /src/pip/_vendor/packaging/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/packaging/markers.py -------------------------------------------------------------------------------- /src/pip/_vendor/packaging/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pip/_vendor/packaging/requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/packaging/requirements.py -------------------------------------------------------------------------------- /src/pip/_vendor/packaging/specifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/packaging/specifiers.py -------------------------------------------------------------------------------- /src/pip/_vendor/packaging/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/packaging/tags.py -------------------------------------------------------------------------------- /src/pip/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/packaging/utils.py -------------------------------------------------------------------------------- /src/pip/_vendor/packaging/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/packaging/version.py -------------------------------------------------------------------------------- /src/pip/_vendor/pkg_resources.pyi: -------------------------------------------------------------------------------- 1 | from pkg_resources import * -------------------------------------------------------------------------------- /src/pip/_vendor/pkg_resources/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pkg_resources/LICENSE -------------------------------------------------------------------------------- /src/pip/_vendor/pkg_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pkg_resources/__init__.py -------------------------------------------------------------------------------- /src/pip/_vendor/platformdirs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/platformdirs/LICENSE -------------------------------------------------------------------------------- /src/pip/_vendor/platformdirs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/platformdirs/__init__.py -------------------------------------------------------------------------------- /src/pip/_vendor/platformdirs/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/platformdirs/__main__.py -------------------------------------------------------------------------------- /src/pip/_vendor/platformdirs/android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/platformdirs/android.py -------------------------------------------------------------------------------- /src/pip/_vendor/platformdirs/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/platformdirs/api.py -------------------------------------------------------------------------------- /src/pip/_vendor/platformdirs/macos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/platformdirs/macos.py -------------------------------------------------------------------------------- /src/pip/_vendor/platformdirs/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pip/_vendor/platformdirs/unix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/platformdirs/unix.py -------------------------------------------------------------------------------- /src/pip/_vendor/platformdirs/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/platformdirs/version.py -------------------------------------------------------------------------------- /src/pip/_vendor/platformdirs/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/platformdirs/windows.py -------------------------------------------------------------------------------- /src/pip/_vendor/pygments.pyi: -------------------------------------------------------------------------------- 1 | from pygments import * -------------------------------------------------------------------------------- /src/pip/_vendor/pygments/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pygments/LICENSE -------------------------------------------------------------------------------- /src/pip/_vendor/pygments/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pygments/__init__.py -------------------------------------------------------------------------------- /src/pip/_vendor/pygments/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pygments/__main__.py -------------------------------------------------------------------------------- /src/pip/_vendor/pygments/cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pygments/cmdline.py -------------------------------------------------------------------------------- /src/pip/_vendor/pygments/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pygments/console.py -------------------------------------------------------------------------------- /src/pip/_vendor/pygments/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pygments/filter.py -------------------------------------------------------------------------------- /src/pip/_vendor/pygments/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pygments/formatter.py -------------------------------------------------------------------------------- /src/pip/_vendor/pygments/lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pygments/lexer.py -------------------------------------------------------------------------------- /src/pip/_vendor/pygments/lexers/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pygments/lexers/python.py -------------------------------------------------------------------------------- /src/pip/_vendor/pygments/modeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pygments/modeline.py -------------------------------------------------------------------------------- /src/pip/_vendor/pygments/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pygments/plugin.py -------------------------------------------------------------------------------- /src/pip/_vendor/pygments/regexopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pygments/regexopt.py -------------------------------------------------------------------------------- /src/pip/_vendor/pygments/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pygments/scanner.py -------------------------------------------------------------------------------- /src/pip/_vendor/pygments/sphinxext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pygments/sphinxext.py -------------------------------------------------------------------------------- /src/pip/_vendor/pygments/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pygments/style.py -------------------------------------------------------------------------------- /src/pip/_vendor/pygments/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pygments/token.py -------------------------------------------------------------------------------- /src/pip/_vendor/pygments/unistring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pygments/unistring.py -------------------------------------------------------------------------------- /src/pip/_vendor/pygments/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pygments/util.py -------------------------------------------------------------------------------- /src/pip/_vendor/pyparsing/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pyparsing/LICENSE -------------------------------------------------------------------------------- /src/pip/_vendor/pyparsing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pyparsing/__init__.py -------------------------------------------------------------------------------- /src/pip/_vendor/pyparsing/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pyparsing/actions.py -------------------------------------------------------------------------------- /src/pip/_vendor/pyparsing/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pyparsing/common.py -------------------------------------------------------------------------------- /src/pip/_vendor/pyparsing/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pyparsing/core.py -------------------------------------------------------------------------------- /src/pip/_vendor/pyparsing/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pyparsing/exceptions.py -------------------------------------------------------------------------------- /src/pip/_vendor/pyparsing/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pyparsing/helpers.py -------------------------------------------------------------------------------- /src/pip/_vendor/pyparsing/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pip/_vendor/pyparsing/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pyparsing/results.py -------------------------------------------------------------------------------- /src/pip/_vendor/pyparsing/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pyparsing/testing.py -------------------------------------------------------------------------------- /src/pip/_vendor/pyparsing/unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pyparsing/unicode.py -------------------------------------------------------------------------------- /src/pip/_vendor/pyparsing/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pyparsing/util.py -------------------------------------------------------------------------------- /src/pip/_vendor/pyproject_hooks.pyi: -------------------------------------------------------------------------------- 1 | from pyproject_hooks import * -------------------------------------------------------------------------------- /src/pip/_vendor/pyproject_hooks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pyproject_hooks/LICENSE -------------------------------------------------------------------------------- /src/pip/_vendor/pyproject_hooks/_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/pyproject_hooks/_impl.py -------------------------------------------------------------------------------- /src/pip/_vendor/requests.pyi: -------------------------------------------------------------------------------- 1 | from requests import * -------------------------------------------------------------------------------- /src/pip/_vendor/requests/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/requests/LICENSE -------------------------------------------------------------------------------- /src/pip/_vendor/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/requests/__init__.py -------------------------------------------------------------------------------- /src/pip/_vendor/requests/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/requests/__version__.py -------------------------------------------------------------------------------- /src/pip/_vendor/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/requests/adapters.py -------------------------------------------------------------------------------- /src/pip/_vendor/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/requests/api.py -------------------------------------------------------------------------------- /src/pip/_vendor/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/requests/auth.py -------------------------------------------------------------------------------- /src/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/requests/certs.py -------------------------------------------------------------------------------- /src/pip/_vendor/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/requests/compat.py -------------------------------------------------------------------------------- /src/pip/_vendor/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/requests/cookies.py -------------------------------------------------------------------------------- /src/pip/_vendor/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/requests/exceptions.py -------------------------------------------------------------------------------- /src/pip/_vendor/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/requests/help.py -------------------------------------------------------------------------------- /src/pip/_vendor/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/requests/hooks.py -------------------------------------------------------------------------------- /src/pip/_vendor/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/requests/models.py -------------------------------------------------------------------------------- /src/pip/_vendor/requests/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/requests/packages.py -------------------------------------------------------------------------------- /src/pip/_vendor/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/requests/sessions.py -------------------------------------------------------------------------------- /src/pip/_vendor/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/requests/status_codes.py -------------------------------------------------------------------------------- /src/pip/_vendor/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/requests/structures.py -------------------------------------------------------------------------------- /src/pip/_vendor/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/requests/utils.py -------------------------------------------------------------------------------- /src/pip/_vendor/resolvelib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/resolvelib/LICENSE -------------------------------------------------------------------------------- /src/pip/_vendor/resolvelib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/resolvelib/__init__.py -------------------------------------------------------------------------------- /src/pip/_vendor/resolvelib/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/resolvelib/__init__.pyi -------------------------------------------------------------------------------- /src/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pip/_vendor/resolvelib/compat/collections_abc.pyi: -------------------------------------------------------------------------------- 1 | from collections.abc import Mapping, Sequence 2 | -------------------------------------------------------------------------------- /src/pip/_vendor/resolvelib/providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/resolvelib/providers.py -------------------------------------------------------------------------------- /src/pip/_vendor/resolvelib/providers.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/resolvelib/providers.pyi -------------------------------------------------------------------------------- /src/pip/_vendor/resolvelib/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pip/_vendor/resolvelib/reporters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/resolvelib/reporters.py -------------------------------------------------------------------------------- /src/pip/_vendor/resolvelib/reporters.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/resolvelib/reporters.pyi -------------------------------------------------------------------------------- /src/pip/_vendor/resolvelib/resolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/resolvelib/resolvers.py -------------------------------------------------------------------------------- /src/pip/_vendor/resolvelib/resolvers.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/resolvelib/resolvers.pyi -------------------------------------------------------------------------------- /src/pip/_vendor/resolvelib/structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/resolvelib/structs.py -------------------------------------------------------------------------------- /src/pip/_vendor/resolvelib/structs.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/resolvelib/structs.pyi -------------------------------------------------------------------------------- /src/pip/_vendor/rich/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/LICENSE -------------------------------------------------------------------------------- /src/pip/_vendor/rich/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/__init__.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/__main__.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/_cell_widths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/_cell_widths.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/_emoji_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/_emoji_codes.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/_emoji_replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/_emoji_replace.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/_export_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/_export_format.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/_extension.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/_fileno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/_fileno.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/_inspect.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/_log_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/_log_render.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/_loop.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/_null_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/_null_file.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/_palettes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/_palettes.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/_pick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/_pick.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/_ratio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/_ratio.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/_spinners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/_spinners.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/_stack.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/_timer.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/_win32_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/_win32_console.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/_windows.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/_windows_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/_windows_renderer.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/_wrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/_wrap.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/abc.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/align.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/ansi.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/bar.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/box.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/cells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/cells.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/color.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/color_triplet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/color_triplet.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/columns.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/console.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/constrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/constrain.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/containers.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/control.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/default_styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/default_styles.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/diagnose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/diagnose.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/emoji.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/emoji.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/errors.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/file_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/file_proxy.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/filesize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/filesize.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/highlighter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/highlighter.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/json.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/jupyter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/jupyter.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/layout.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/live.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/live_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/live_render.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/logging.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/markup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/markup.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/measure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/measure.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/padding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/padding.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/pager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/pager.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/palette.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/panel.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/pretty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/pretty.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/progress.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/progress_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/progress_bar.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/prompt.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/protocol.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pip/_vendor/rich/region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/region.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/repr.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/rule.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/scope.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/screen.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/segment.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/spinner.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/status.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/style.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/styled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/styled.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/syntax.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/table.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/terminal_theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/terminal_theme.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/text.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/theme.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/themes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/themes.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/traceback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/traceback.py -------------------------------------------------------------------------------- /src/pip/_vendor/rich/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/rich/tree.py -------------------------------------------------------------------------------- /src/pip/_vendor/six.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/six.LICENSE -------------------------------------------------------------------------------- /src/pip/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/six.py -------------------------------------------------------------------------------- /src/pip/_vendor/six/__init__.pyi: -------------------------------------------------------------------------------- 1 | from six import * -------------------------------------------------------------------------------- /src/pip/_vendor/six/moves/__init__.pyi: -------------------------------------------------------------------------------- 1 | from six.moves import * -------------------------------------------------------------------------------- /src/pip/_vendor/six/moves/configparser.pyi: -------------------------------------------------------------------------------- 1 | from six.moves.configparser import * -------------------------------------------------------------------------------- /src/pip/_vendor/tenacity/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/tenacity/LICENSE -------------------------------------------------------------------------------- /src/pip/_vendor/tenacity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/tenacity/__init__.py -------------------------------------------------------------------------------- /src/pip/_vendor/tenacity/_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/tenacity/_asyncio.py -------------------------------------------------------------------------------- /src/pip/_vendor/tenacity/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/tenacity/_utils.py -------------------------------------------------------------------------------- /src/pip/_vendor/tenacity/after.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/tenacity/after.py -------------------------------------------------------------------------------- /src/pip/_vendor/tenacity/before.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/tenacity/before.py -------------------------------------------------------------------------------- /src/pip/_vendor/tenacity/before_sleep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/tenacity/before_sleep.py -------------------------------------------------------------------------------- /src/pip/_vendor/tenacity/nap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/tenacity/nap.py -------------------------------------------------------------------------------- /src/pip/_vendor/tenacity/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pip/_vendor/tenacity/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/tenacity/retry.py -------------------------------------------------------------------------------- /src/pip/_vendor/tenacity/stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/tenacity/stop.py -------------------------------------------------------------------------------- /src/pip/_vendor/tenacity/tornadoweb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/tenacity/tornadoweb.py -------------------------------------------------------------------------------- /src/pip/_vendor/tenacity/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/tenacity/wait.py -------------------------------------------------------------------------------- /src/pip/_vendor/tomli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/tomli/LICENSE -------------------------------------------------------------------------------- /src/pip/_vendor/tomli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/tomli/__init__.py -------------------------------------------------------------------------------- /src/pip/_vendor/tomli/_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/tomli/_parser.py -------------------------------------------------------------------------------- /src/pip/_vendor/tomli/_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/tomli/_re.py -------------------------------------------------------------------------------- /src/pip/_vendor/tomli/_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/tomli/_types.py -------------------------------------------------------------------------------- /src/pip/_vendor/tomli/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561 2 | -------------------------------------------------------------------------------- /src/pip/_vendor/typing_extensions.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/typing_extensions.LICENSE -------------------------------------------------------------------------------- /src/pip/_vendor/typing_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/typing_extensions.py -------------------------------------------------------------------------------- /src/pip/_vendor/typing_extensions.pyi: -------------------------------------------------------------------------------- 1 | from typing_extensions import * -------------------------------------------------------------------------------- /src/pip/_vendor/urllib3.pyi: -------------------------------------------------------------------------------- 1 | from urllib3 import * -------------------------------------------------------------------------------- /src/pip/_vendor/urllib3/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/urllib3/LICENSE.txt -------------------------------------------------------------------------------- /src/pip/_vendor/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/urllib3/__init__.py -------------------------------------------------------------------------------- /src/pip/_vendor/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/urllib3/_collections.py -------------------------------------------------------------------------------- /src/pip/_vendor/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.16" 3 | -------------------------------------------------------------------------------- /src/pip/_vendor/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/urllib3/connection.py -------------------------------------------------------------------------------- /src/pip/_vendor/urllib3/connectionpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/urllib3/connectionpool.py -------------------------------------------------------------------------------- /src/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pip/_vendor/urllib3/contrib/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/urllib3/contrib/socks.py -------------------------------------------------------------------------------- /src/pip/_vendor/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/urllib3/exceptions.py -------------------------------------------------------------------------------- /src/pip/_vendor/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/urllib3/fields.py -------------------------------------------------------------------------------- /src/pip/_vendor/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/urllib3/filepost.py -------------------------------------------------------------------------------- /src/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pip/_vendor/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/urllib3/packages/six.py -------------------------------------------------------------------------------- /src/pip/_vendor/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/urllib3/poolmanager.py -------------------------------------------------------------------------------- /src/pip/_vendor/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/urllib3/request.py -------------------------------------------------------------------------------- /src/pip/_vendor/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/urllib3/response.py -------------------------------------------------------------------------------- /src/pip/_vendor/urllib3/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/urllib3/util/__init__.py -------------------------------------------------------------------------------- /src/pip/_vendor/urllib3/util/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/urllib3/util/proxy.py -------------------------------------------------------------------------------- /src/pip/_vendor/urllib3/util/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/urllib3/util/queue.py -------------------------------------------------------------------------------- /src/pip/_vendor/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/urllib3/util/request.py -------------------------------------------------------------------------------- /src/pip/_vendor/urllib3/util/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/urllib3/util/response.py -------------------------------------------------------------------------------- /src/pip/_vendor/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/urllib3/util/retry.py -------------------------------------------------------------------------------- /src/pip/_vendor/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /src/pip/_vendor/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/urllib3/util/timeout.py -------------------------------------------------------------------------------- /src/pip/_vendor/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/urllib3/util/url.py -------------------------------------------------------------------------------- /src/pip/_vendor/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/urllib3/util/wait.py -------------------------------------------------------------------------------- /src/pip/_vendor/vendor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/vendor.txt -------------------------------------------------------------------------------- /src/pip/_vendor/webencodings.pyi: -------------------------------------------------------------------------------- 1 | from webencodings import * -------------------------------------------------------------------------------- /src/pip/_vendor/webencodings/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/webencodings/LICENSE -------------------------------------------------------------------------------- /src/pip/_vendor/webencodings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/webencodings/__init__.py -------------------------------------------------------------------------------- /src/pip/_vendor/webencodings/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/webencodings/labels.py -------------------------------------------------------------------------------- /src/pip/_vendor/webencodings/mklabels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/webencodings/mklabels.py -------------------------------------------------------------------------------- /src/pip/_vendor/webencodings/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/_vendor/webencodings/tests.py -------------------------------------------------------------------------------- /src/pip/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/src/pip/py.typed -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/completion_paths/README.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/completion_paths/REPLAY/video.mpeg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/completion_paths/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/completion_paths/resources/images/icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/indexes/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/indexes/README.txt -------------------------------------------------------------------------------- /tests/data/indexes/dev/bar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/indexes/dev/bar/index.html -------------------------------------------------------------------------------- /tests/data/indexes/empty_with_pkg/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/indexes/in dex/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/indexes/in dex/README.txt -------------------------------------------------------------------------------- /tests/data/indexes/pre/bar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/indexes/pre/bar/index.html -------------------------------------------------------------------------------- /tests/data/packages/BrokenEmitsUTF8/broken.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/packages/FSPkg/fspkg/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /tests/data/packages/FSPkg/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/packages/FSPkg/setup.py -------------------------------------------------------------------------------- /tests/data/packages/INITools-0.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/packages/INITools-0.2.tar.gz -------------------------------------------------------------------------------- /tests/data/packages/LineEndings/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/packages/LineEndings/setup.py -------------------------------------------------------------------------------- /tests/data/packages/LocalEnvironMarker/.gitignore: -------------------------------------------------------------------------------- 1 | /LocalEnvironMarker.egg-info 2 | -------------------------------------------------------------------------------- /tests/data/packages/LocalEnvironMarker/localenvironmarker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/packages/LocalExtras-0.0.2/.gitignore: -------------------------------------------------------------------------------- 1 | /LocalExtras-0.0.2.egg-info 2 | -------------------------------------------------------------------------------- /tests/data/packages/LocalExtras-0.0.2/localextras/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/packages/LocalExtras/.gitignore: -------------------------------------------------------------------------------- 1 | /LocalExtras.egg-info 2 | -------------------------------------------------------------------------------- /tests/data/packages/LocalExtras/localextras/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/packages/LocalExtras/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/packages/LocalExtras/setup.py -------------------------------------------------------------------------------- /tests/data/packages/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/packages/README.txt -------------------------------------------------------------------------------- /tests/data/packages/SetupPyUTF8/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/packages/SetupPyUTF8/setup.py -------------------------------------------------------------------------------- /tests/data/packages/Upper-1.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/packages/Upper-1.0.tar.gz -------------------------------------------------------------------------------- /tests/data/packages/Upper-2.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/packages/Upper-2.0.tar.gz -------------------------------------------------------------------------------- /tests/data/packages/argparse-1.2.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/packages/argparse-1.2.1.tar.gz -------------------------------------------------------------------------------- /tests/data/packages/broken-0.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/packages/broken-0.1.tar.gz -------------------------------------------------------------------------------- /tests/data/packages/child-0.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/packages/child-0.1.tar.gz -------------------------------------------------------------------------------- /tests/data/packages/distribute-0.7.3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/packages/distribute-0.7.3.zip -------------------------------------------------------------------------------- /tests/data/packages/duplicate-1.0.tar.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/packages/gmpy-1.15.tar.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/packages/gmpy2-2.0.tar.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/packages/invalid.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/packages/parent-0.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/packages/parent-0.1.tar.gz -------------------------------------------------------------------------------- /tests/data/packages/pep517_setup_and_pyproject/setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | name = pep517-setup-and-pyproject 3 | version = 1.0 4 | -------------------------------------------------------------------------------- /tests/data/packages/pep517_wrapper_buildsys/setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | name = pep517-wrapper-buildsys 3 | version = 1.0 4 | -------------------------------------------------------------------------------- /tests/data/packages/pep518-3.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/packages/pep518-3.0.tar.gz -------------------------------------------------------------------------------- /tests/data/packages/pkgwithmpkg-1.0-py2.7-macosx10.7.mpkg.zip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/packages/pkgwithmpkg-1.0.tar.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/packages/priority-1.0-py2.py3-none-any.whl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/packages/priority-1.0.tar.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/packages/requires_wheelbroken_upper/requires_wheelbroken_upper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/packages/simple-1.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/packages/simple-1.0.tar.gz -------------------------------------------------------------------------------- /tests/data/packages/simple-2.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/packages/simple-2.0.tar.gz -------------------------------------------------------------------------------- /tests/data/packages/simple-3.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/packages/simple-3.0.tar.gz -------------------------------------------------------------------------------- /tests/data/packages/simple2-1.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/packages/simple2-1.0.tar.gz -------------------------------------------------------------------------------- /tests/data/packages/simple2-2.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/packages/simple2-2.0.tar.gz -------------------------------------------------------------------------------- /tests/data/packages/simple2-3.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/packages/simple2-3.0.tar.gz -------------------------------------------------------------------------------- /tests/data/packages/source-1.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/packages/source-1.0.tar.gz -------------------------------------------------------------------------------- /tests/data/packages/symlinks/doc/intro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/packages/symlinks/docs: -------------------------------------------------------------------------------- 1 | IntxLNKdoc -------------------------------------------------------------------------------- /tests/data/packages/symlinks/setup.cfg: -------------------------------------------------------------------------------- 1 | [egg_info] 2 | tag_build = dev 3 | -------------------------------------------------------------------------------- /tests/data/packages/symlinks/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/packages/symlinks/setup.py -------------------------------------------------------------------------------- /tests/data/packages/symlinks/symlinks/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /tests/data/packages/test_tar.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/packages/test_tar.tgz -------------------------------------------------------------------------------- /tests/data/packages/test_zip.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/packages/test_zip.zip -------------------------------------------------------------------------------- /tests/data/packages2/duplicate-1.0.tar.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/packages3/dinner/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/packages3/dinner/index.html -------------------------------------------------------------------------------- /tests/data/packages3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/packages3/index.html -------------------------------------------------------------------------------- /tests/data/reqfiles/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/reqfiles/README.txt -------------------------------------------------------------------------------- /tests/data/src/TopoRequires/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/src/TopoRequires/setup.py -------------------------------------------------------------------------------- /tests/data/src/TopoRequires/toporequires/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/src/TopoRequires2/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/src/TopoRequires2/setup.py -------------------------------------------------------------------------------- /tests/data/src/TopoRequires2/toporequires2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/src/TopoRequires3/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/src/TopoRequires3/setup.py -------------------------------------------------------------------------------- /tests/data/src/TopoRequires3/toporequires3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/src/TopoRequires4/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/src/TopoRequires4/setup.py -------------------------------------------------------------------------------- /tests/data/src/TopoRequires4/toporequires4/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/src/chattymodule/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/src/chattymodule/setup.cfg -------------------------------------------------------------------------------- /tests/data/src/chattymodule/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/src/chattymodule/setup.py -------------------------------------------------------------------------------- /tests/data/src/compilewheel/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/src/compilewheel/setup.cfg -------------------------------------------------------------------------------- /tests/data/src/compilewheel/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/src/compilewheel/setup.py -------------------------------------------------------------------------------- /tests/data/src/extension/extension.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/src/extension/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/src/extension/setup.py -------------------------------------------------------------------------------- /tests/data/src/pep517_setup_cfg_only/setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | name = "dummy" 3 | version = "0.1" 4 | -------------------------------------------------------------------------------- /tests/data/src/pep517_setup_only/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/src/pep517_setup_only/setup.py -------------------------------------------------------------------------------- /tests/data/src/pep518-3.0/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include pyproject.toml 2 | -------------------------------------------------------------------------------- /tests/data/src/pep518-3.0/pep518.py: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /tests/data/src/pep518-3.0/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/src/pep518-3.0/pyproject.toml -------------------------------------------------------------------------------- /tests/data/src/pep518-3.0/setup.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/src/pep518-3.0/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/src/pep518-3.0/setup.py -------------------------------------------------------------------------------- /tests/data/src/pep518_conflicting_requires/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include pyproject.toml 2 | -------------------------------------------------------------------------------- /tests/data/src/pep518_conflicting_requires/pep518.py: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /tests/data/src/pep518_conflicting_requires/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["setuptools==1.0", "wheel"] 3 | -------------------------------------------------------------------------------- /tests/data/src/pep518_forkbomb-235/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include pyproject.toml 2 | -------------------------------------------------------------------------------- /tests/data/src/pep518_forkbomb-235/pep518_forkbomb.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/src/pep518_forkbomb-235/setup.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/src/pep518_invalid_build_system/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include pyproject.toml 2 | -------------------------------------------------------------------------------- /tests/data/src/pep518_invalid_build_system/pep518.py: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /tests/data/src/pep518_invalid_build_system/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | # This table is intentionally empty. 3 | -------------------------------------------------------------------------------- /tests/data/src/pep518_invalid_requires/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include pyproject.toml 2 | -------------------------------------------------------------------------------- /tests/data/src/pep518_invalid_requires/pep518.py: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /tests/data/src/pep518_invalid_requires/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = [1, 2, 3] # not a list of strings 3 | -------------------------------------------------------------------------------- /tests/data/src/pep518_missing_requires/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include pyproject.toml 2 | -------------------------------------------------------------------------------- /tests/data/src/pep518_missing_requires/pep518.py: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /tests/data/src/pep518_missing_requires/pyproject.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/src/pep518_twin_forkbombs_first-234/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include pyproject.toml 2 | -------------------------------------------------------------------------------- /tests/data/src/pep518_twin_forkbombs_first-234/pep518_twin_forkbombs_first.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/src/pep518_twin_forkbombs_first-234/setup.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/src/pep518_twin_forkbombs_second-238/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include pyproject.toml 2 | -------------------------------------------------------------------------------- /tests/data/src/pep518_twin_forkbombs_second-238/pep518_twin_forkbombs_second.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/src/pep518_twin_forkbombs_second-238/setup.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/src/pep518_with_extra_and_markers-1.0/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include pyproject.toml 2 | -------------------------------------------------------------------------------- /tests/data/src/pep518_with_extra_and_markers-1.0/pep518_with_extra_and_markers.py: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /tests/data/src/pep518_with_extra_and_markers-1.0/setup.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/src/pep518_with_namespace_package-1.0/pep518_with_namespace_package.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/src/pep518_with_namespace_package-1.0/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /tests/data/src/prjwithdatafile/prjwithdatafile/somemodule.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/src/prjwithdatafile/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/src/prjwithdatafile/setup.py -------------------------------------------------------------------------------- /tests/data/src/requires_simple/requires_simple/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /tests/data/src/requires_simple/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/src/requires_simple/setup.py -------------------------------------------------------------------------------- /tests/data/src/requires_simple_extra/requires_simple_extra.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/src/requires_simple_extra/setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /tests/data/src/setup_error/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/src/setup_error/setup.py -------------------------------------------------------------------------------- /tests/data/src/simple_namespace/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /tests/data/src/simple_namespace/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/src/simple_namespace/setup.py -------------------------------------------------------------------------------- /tests/data/src/simple_namespace/simple_namespace/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/src/simple_namespace/simple_namespace/module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/src/simplewheel-1.0/setup.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/src/simplewheel-1.0/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/src/simplewheel-1.0/setup.py -------------------------------------------------------------------------------- /tests/data/src/simplewheel-1.0/simplewheel/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.0" 2 | -------------------------------------------------------------------------------- /tests/data/src/simplewheel-2.0/setup.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/src/simplewheel-2.0/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/src/simplewheel-2.0/setup.py -------------------------------------------------------------------------------- /tests/data/src/simplewheel-2.0/simplewheel/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "2.0" 2 | -------------------------------------------------------------------------------- /tests/data/src/singlemodule/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/src/singlemodule/setup.cfg -------------------------------------------------------------------------------- /tests/data/src/singlemodule/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/src/singlemodule/setup.py -------------------------------------------------------------------------------- /tests/data/src/withpyproject/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/data/src/withpyproject/setup.py -------------------------------------------------------------------------------- /tests/functional/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/test_bad_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_bad_url.py -------------------------------------------------------------------------------- /tests/functional/test_broken_stdout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_broken_stdout.py -------------------------------------------------------------------------------- /tests/functional/test_build_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_build_env.py -------------------------------------------------------------------------------- /tests/functional/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_cache.py -------------------------------------------------------------------------------- /tests/functional/test_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_check.py -------------------------------------------------------------------------------- /tests/functional/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_cli.py -------------------------------------------------------------------------------- /tests/functional/test_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_completion.py -------------------------------------------------------------------------------- /tests/functional/test_config_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_config_settings.py -------------------------------------------------------------------------------- /tests/functional/test_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_configuration.py -------------------------------------------------------------------------------- /tests/functional/test_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_debug.py -------------------------------------------------------------------------------- /tests/functional/test_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_download.py -------------------------------------------------------------------------------- /tests/functional/test_fast_deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_fast_deps.py -------------------------------------------------------------------------------- /tests/functional/test_freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_freeze.py -------------------------------------------------------------------------------- /tests/functional/test_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_hash.py -------------------------------------------------------------------------------- /tests/functional/test_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_help.py -------------------------------------------------------------------------------- /tests/functional/test_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_index.py -------------------------------------------------------------------------------- /tests/functional/test_inspect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_inspect.py -------------------------------------------------------------------------------- /tests/functional/test_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_install.py -------------------------------------------------------------------------------- /tests/functional/test_install_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_install_check.py -------------------------------------------------------------------------------- /tests/functional/test_install_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_install_cleanup.py -------------------------------------------------------------------------------- /tests/functional/test_install_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_install_compat.py -------------------------------------------------------------------------------- /tests/functional/test_install_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_install_config.py -------------------------------------------------------------------------------- /tests/functional/test_install_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_install_extras.py -------------------------------------------------------------------------------- /tests/functional/test_install_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_install_index.py -------------------------------------------------------------------------------- /tests/functional/test_install_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_install_report.py -------------------------------------------------------------------------------- /tests/functional/test_install_reqs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_install_reqs.py -------------------------------------------------------------------------------- /tests/functional/test_install_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_install_upgrade.py -------------------------------------------------------------------------------- /tests/functional/test_install_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_install_user.py -------------------------------------------------------------------------------- /tests/functional/test_install_vcs_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_install_vcs_git.py -------------------------------------------------------------------------------- /tests/functional/test_install_wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_install_wheel.py -------------------------------------------------------------------------------- /tests/functional/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_list.py -------------------------------------------------------------------------------- /tests/functional/test_new_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_new_resolver.py -------------------------------------------------------------------------------- /tests/functional/test_no_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_no_color.py -------------------------------------------------------------------------------- /tests/functional/test_pep517.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_pep517.py -------------------------------------------------------------------------------- /tests/functional/test_pep660.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_pep660.py -------------------------------------------------------------------------------- /tests/functional/test_pep668.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_pep668.py -------------------------------------------------------------------------------- /tests/functional/test_python_option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_python_option.py -------------------------------------------------------------------------------- /tests/functional/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_search.py -------------------------------------------------------------------------------- /tests/functional/test_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_show.py -------------------------------------------------------------------------------- /tests/functional/test_truststore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_truststore.py -------------------------------------------------------------------------------- /tests/functional/test_uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_uninstall.py -------------------------------------------------------------------------------- /tests/functional/test_uninstall_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_uninstall_user.py -------------------------------------------------------------------------------- /tests/functional/test_vcs_bazaar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_vcs_bazaar.py -------------------------------------------------------------------------------- /tests/functional/test_vcs_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_vcs_git.py -------------------------------------------------------------------------------- /tests/functional/test_vcs_mercurial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_vcs_mercurial.py -------------------------------------------------------------------------------- /tests/functional/test_vcs_subversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_vcs_subversion.py -------------------------------------------------------------------------------- /tests/functional/test_warning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_warning.py -------------------------------------------------------------------------------- /tests/functional/test_wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/functional/test_wheel.py -------------------------------------------------------------------------------- /tests/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/lib/__init__.py -------------------------------------------------------------------------------- /tests/lib/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/lib/certs.py -------------------------------------------------------------------------------- /tests/lib/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/lib/compat.py -------------------------------------------------------------------------------- /tests/lib/configuration_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/lib/configuration_helpers.py -------------------------------------------------------------------------------- /tests/lib/direct_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/lib/direct_url.py -------------------------------------------------------------------------------- /tests/lib/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/lib/filesystem.py -------------------------------------------------------------------------------- /tests/lib/git_submodule_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/lib/git_submodule_helpers.py -------------------------------------------------------------------------------- /tests/lib/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/lib/index.py -------------------------------------------------------------------------------- /tests/lib/local_repos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/lib/local_repos.py -------------------------------------------------------------------------------- /tests/lib/options_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/lib/options_helpers.py -------------------------------------------------------------------------------- /tests/lib/requests_mocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/lib/requests_mocks.py -------------------------------------------------------------------------------- /tests/lib/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/lib/server.py -------------------------------------------------------------------------------- /tests/lib/test_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/lib/test_lib.py -------------------------------------------------------------------------------- /tests/lib/test_wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/lib/test_wheel.py -------------------------------------------------------------------------------- /tests/lib/venv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/lib/venv.py -------------------------------------------------------------------------------- /tests/lib/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/lib/wheel.py -------------------------------------------------------------------------------- /tests/requirements-common_wheels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/requirements-common_wheels.txt -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/metadata/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/metadata/test_metadata.py -------------------------------------------------------------------------------- /tests/unit/resolution_resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/test_appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_appdirs.py -------------------------------------------------------------------------------- /tests/unit/test_base_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_base_command.py -------------------------------------------------------------------------------- /tests/unit/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_cache.py -------------------------------------------------------------------------------- /tests/unit/test_cmdoptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_cmdoptions.py -------------------------------------------------------------------------------- /tests/unit/test_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_collector.py -------------------------------------------------------------------------------- /tests/unit/test_command_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_command_install.py -------------------------------------------------------------------------------- /tests/unit/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_commands.py -------------------------------------------------------------------------------- /tests/unit/test_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_compat.py -------------------------------------------------------------------------------- /tests/unit/test_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_configuration.py -------------------------------------------------------------------------------- /tests/unit/test_direct_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_direct_url.py -------------------------------------------------------------------------------- /tests/unit/test_direct_url_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_direct_url_helpers.py -------------------------------------------------------------------------------- /tests/unit/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_exceptions.py -------------------------------------------------------------------------------- /tests/unit/test_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_finder.py -------------------------------------------------------------------------------- /tests/unit/test_format_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_format_control.py -------------------------------------------------------------------------------- /tests/unit/test_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_index.py -------------------------------------------------------------------------------- /tests/unit/test_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_link.py -------------------------------------------------------------------------------- /tests/unit/test_locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_locations.py -------------------------------------------------------------------------------- /tests/unit/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_logging.py -------------------------------------------------------------------------------- /tests/unit/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_models.py -------------------------------------------------------------------------------- /tests/unit/test_models_wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_models_wheel.py -------------------------------------------------------------------------------- /tests/unit/test_network_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_network_auth.py -------------------------------------------------------------------------------- /tests/unit/test_network_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_network_cache.py -------------------------------------------------------------------------------- /tests/unit/test_network_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_network_download.py -------------------------------------------------------------------------------- /tests/unit/test_network_lazy_wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_network_lazy_wheel.py -------------------------------------------------------------------------------- /tests/unit/test_network_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_network_session.py -------------------------------------------------------------------------------- /tests/unit/test_network_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_network_utils.py -------------------------------------------------------------------------------- /tests/unit/test_operations_prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_operations_prepare.py -------------------------------------------------------------------------------- /tests/unit/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_options.py -------------------------------------------------------------------------------- /tests/unit/test_packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_packaging.py -------------------------------------------------------------------------------- /tests/unit/test_pep517.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_pep517.py -------------------------------------------------------------------------------- /tests/unit/test_pyproject_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_pyproject_config.py -------------------------------------------------------------------------------- /tests/unit/test_req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_req.py -------------------------------------------------------------------------------- /tests/unit/test_req_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_req_file.py -------------------------------------------------------------------------------- /tests/unit/test_req_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_req_install.py -------------------------------------------------------------------------------- /tests/unit/test_req_uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_req_uninstall.py -------------------------------------------------------------------------------- /tests/unit/test_search_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_search_scope.py -------------------------------------------------------------------------------- /tests/unit/test_self_check_outdated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_self_check_outdated.py -------------------------------------------------------------------------------- /tests/unit/test_target_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_target_python.py -------------------------------------------------------------------------------- /tests/unit/test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_urls.py -------------------------------------------------------------------------------- /tests/unit/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_utils.py -------------------------------------------------------------------------------- /tests/unit/test_utils_filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_utils_filesystem.py -------------------------------------------------------------------------------- /tests/unit/test_utils_subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_utils_subprocess.py -------------------------------------------------------------------------------- /tests/unit/test_utils_temp_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_utils_temp_dir.py -------------------------------------------------------------------------------- /tests/unit/test_utils_unpacking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_utils_unpacking.py -------------------------------------------------------------------------------- /tests/unit/test_utils_virtualenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_utils_virtualenv.py -------------------------------------------------------------------------------- /tests/unit/test_utils_wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_utils_wheel.py -------------------------------------------------------------------------------- /tests/unit/test_vcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_vcs.py -------------------------------------------------------------------------------- /tests/unit/test_vcs_mercurial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_vcs_mercurial.py -------------------------------------------------------------------------------- /tests/unit/test_wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_wheel.py -------------------------------------------------------------------------------- /tests/unit/test_wheel_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tests/unit/test_wheel_builder.py -------------------------------------------------------------------------------- /tools/ci/New-RAMDisk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tools/ci/New-RAMDisk.ps1 -------------------------------------------------------------------------------- /tools/news/template.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tools/news/template.rst -------------------------------------------------------------------------------- /tools/protected_pip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tools/protected_pip.py -------------------------------------------------------------------------------- /tools/release/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tools/release/__init__.py -------------------------------------------------------------------------------- /tools/release/check_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tools/release/check_version.py -------------------------------------------------------------------------------- /tools/update-rtd-redirects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tools/update-rtd-redirects.py -------------------------------------------------------------------------------- /tools/vendoring/patches/certifi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tools/vendoring/patches/certifi.patch -------------------------------------------------------------------------------- /tools/vendoring/patches/pygments.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tools/vendoring/patches/pygments.patch -------------------------------------------------------------------------------- /tools/vendoring/patches/requests.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tools/vendoring/patches/requests.patch -------------------------------------------------------------------------------- /tools/vendoring/patches/tenacity.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tools/vendoring/patches/tenacity.patch -------------------------------------------------------------------------------- /tools/vendoring/patches/urllib3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Python-Repository-Hub/pip/HEAD/tools/vendoring/patches/urllib3.patch --------------------------------------------------------------------------------