Version v2021.11.5
2021.11.5 (2021-11-05)
======================
Features & Improvements
-----------------------
- Avoid sharing states but create project objects on demand. So that most integration test cases are able to switch to a in-process execution method. _
- Shell-quote pip commands when logging. _
Bug Fixes
---------
- Ignore empty .venv in rood dir and create project name base virtual environment _
Vendored Libraries
------------------
- Update vendored dependencies
- attrs from 20.3.0 to 21.2.0
- cerberus from 1.3.2 to 1.3.4
- certifi from 2020.11.8 to 2021.5.30
- chardet from 3.0.4 to 4.0.0
- click from 7.1.2 to 8.0.1
- distlib from 0.3.1 to 0.3.2
- idna from 2.10 to 3.2
- importlib-metadata from 2.0.0 to 4.6.1
- importlib-resources from 3.3.0 to 5.2.0
- jinja2 from 2.11.2 to 3.0.1
- markupsafe from 1.1.1 to 2.0.1
- more-itertools from 5.0.0 to 8.8.0
- packaging from 20.8 to 21.0
- pep517 from 0.9.1 to 0.11.0
- pipdeptree from 1.0.0 to 2.0.0
- ptyprocess from 0.6.0 to 0.7.0
- python-dateutil from 2.8.1 to 2.8.2
- python-dotenv from 0.15.0 to 0.19.0
- pythonfinder from 1.2.5 to 1.2.8
- requests from 2.25.0 to 2.26.0
- shellingham from 1.3.2 to 1.4.0
- six from 1.15.0 to 1.16.0
- tomlkit from 0.7.0 to 0.7.2
- urllib3 from 1.26.1 to 1.26.6
- zipp from 1.2.0 to 3.5.0
Add new vendored dependencies
- charset-normalizer 2.0.3
- termcolor 1.1.0
- tomli 1.1.0
- wheel 0.36.2 _
- Drop the dependencies for Python 2.7 compatibility purpose. _
- Switch the dependency resolver from pip-tools to
Usage:
pip <command> [options]
Commands:
install Install packages.
download Download packages.
uninstall Uninstall packages.
freeze Output installed packages in requirements format.
list List installed packages.
show Show information about installed packages.
check Verify installed packages have compatible dependencies.
config Manage local and global configuration.
search Search PyPI for packages.
cache Inspect and manage pip's wheel cache.
index Inspect information available from package indexes.
wheel Build wheels from your requirements.
hash Compute hashes of package archives.
completion A helper command used for command completion.
debug Show information useful for debugging.
help Show help for commands.
General Options:
-h, --help Show help.
--debug Let unhandled exceptions propagate outside the
main subroutine, instead of logging them to
stderr.
--isolated Run pip in an isolated mode, ignoring
environment variables and user configuration.
-v, --verbose Give more output. Option is additive, and can be
used up to 3 times.
-V, --version Show version and exit.
-q, --quiet Give less output. Option is additive, and can be
used up to 3 times (corresponding to WARNING,
ERROR, and CRITICAL logging levels).
--log <path> Path to a verbose appending log.
--no-input Disable prompting for input.
--proxy <proxy> Specify a proxy in the form
[user:passwd@]proxy.server:port.
--retries <retries> Maximum number of retries each connection should
attempt (default 5 times).
--timeout <sec> Set the socket timeout (default 15 seconds).
--exists-action <action> Default action when a path already exists:
(s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort.
--trusted-host <hostname> Mark this host or host:port pair as trusted,
even though it does not have valid or any HTTPS.
--cert <path> Path to PEM-encoded CA certificate bundle. If
provided, overrides the default. See 'SSL
Certificate Verification' in pip documentation
for more information.
--client-cert <path> Path to SSL client certificate, a single file
containing the private key and the certificate
in PEM format.
--cache-dir <dir> Store the cache data in <dir>.
--no-cache-dir Disable the cache.
--disable-pip-version-check
Don't periodically check PyPI to determine
whether a new version of pip is available for
download. Implied with --no-index.
--no-color Suppress colored output.
--no-python-version-warning
Silence deprecation warnings for upcoming
unsupported Pythons.
--use-feature <feature> Enable new functionality, that may be backward
incompatible.
--use-deprecated <feature> Enable deprecated functionality, that will be
removed in the future..
Update vendor libraries:
- Update requirementslib from 1.5.16 to 1.6.1
- Update pip-shims from 0.5.6 to 0.6.0
- New vendor platformdirs 2.4.0 _
Improved Documentation
----------------------
- remove prefixes on install commands for easy copy/pasting _