SHA256
1
0
forked from pool/python-pip

Accepting request 702370 from home:mcepl:branches:devel:languages:python

- Update to version 19.1.1+git.1557521541.a731e7e3:
  * Docs: capitalize "URL"
  * Upgrade Sphinx version for Read the Docs (#6477)
  * Upwrap import
  * Remove utils/packaging.py's dependence on the current environment.
  * Improve import error handling Fix --no-index usage Fix missing type annotation type
  * Rename _link_package_versions() to evaluate_link().
  * Move _link_package_versions() to CandidateEvaluator.
  * Refine return type of _package_versions() and find_all_candidates().
  * Fix mismerged import
  * Issue #5948: Enable keyring support
  * Move run_with_log_command() after run_stderr_with_prefix().
  * Change to never allow logging errors during tests.
  * Add failing test.
  * Respect --global-option and --install-option for VCS installs.
- Start using upstream git checkout instead of the released
  tarballs so we can get tests/ directory (gh#pypa/pip#6258).
- Enable tests.

- Update to 19.1.1:
  - Restore pyproject.toml handling to how it was with pip 19.0.3
    to prevent the need to add --no-use-pep517 when installing in
    editable mode. (#6434)
  - Fix a regression that caused @ to be quoted in pypiserver
    links. This interfered with parsing the revision string from
    VCS urls. (#6440)
  - Configuration files may now also be stored under sys.prefix
    (#5060)
  - Avoid creating an unnecessary local clone of a Bazaar branch
    when exporting. (#5443)

OBS-URL: https://build.opensuse.org/request/show/702370
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=65
This commit is contained in:
2019-05-11 17:29:32 +00:00
committed by Git OBS Bridge
parent 00cea51cd8
commit 6f0bdab7e0
7 changed files with 121 additions and 19 deletions

View File

@@ -1,3 +1,89 @@
-------------------------------------------------------------------
Sat May 11 13:41:41 UTC 2019 - Matej Cepl <mcepl@cepl.eu>
- Update to version 19.1.1+git.1557521541.a731e7e3:
* Docs: capitalize "URL"
* Upgrade Sphinx version for Read the Docs (#6477)
* Upwrap import
* Remove utils/packaging.py's dependence on the current environment.
* Improve import error handling Fix --no-index usage Fix missing type annotation type
* Rename _link_package_versions() to evaluate_link().
* Move _link_package_versions() to CandidateEvaluator.
* Refine return type of _package_versions() and find_all_candidates().
* Fix mismerged import
* Issue #5948: Enable keyring support
* Move run_with_log_command() after run_stderr_with_prefix().
* Change to never allow logging errors during tests.
* Add failing test.
* Respect --global-option and --install-option for VCS installs.
- Start using upstream git checkout instead of the released
tarballs so we can get tests/ directory (gh#pypa/pip#6258).
- Enable tests.
-------------------------------------------------------------------
Fri May 10 23:17:02 CEST 2019 - Matej Cepl <mcepl@suse.com>
- Update to 19.1.1:
- Restore pyproject.toml handling to how it was with pip 19.0.3
to prevent the need to add --no-use-pep517 when installing in
editable mode. (#6434)
- Fix a regression that caused @ to be quoted in pypiserver
links. This interfered with parsing the revision string from
VCS urls. (#6440)
- Configuration files may now also be stored under sys.prefix
(#5060)
- Avoid creating an unnecessary local clone of a Bazaar branch
when exporting. (#5443)
- Include in pip's User-Agent string whether it looks like pip
is running under CI. (#5499)
- A custom (JSON-encoded) string can now be added to pip's
User-Agent using the PIP_USER_AGENT_USER_DATA environment
variable. (#5549)
- For consistency, passing --no-cache-dir no longer affects
whether wheels will be built. In this case, a temporary
directory is used. (#5749)
- Command arguments in subprocess log messages are now quoted
using shlex.quote(). (#6290)
- Prefix warning and error messages in log output with WARNING
and ERROR. (#6298)
- Using --build-options in a PEP 517 build now fails with an
error, rather than silently ignoring the option. (#6305)
- Error out with an informative message if one tries to install
a pyproject.toml-style (PEP 517) source tree using --editable
mode. (#6314)
- When downloading a package, the ETA and average speed now
only update once per second for better legibility. (#6319)
- The stdout and stderr from VCS commands run by pip as
subprocesses (e.g. git, hg, etc.) no longer pollute pip's
stdout. (#1219)
- Fix handling of requests exceptions when dependencies are
debundled. (#4195)
- Make pip's self version check avoid recommending upgrades to
prereleases if the currently-installed version is stable.
(#5175)
- Fixed crash when installing a requirement from a URL that
comes from a dependency without a URL. (#5889)
- Improve handling of file URIs: correctly handle
file://localhost/... and don't try to use UNC paths on Unix.
(#5892)
- Fix utils.encoding.auto_decode() LookupError with invalid
encodings. utils.encoding.auto_decode() was broken when
decoding Big Endian BOM byte-strings on Little Endian or vice
versa. (#6054)
- Fix incorrect URL quoting of IPv6 addresses. (#6285)
- Redact the password from the extra index URL when using pip
-v. (#6295)
- The spinner no longer displays a completion message after
subprocess calls not needing a spinner. It also no longer
incorrectly reports an error after certain subprocess calls
to Git that succeeded. (#6312)
- Fix the handling of editable mode during installs when
pyproject.toml is present but PEP 517 doesn't require the
source tree to be treated as pyproject.toml-style. (#6370)
- Fix NameError when handling an invalid requirement. (#6419)
- Make dashes render correctly when displaying long options
like --find-links in the text. (#6422)
-------------------------------------------------------------------
Sun Mar 10 16:35:47 UTC 2019 - Arun Persaud <arun@gmx.de>