pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/py-pip py-pip: update to 22.0.4.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9770c111153e
branches:  trunk
changeset: 377460:9770c111153e
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Wed Apr 20 21:04:12 2022 +0000

description:
py-pip: update to 22.0.4.

22.0.4 (2022-03-06)
===================

Deprecations and Removals
-------------------------

- Drop the doctype check, that presented a warning for index pages that use non-compliant HTML 5. (`#10903 <https://github.com/pypa/pip/issues/10903>`_)

Vendored Libraries
------------------

- Downgrade distlib to 0.3.3.


22.0.3 (2022-02-03)
===================

Features
--------

- Print the exception via ``rich.traceback``, when running with ``--debug``. (`#10791 <https://github.com/pypa/pip/issues/10791>`_)

Bug Fixes
---------

- Only calculate topological installation order, for packages that are going to be installed/upgraded.

  This fixes an `AssertionError` that occured when determining installation order, for a very specific combination of upgrading-already-installed-package + change of dependencies + fetching some 
packages from a package index. This combination was especially common in Read the Docs' builds. (`#10851 <https://github.com/pypa/pip/issues/10851>`_)
- Use ``html.parser`` by default, instead of falling back to ``html5lib`` when ``--use-deprecated=html5lib`` is not passed. (`#10869 <https://github.com/pypa/pip/issues/10869>`_)

Improved Documentation
----------------------

- Clarify that using per-requirement overrides disables the usage of wheels. (`#9674 <https://github.com/pypa/pip/issues/9674>`_)


22.0.2 (2022-01-30)
===================

Deprecations and Removals
-------------------------

- Instead of failing on index pages that use non-compliant HTML 5, print a deprecation warning and fall back to ``html5lib``-based parsing for now. This simplifies the migration for non-compliant 
index pages, by letting such indexes function with a warning. (`#10847 <https://github.com/pypa/pip/issues/10847>`_)


22.0.1 (2022-01-30)
===================

Bug Fixes
---------

- Accept lowercase ``<!doctype html>`` on index pages. (`#10844 <https://github.com/pypa/pip/issues/10844>`_)
- Properly handle links parsed by html5lib, when using ``--use-deprecated=html5lib``. (`#10846 <https://github.com/pypa/pip/issues/10846>`_)


22.0 (2022-01-29)
=================

Process
-------

- Completely replace :pypi:`tox` in our development workflow, with :pypi:`nox`.

Deprecations and Removals
-------------------------

- Deprecate alternative progress bar styles, leaving only ``on`` and ``off`` as available choices. (`#10462 <https://github.com/pypa/pip/issues/10462>`_)
- Drop support for Python 3.6. (`#10641 <https://github.com/pypa/pip/issues/10641>`_)
- Disable location mismatch warnings on Python versions prior to 3.10.

  These warnings were helping identify potential issues as part of the sysconfig -> distutils transition, and we no longer need to rely on reports from older Python versions for information on the 
transition. (`#10840 <https://github.com/pypa/pip/issues/10840>`_)

Features
--------

- Changed ``PackageFinder`` to parse HTML documents using the stdlib :class:`html.parser.HTMLParser` class instead of the ``html5lib`` package.

  For now, the deprecated ``html5lib`` code remains and can be used with the ``--use-deprecated=html5lib`` command line option. However, it will be removed in a future pip release. (`#10291 
<https://github.com/pypa/pip/issues/10291>`_)
- Utilise ``rich`` for presenting pip's default download progress bar. (`#10462 <https://github.com/pypa/pip/issues/10462>`_)
- Present a better error message when an invalid wheel file is encountered, providing more context where the invalid wheel file is. (`#10535 <https://github.com/pypa/pip/issues/10535>`_)
- Documents the ``--require-virtualenv`` flag for ``pip install``. (`#10588 <https://github.com/pypa/pip/issues/10588>`_)
- ``pip install <tab>`` autocompletes paths. (`#10646 <https://github.com/pypa/pip/issues/10646>`_)
- Allow Python distributors to opt-out from or opt-in to the ``sysconfig`` installation scheme backend by setting ``sysconfig._PIP_USE_SYSCONFIG`` to ``True`` or ``False``. (`#10647 
<https://github.com/pypa/pip/issues/10647>`_)
- Make it possible to deselect tests requiring cryptography package on systems where it cannot be installed. (`#10686 <https://github.com/pypa/pip/issues/10686>`_)
- Start using Rich for presenting error messages in a consistent format. (`#10703 <https://github.com/pypa/pip/issues/10703>`_)
- Improve presentation of errors from subprocesses. (`#10705 <https://github.com/pypa/pip/issues/10705>`_)
- Forward pip's verbosity configuration to VCS tools to control their output accordingly. (`#8819 <https://github.com/pypa/pip/issues/8819>`_)

Bug Fixes
---------

- Optimize installation order calculation to improve performance when installing requirements that form a complex dependency graph with a large amount of edges. (`#10557 
<https://github.com/pypa/pip/issues/10557>`_)
- When a package is requested by the user for upgrade, correctly identify that the extra-ed variant of that same package depended by another user-requested package is requesting the same package, and 
upgrade it accordingly. (`#10613 <https://github.com/pypa/pip/issues/10613>`_)
- Prevent pip from installing yanked releases unless explicitly pinned via the ``==`` or ``===`` operators. (`#10617 <https://github.com/pypa/pip/issues/10617>`_)
- Stop backtracking on build failures, by instead surfacing them to the user and aborting immediately. This behaviour provides more immediate feedback when a package cannot be built due to missing 
build dependencies or platform incompatibility. (`#10655 <https://github.com/pypa/pip/issues/10655>`_)
- Silence ``Value for <location> does not match`` warning caused by an erroneous patch in Slackware-distributed Python 3.9. (`#10668 <https://github.com/pypa/pip/issues/10668>`_)
- Fix an issue where pip did not consider dependencies with and without extras to be equal (`#9644 <https://github.com/pypa/pip/issues/9644>`_)

Vendored Libraries
------------------

- Upgrade CacheControl to 0.12.10
- Upgrade certifi to 2021.10.8
- Upgrade distlib to 0.3.4
- Upgrade idna to 3.3
- Upgrade msgpack to 1.0.3
- Upgrade packaging to 21.3
- Upgrade platformdirs to 2.4.1
- Add pygments 2.11.2 as a vendored dependency.
- Tree-trim unused portions of vendored pygments, to reduce the distribution size.
- Upgrade pyparsing to 3.0.7
- Upgrade Requests to 2.27.1
- Upgrade resolvelib to 0.8.1
- Add rich 11.0.0 as a vendored dependency.
- Tree-trim unused portions of vendored rich, to reduce the distribution size.
- Add typing_extensions 4.0.1 as a vendored dependency.
- Upgrade urllib3 to 1.26.8


21.3.1 (2021-10-22)
===================


Bug Fixes
---------


- Always refuse installing or building projects that have no ``pyproject.toml`` nor
  ``setup.py``. (`#10531 <https://github.com/pypa/pip/issues/10531>`_)
- Tweak running-as-root detection, to check ``os.getuid`` if it exists, on Unix-y and non-Linux/non-MacOS machines. (`#10565 <https://github.com/pypa/pip/issues/10565>`_)
- When installing projects with a ``pyproject.toml`` in editable mode, and the build
  backend does not support :pep:`660`, prepare metadata using
  ``prepare_metadata_for_build_wheel`` instead of ``setup.py egg_info``. Also, refuse
  installing projects that only have a ``setup.cfg`` and no ``setup.py`` nor
  ``pyproject.toml``. These restore the pre-21.3 behaviour. (`#10573 <https://github.com/pypa/pip/issues/10573>`_)
- Restore compatibility of where configuration files are loaded from on MacOS (back to ``Library/Application Support/pip``, instead of ``Preferences/pip``). (`#10585 
<https://github.com/pypa/pip/issues/10585>`_)

Vendored Libraries
------------------


- Upgrade pep517 to 0.12.0

diffstat:

 devel/py-pip/Makefile                                       |    5 +-
 devel/py-pip/PLIST                                          |  383 +++++++++++-
 devel/py-pip/distinfo                                       |   10 +-
 devel/py-pip/patches/patch-src_pip___internal_build__env.py |   10 +-
 4 files changed, 379 insertions(+), 29 deletions(-)

diffs (truncated from 486 to 300 lines):

diff -r 15da722b7925 -r 9770c111153e devel/py-pip/Makefile
--- a/devel/py-pip/Makefile     Wed Apr 20 21:00:00 2022 +0000
+++ b/devel/py-pip/Makefile     Wed Apr 20 21:04:12 2022 +0000
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.52 2022/03/15 21:22:59 wiz Exp $
+# $NetBSD: Makefile,v 1.53 2022/04/20 21:04:12 wiz Exp $
 
-DISTNAME=      pip-21.3.1
+DISTNAME=      pip-22.0.4
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
-PKGREVISION=   3
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=p/pip/}
 
diff -r 15da722b7925 -r 9770c111153e devel/py-pip/PLIST
--- a/devel/py-pip/PLIST        Wed Apr 20 21:00:00 2022 +0000
+++ b/devel/py-pip/PLIST        Wed Apr 20 21:04:12 2022 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.32 2021/11/09 23:19:49 wiz Exp $
+@comment $NetBSD: PLIST,v 1.33 2022/04/20 21:04:12 wiz Exp $
 bin/pip${PYVERSSUFFIX}
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
@@ -396,12 +396,6 @@
 ${PYSITELIB}/pip/_internal/utils/packaging.py
 ${PYSITELIB}/pip/_internal/utils/packaging.pyc
 ${PYSITELIB}/pip/_internal/utils/packaging.pyo
-${PYSITELIB}/pip/_internal/utils/parallel.py
-${PYSITELIB}/pip/_internal/utils/parallel.pyc
-${PYSITELIB}/pip/_internal/utils/parallel.pyo
-${PYSITELIB}/pip/_internal/utils/pkg_resources.py
-${PYSITELIB}/pip/_internal/utils/pkg_resources.pyc
-${PYSITELIB}/pip/_internal/utils/pkg_resources.pyo
 ${PYSITELIB}/pip/_internal/utils/setuptools_build.py
 ${PYSITELIB}/pip/_internal/utils/setuptools_build.pyc
 ${PYSITELIB}/pip/_internal/utils/setuptools_build.pyo
@@ -956,9 +950,144 @@
 ${PYSITELIB}/pip/_vendor/progress/spinner.py
 ${PYSITELIB}/pip/_vendor/progress/spinner.pyc
 ${PYSITELIB}/pip/_vendor/progress/spinner.pyo
-${PYSITELIB}/pip/_vendor/pyparsing.py
-${PYSITELIB}/pip/_vendor/pyparsing.pyc
-${PYSITELIB}/pip/_vendor/pyparsing.pyo
+${PYSITELIB}/pip/_vendor/pygments/__init__.py
+${PYSITELIB}/pip/_vendor/pygments/__init__.pyc
+${PYSITELIB}/pip/_vendor/pygments/__init__.pyo
+${PYSITELIB}/pip/_vendor/pygments/__main__.py
+${PYSITELIB}/pip/_vendor/pygments/__main__.pyc
+${PYSITELIB}/pip/_vendor/pygments/__main__.pyo
+${PYSITELIB}/pip/_vendor/pygments/cmdline.py
+${PYSITELIB}/pip/_vendor/pygments/cmdline.pyc
+${PYSITELIB}/pip/_vendor/pygments/cmdline.pyo
+${PYSITELIB}/pip/_vendor/pygments/console.py
+${PYSITELIB}/pip/_vendor/pygments/console.pyc
+${PYSITELIB}/pip/_vendor/pygments/console.pyo
+${PYSITELIB}/pip/_vendor/pygments/filter.py
+${PYSITELIB}/pip/_vendor/pygments/filter.pyc
+${PYSITELIB}/pip/_vendor/pygments/filter.pyo
+${PYSITELIB}/pip/_vendor/pygments/filters/__init__.py
+${PYSITELIB}/pip/_vendor/pygments/filters/__init__.pyc
+${PYSITELIB}/pip/_vendor/pygments/filters/__init__.pyo
+${PYSITELIB}/pip/_vendor/pygments/formatter.py
+${PYSITELIB}/pip/_vendor/pygments/formatter.pyc
+${PYSITELIB}/pip/_vendor/pygments/formatter.pyo
+${PYSITELIB}/pip/_vendor/pygments/formatters/__init__.py
+${PYSITELIB}/pip/_vendor/pygments/formatters/__init__.pyc
+${PYSITELIB}/pip/_vendor/pygments/formatters/__init__.pyo
+${PYSITELIB}/pip/_vendor/pygments/formatters/_mapping.py
+${PYSITELIB}/pip/_vendor/pygments/formatters/_mapping.pyc
+${PYSITELIB}/pip/_vendor/pygments/formatters/_mapping.pyo
+${PYSITELIB}/pip/_vendor/pygments/formatters/bbcode.py
+${PYSITELIB}/pip/_vendor/pygments/formatters/bbcode.pyc
+${PYSITELIB}/pip/_vendor/pygments/formatters/bbcode.pyo
+${PYSITELIB}/pip/_vendor/pygments/formatters/groff.py
+${PYSITELIB}/pip/_vendor/pygments/formatters/groff.pyc
+${PYSITELIB}/pip/_vendor/pygments/formatters/groff.pyo
+${PYSITELIB}/pip/_vendor/pygments/formatters/html.py
+${PYSITELIB}/pip/_vendor/pygments/formatters/html.pyc
+${PYSITELIB}/pip/_vendor/pygments/formatters/html.pyo
+${PYSITELIB}/pip/_vendor/pygments/formatters/img.py
+${PYSITELIB}/pip/_vendor/pygments/formatters/img.pyc
+${PYSITELIB}/pip/_vendor/pygments/formatters/img.pyo
+${PYSITELIB}/pip/_vendor/pygments/formatters/irc.py
+${PYSITELIB}/pip/_vendor/pygments/formatters/irc.pyc
+${PYSITELIB}/pip/_vendor/pygments/formatters/irc.pyo
+${PYSITELIB}/pip/_vendor/pygments/formatters/latex.py
+${PYSITELIB}/pip/_vendor/pygments/formatters/latex.pyc
+${PYSITELIB}/pip/_vendor/pygments/formatters/latex.pyo
+${PYSITELIB}/pip/_vendor/pygments/formatters/other.py
+${PYSITELIB}/pip/_vendor/pygments/formatters/other.pyc
+${PYSITELIB}/pip/_vendor/pygments/formatters/other.pyo
+${PYSITELIB}/pip/_vendor/pygments/formatters/pangomarkup.py
+${PYSITELIB}/pip/_vendor/pygments/formatters/pangomarkup.pyc
+${PYSITELIB}/pip/_vendor/pygments/formatters/pangomarkup.pyo
+${PYSITELIB}/pip/_vendor/pygments/formatters/rtf.py
+${PYSITELIB}/pip/_vendor/pygments/formatters/rtf.pyc
+${PYSITELIB}/pip/_vendor/pygments/formatters/rtf.pyo
+${PYSITELIB}/pip/_vendor/pygments/formatters/svg.py
+${PYSITELIB}/pip/_vendor/pygments/formatters/svg.pyc
+${PYSITELIB}/pip/_vendor/pygments/formatters/svg.pyo
+${PYSITELIB}/pip/_vendor/pygments/formatters/terminal.py
+${PYSITELIB}/pip/_vendor/pygments/formatters/terminal.pyc
+${PYSITELIB}/pip/_vendor/pygments/formatters/terminal.pyo
+${PYSITELIB}/pip/_vendor/pygments/formatters/terminal256.py
+${PYSITELIB}/pip/_vendor/pygments/formatters/terminal256.pyc
+${PYSITELIB}/pip/_vendor/pygments/formatters/terminal256.pyo
+${PYSITELIB}/pip/_vendor/pygments/lexer.py
+${PYSITELIB}/pip/_vendor/pygments/lexer.pyc
+${PYSITELIB}/pip/_vendor/pygments/lexer.pyo
+${PYSITELIB}/pip/_vendor/pygments/lexers/__init__.py
+${PYSITELIB}/pip/_vendor/pygments/lexers/__init__.pyc
+${PYSITELIB}/pip/_vendor/pygments/lexers/__init__.pyo
+${PYSITELIB}/pip/_vendor/pygments/lexers/_mapping.py
+${PYSITELIB}/pip/_vendor/pygments/lexers/_mapping.pyc
+${PYSITELIB}/pip/_vendor/pygments/lexers/_mapping.pyo
+${PYSITELIB}/pip/_vendor/pygments/lexers/python.py
+${PYSITELIB}/pip/_vendor/pygments/lexers/python.pyc
+${PYSITELIB}/pip/_vendor/pygments/lexers/python.pyo
+${PYSITELIB}/pip/_vendor/pygments/modeline.py
+${PYSITELIB}/pip/_vendor/pygments/modeline.pyc
+${PYSITELIB}/pip/_vendor/pygments/modeline.pyo
+${PYSITELIB}/pip/_vendor/pygments/plugin.py
+${PYSITELIB}/pip/_vendor/pygments/plugin.pyc
+${PYSITELIB}/pip/_vendor/pygments/plugin.pyo
+${PYSITELIB}/pip/_vendor/pygments/regexopt.py
+${PYSITELIB}/pip/_vendor/pygments/regexopt.pyc
+${PYSITELIB}/pip/_vendor/pygments/regexopt.pyo
+${PYSITELIB}/pip/_vendor/pygments/scanner.py
+${PYSITELIB}/pip/_vendor/pygments/scanner.pyc
+${PYSITELIB}/pip/_vendor/pygments/scanner.pyo
+${PYSITELIB}/pip/_vendor/pygments/sphinxext.py
+${PYSITELIB}/pip/_vendor/pygments/sphinxext.pyc
+${PYSITELIB}/pip/_vendor/pygments/sphinxext.pyo
+${PYSITELIB}/pip/_vendor/pygments/style.py
+${PYSITELIB}/pip/_vendor/pygments/style.pyc
+${PYSITELIB}/pip/_vendor/pygments/style.pyo
+${PYSITELIB}/pip/_vendor/pygments/styles/__init__.py
+${PYSITELIB}/pip/_vendor/pygments/styles/__init__.pyc
+${PYSITELIB}/pip/_vendor/pygments/styles/__init__.pyo
+${PYSITELIB}/pip/_vendor/pygments/token.py
+${PYSITELIB}/pip/_vendor/pygments/token.pyc
+${PYSITELIB}/pip/_vendor/pygments/token.pyo
+${PYSITELIB}/pip/_vendor/pygments/unistring.py
+${PYSITELIB}/pip/_vendor/pygments/unistring.pyc
+${PYSITELIB}/pip/_vendor/pygments/unistring.pyo
+${PYSITELIB}/pip/_vendor/pygments/util.py
+${PYSITELIB}/pip/_vendor/pygments/util.pyc
+${PYSITELIB}/pip/_vendor/pygments/util.pyo
+${PYSITELIB}/pip/_vendor/pyparsing/__init__.py
+${PYSITELIB}/pip/_vendor/pyparsing/__init__.pyc
+${PYSITELIB}/pip/_vendor/pyparsing/__init__.pyo
+${PYSITELIB}/pip/_vendor/pyparsing/actions.py
+${PYSITELIB}/pip/_vendor/pyparsing/actions.pyc
+${PYSITELIB}/pip/_vendor/pyparsing/actions.pyo
+${PYSITELIB}/pip/_vendor/pyparsing/common.py
+${PYSITELIB}/pip/_vendor/pyparsing/common.pyc
+${PYSITELIB}/pip/_vendor/pyparsing/common.pyo
+${PYSITELIB}/pip/_vendor/pyparsing/core.py
+${PYSITELIB}/pip/_vendor/pyparsing/core.pyc
+${PYSITELIB}/pip/_vendor/pyparsing/core.pyo
+${PYSITELIB}/pip/_vendor/pyparsing/diagram/__init__.py
+${PYSITELIB}/pip/_vendor/pyparsing/diagram/__init__.pyc
+${PYSITELIB}/pip/_vendor/pyparsing/diagram/__init__.pyo
+${PYSITELIB}/pip/_vendor/pyparsing/exceptions.py
+${PYSITELIB}/pip/_vendor/pyparsing/exceptions.pyc
+${PYSITELIB}/pip/_vendor/pyparsing/exceptions.pyo
+${PYSITELIB}/pip/_vendor/pyparsing/helpers.py
+${PYSITELIB}/pip/_vendor/pyparsing/helpers.pyc
+${PYSITELIB}/pip/_vendor/pyparsing/helpers.pyo
+${PYSITELIB}/pip/_vendor/pyparsing/results.py
+${PYSITELIB}/pip/_vendor/pyparsing/results.pyc
+${PYSITELIB}/pip/_vendor/pyparsing/results.pyo
+${PYSITELIB}/pip/_vendor/pyparsing/testing.py
+${PYSITELIB}/pip/_vendor/pyparsing/testing.pyc
+${PYSITELIB}/pip/_vendor/pyparsing/testing.pyo
+${PYSITELIB}/pip/_vendor/pyparsing/unicode.py
+${PYSITELIB}/pip/_vendor/pyparsing/unicode.pyc
+${PYSITELIB}/pip/_vendor/pyparsing/unicode.pyo
+${PYSITELIB}/pip/_vendor/pyparsing/util.py
+${PYSITELIB}/pip/_vendor/pyparsing/util.pyc
+${PYSITELIB}/pip/_vendor/pyparsing/util.pyo
 ${PYSITELIB}/pip/_vendor/requests/__init__.py
 ${PYSITELIB}/pip/_vendor/requests/__init__.pyc
 ${PYSITELIB}/pip/_vendor/requests/__init__.pyo
@@ -1034,6 +1163,228 @@
 ${PYSITELIB}/pip/_vendor/resolvelib/structs.py
 ${PYSITELIB}/pip/_vendor/resolvelib/structs.pyc
 ${PYSITELIB}/pip/_vendor/resolvelib/structs.pyo
+${PYSITELIB}/pip/_vendor/rich/__init__.py
+${PYSITELIB}/pip/_vendor/rich/__init__.pyc
+${PYSITELIB}/pip/_vendor/rich/__init__.pyo
+${PYSITELIB}/pip/_vendor/rich/__main__.py
+${PYSITELIB}/pip/_vendor/rich/__main__.pyc
+${PYSITELIB}/pip/_vendor/rich/__main__.pyo
+${PYSITELIB}/pip/_vendor/rich/_cell_widths.py
+${PYSITELIB}/pip/_vendor/rich/_cell_widths.pyc
+${PYSITELIB}/pip/_vendor/rich/_cell_widths.pyo
+${PYSITELIB}/pip/_vendor/rich/_emoji_codes.py
+${PYSITELIB}/pip/_vendor/rich/_emoji_codes.pyc
+${PYSITELIB}/pip/_vendor/rich/_emoji_codes.pyo
+${PYSITELIB}/pip/_vendor/rich/_emoji_replace.py
+${PYSITELIB}/pip/_vendor/rich/_emoji_replace.pyc
+${PYSITELIB}/pip/_vendor/rich/_emoji_replace.pyo
+${PYSITELIB}/pip/_vendor/rich/_extension.py
+${PYSITELIB}/pip/_vendor/rich/_extension.pyc
+${PYSITELIB}/pip/_vendor/rich/_extension.pyo
+${PYSITELIB}/pip/_vendor/rich/_inspect.py
+${PYSITELIB}/pip/_vendor/rich/_inspect.pyc
+${PYSITELIB}/pip/_vendor/rich/_inspect.pyo
+${PYSITELIB}/pip/_vendor/rich/_log_render.py
+${PYSITELIB}/pip/_vendor/rich/_log_render.pyc
+${PYSITELIB}/pip/_vendor/rich/_log_render.pyo
+${PYSITELIB}/pip/_vendor/rich/_loop.py
+${PYSITELIB}/pip/_vendor/rich/_loop.pyc
+${PYSITELIB}/pip/_vendor/rich/_loop.pyo
+${PYSITELIB}/pip/_vendor/rich/_lru_cache.py
+${PYSITELIB}/pip/_vendor/rich/_lru_cache.pyc
+${PYSITELIB}/pip/_vendor/rich/_lru_cache.pyo
+${PYSITELIB}/pip/_vendor/rich/_palettes.py
+${PYSITELIB}/pip/_vendor/rich/_palettes.pyc
+${PYSITELIB}/pip/_vendor/rich/_palettes.pyo
+${PYSITELIB}/pip/_vendor/rich/_pick.py
+${PYSITELIB}/pip/_vendor/rich/_pick.pyc
+${PYSITELIB}/pip/_vendor/rich/_pick.pyo
+${PYSITELIB}/pip/_vendor/rich/_ratio.py
+${PYSITELIB}/pip/_vendor/rich/_ratio.pyc
+${PYSITELIB}/pip/_vendor/rich/_ratio.pyo
+${PYSITELIB}/pip/_vendor/rich/_spinners.py
+${PYSITELIB}/pip/_vendor/rich/_spinners.pyc
+${PYSITELIB}/pip/_vendor/rich/_spinners.pyo
+${PYSITELIB}/pip/_vendor/rich/_stack.py
+${PYSITELIB}/pip/_vendor/rich/_stack.pyc
+${PYSITELIB}/pip/_vendor/rich/_stack.pyo
+${PYSITELIB}/pip/_vendor/rich/_timer.py
+${PYSITELIB}/pip/_vendor/rich/_timer.pyc
+${PYSITELIB}/pip/_vendor/rich/_timer.pyo
+${PYSITELIB}/pip/_vendor/rich/_windows.py
+${PYSITELIB}/pip/_vendor/rich/_windows.pyc
+${PYSITELIB}/pip/_vendor/rich/_windows.pyo
+${PYSITELIB}/pip/_vendor/rich/_wrap.py
+${PYSITELIB}/pip/_vendor/rich/_wrap.pyc
+${PYSITELIB}/pip/_vendor/rich/_wrap.pyo
+${PYSITELIB}/pip/_vendor/rich/abc.py
+${PYSITELIB}/pip/_vendor/rich/abc.pyc
+${PYSITELIB}/pip/_vendor/rich/abc.pyo
+${PYSITELIB}/pip/_vendor/rich/align.py
+${PYSITELIB}/pip/_vendor/rich/align.pyc
+${PYSITELIB}/pip/_vendor/rich/align.pyo
+${PYSITELIB}/pip/_vendor/rich/ansi.py
+${PYSITELIB}/pip/_vendor/rich/ansi.pyc
+${PYSITELIB}/pip/_vendor/rich/ansi.pyo
+${PYSITELIB}/pip/_vendor/rich/bar.py
+${PYSITELIB}/pip/_vendor/rich/bar.pyc
+${PYSITELIB}/pip/_vendor/rich/bar.pyo
+${PYSITELIB}/pip/_vendor/rich/box.py
+${PYSITELIB}/pip/_vendor/rich/box.pyc
+${PYSITELIB}/pip/_vendor/rich/box.pyo
+${PYSITELIB}/pip/_vendor/rich/cells.py
+${PYSITELIB}/pip/_vendor/rich/cells.pyc
+${PYSITELIB}/pip/_vendor/rich/cells.pyo
+${PYSITELIB}/pip/_vendor/rich/color.py
+${PYSITELIB}/pip/_vendor/rich/color.pyc
+${PYSITELIB}/pip/_vendor/rich/color.pyo
+${PYSITELIB}/pip/_vendor/rich/color_triplet.py
+${PYSITELIB}/pip/_vendor/rich/color_triplet.pyc
+${PYSITELIB}/pip/_vendor/rich/color_triplet.pyo
+${PYSITELIB}/pip/_vendor/rich/columns.py
+${PYSITELIB}/pip/_vendor/rich/columns.pyc
+${PYSITELIB}/pip/_vendor/rich/columns.pyo
+${PYSITELIB}/pip/_vendor/rich/console.py
+${PYSITELIB}/pip/_vendor/rich/console.pyc
+${PYSITELIB}/pip/_vendor/rich/console.pyo
+${PYSITELIB}/pip/_vendor/rich/constrain.py
+${PYSITELIB}/pip/_vendor/rich/constrain.pyc
+${PYSITELIB}/pip/_vendor/rich/constrain.pyo
+${PYSITELIB}/pip/_vendor/rich/containers.py
+${PYSITELIB}/pip/_vendor/rich/containers.pyc
+${PYSITELIB}/pip/_vendor/rich/containers.pyo
+${PYSITELIB}/pip/_vendor/rich/control.py
+${PYSITELIB}/pip/_vendor/rich/control.pyc
+${PYSITELIB}/pip/_vendor/rich/control.pyo
+${PYSITELIB}/pip/_vendor/rich/default_styles.py
+${PYSITELIB}/pip/_vendor/rich/default_styles.pyc
+${PYSITELIB}/pip/_vendor/rich/default_styles.pyo
+${PYSITELIB}/pip/_vendor/rich/diagnose.py
+${PYSITELIB}/pip/_vendor/rich/diagnose.pyc
+${PYSITELIB}/pip/_vendor/rich/diagnose.pyo
+${PYSITELIB}/pip/_vendor/rich/emoji.py
+${PYSITELIB}/pip/_vendor/rich/emoji.pyc
+${PYSITELIB}/pip/_vendor/rich/emoji.pyo
+${PYSITELIB}/pip/_vendor/rich/errors.py
+${PYSITELIB}/pip/_vendor/rich/errors.pyc
+${PYSITELIB}/pip/_vendor/rich/errors.pyo
+${PYSITELIB}/pip/_vendor/rich/file_proxy.py
+${PYSITELIB}/pip/_vendor/rich/file_proxy.pyc
+${PYSITELIB}/pip/_vendor/rich/file_proxy.pyo
+${PYSITELIB}/pip/_vendor/rich/filesize.py
+${PYSITELIB}/pip/_vendor/rich/filesize.pyc
+${PYSITELIB}/pip/_vendor/rich/filesize.pyo
+${PYSITELIB}/pip/_vendor/rich/highlighter.py



Home | Main Index | Thread Index | Old Index