From ff8bd97bc693d3b50a56650279e9f19767cf31951ca9ed9438972dd27ee37d35 Mon Sep 17 00:00:00 2001 From: Todd R Date: Wed, 9 Mar 2016 16:22:56 +0000 Subject: [PATCH] Accepting request 368988 from home:tbechtold:branches:devel:languages:python - update to 8.1.0: * Implement PEP 513, which adds support for the manylinux1 platform tag, allowing carefully compiled binary wheels to be installed on compatible Linux platforms. * Allow wheels which are not specific to a particular Python interpreter but which are specific to a particular platform (:issue:`3202`). * Fixed an issue where ``call_subprocess`` would crash trying to print debug data on child process failure (:issue:`3521`, :pull:`3522`). * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). :issue:`2989`. * Allow installing modules from a subdirectory of a vcs repository in non-editable mode (:issue:`3217`, :pull:`3466`). * Make pip wheel and pip download work with vcs urls with subdirectory option (:pull:`3466`). * Show classifiers in ``pip show``. * Show PEP376 Installer in ``pip show`` (:issue:`3517`). * Unhide completion command (:pull:`1810`). * Show latest version number in ``pip search`` results (:pull:`1415`). * Decode requirement files according to their BOM if present (:pull:`3485`, :issue:`2865`). * Fix and deprecate package name detection from url path (:issue:`3523` and :pull:`3495`). * Correct the behavior where interpreter specific tags (such as cp34) were being used on later versions of the same interprter instead of only for that specific interpreter (:issue:`3472`). * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit Python running on a 64 bit OS X machine. * Do not assume that all git repositories have an origin remote. * Correctly display the line to add to a requirements.txt for an URL based dependency when ``--require-hashes`` is enabled. OBS-URL: https://build.opensuse.org/request/show/368988 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=41 --- pip-8.0.0.tar.gz | 3 --- pip-8.1.0.tar.gz | 3 +++ python-pip.changes | 59 ++++++++++++++++++++++++++++++++++++++++++++++ python-pip.spec | 2 +- 4 files changed, 63 insertions(+), 4 deletions(-) delete mode 100644 pip-8.0.0.tar.gz create mode 100644 pip-8.1.0.tar.gz diff --git a/pip-8.0.0.tar.gz b/pip-8.0.0.tar.gz deleted file mode 100644 index e4fb2b1..0000000 --- a/pip-8.0.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:90112b296152f270cb8dddcd19b7b87488d9e002e8cf622e14c4da9c2f6319b1 -size 1129857 diff --git a/pip-8.1.0.tar.gz b/pip-8.1.0.tar.gz new file mode 100644 index 0000000..d08d1a7 --- /dev/null +++ b/pip-8.1.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8faa75dd7d0737b16d50cd0a56dc91a631c79ecfd8d38b80f6ee929ec82043e +size 1138794 diff --git a/python-pip.changes b/python-pip.changes index 5386cee..4f706cc 100644 --- a/python-pip.changes +++ b/python-pip.changes @@ -1,3 +1,62 @@ +------------------------------------------------------------------- +Wed Mar 9 09:46:20 UTC 2016 - tbechtold@suse.com + +- update to 8.1.0: + * Implement PEP 513, which adds support for the manylinux1 platform tag, + allowing carefully compiled binary wheels to be installed on compatible Linux + platforms. + * Allow wheels which are not specific to a particular Python interpreter but + which are specific to a particular platform (:issue:`3202`). + * Fixed an issue where ``call_subprocess`` would crash trying to print debug + data on child process failure (:issue:`3521`, :pull:`3522`). + * Exclude the wheel package from the `pip freeze` output (like pip and setuptools). + :issue:`2989`. + * Allow installing modules from a subdirectory of a vcs repository + in non-editable mode (:issue:`3217`, :pull:`3466`). + * Make pip wheel and pip download work with vcs urls with subdirectory option + (:pull:`3466`). + * Show classifiers in ``pip show``. + * Show PEP376 Installer in ``pip show`` (:issue:`3517`). + * Unhide completion command (:pull:`1810`). + * Show latest version number in ``pip search`` results (:pull:`1415`). + * Decode requirement files according to their BOM if present (:pull:`3485`, + :issue:`2865`). + * Fix and deprecate package name detection from url path (:issue:`3523` and + :pull:`3495`). + * Correct the behavior where interpreter specific tags (such as cp34) were + being used on later versions of the same interprter instead of only for that + specific interpreter (:issue:`3472`). + * Fix an issue where pip would erroneously install a 64 bit wheel on a 32 bit + Python running on a 64 bit OS X machine. + * Do not assume that all git repositories have an origin remote. + * Correctly display the line to add to a requirements.txt for an URL based + dependency when ``--require-hashes`` is enabled. + * Make ``install --quiet`` really quiet. See :issue:`3418`. + * Fix a bug when removing packages in python 3: disable INI-style parsing of the + entry_point.txt file to allow entry point names with colons (:pull:`3434`) + * Normalize generated script files path in RECORD files. (:pull:`3448`) + * Fix bug introduced in 8.0.0 where subcommand output was not shown, + even when the user specified ``-v`` / ``--verbose``. :issue:`3486`. + * Enable python -W with respect to PipDeprecationWarning. (:pull:`3455`) + * Upgrade distlib to 0.2.2 (fix :issue:`3467`): + * Improved support for Jython when quoting executables in output scripts. + * Add a `--all` option to `pip freeze` to include usually skipped package + (like pip, setuptools and wheel) to the freeze output. :issue:`1610`. + * Stop attempting to trust the system CA trust store because it's extremely + common for them to be broken, often in incompatible ways. See :pull:`3416`. + * Detect CAPaths in addition to CAFiles on platforms that provide them. + * Installing argparse or wsgiref will no longer warn or error - pip will allow + the installation even though it may be useless (since the installed thing + will be shadowed by the standard library). + * Upgrading a distutils installed item that is installed outside of a virtual + environment, while inside of a virtual environment will no longer warn or + error. + * Fix a bug where pre-releases were showing up in ``pip list --outdated`` + without the ``--pre`` flag. + * Switch the SOABI emulation from using RuntimeWarnings to debug logging. + * Rollback the removal of the ability to uninstall distutils installed items + until a future date. + ------------------------------------------------------------------- Wed Jan 20 10:34:10 UTC 2016 - toddrme2178@gmail.com diff --git a/python-pip.spec b/python-pip.spec index 9663638..57ba767 100644 --- a/python-pip.spec +++ b/python-pip.spec @@ -21,7 +21,7 @@ %bcond_with test Name: python-pip -Version: 8.0.0 +Version: 8.1.0 Release: 0 Url: http://www.pip-installer.org Summary: Pip installs packages. Python packages. An easy_install replacement