forked from pool/python-pip
Accepting request 643508 from home:apersaud:branches:devel:languages:python
update to latest version OBS-URL: https://build.opensuse.org/request/show/643508 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=56
This commit is contained in:
parent
a52524cd47
commit
05d175b09d
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:a0e11645ee37c90b40c46d607070c4fd583e2cd46231b1c06e389c5e814eed76
|
|
||||||
size 1249656
|
|
3
pip-18.1.tar.gz
Normal file
3
pip-18.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:c0a292bd977ef590379a3f05d7b7f65135487b67470f6281289a94e015650ea1
|
||||||
|
size 1259370
|
@ -1,3 +1,55 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Oct 20 15:36:00 UTC 2018 - Arun Persaud <arun@gmx.de>
|
||||||
|
|
||||||
|
- specfile:
|
||||||
|
* remove devel from noarch
|
||||||
|
|
||||||
|
- update to version 18.1:
|
||||||
|
* Features
|
||||||
|
+ Allow PEP 508 URL requirements to be used as dependencies.
|
||||||
|
+ As a security measure, pip will raise an exception when
|
||||||
|
installing packages from PyPI if those packages depend on
|
||||||
|
packages not also hosted on PyPI. In the future, PyPI will block
|
||||||
|
uploading packages with such external URL dependencies
|
||||||
|
directly. (#4187)
|
||||||
|
+ Upgrade pyparsing to 2.2.1. (#5013)
|
||||||
|
+ Allows dist options (–abi, –python-version, –platform,
|
||||||
|
–implementation) when installing with –target (#5355)
|
||||||
|
+ Support passing svn+ssh URLs with a username to pip install
|
||||||
|
-e. (#5375)
|
||||||
|
+ pip now ensures that the RECORD file is sorted when installing
|
||||||
|
from a wheel file. (#5525)
|
||||||
|
+ Add support for Python 3.7. (#5561)
|
||||||
|
+ Malformed configuration files now show helpful error messages,
|
||||||
|
instead of tracebacks. (#5798)
|
||||||
|
* Bug Fixes
|
||||||
|
+ Checkout the correct branch when doing an editable Git
|
||||||
|
install. (#2037)
|
||||||
|
+ Run self-version-check only on commands that may access the
|
||||||
|
index, instead of trying on every run and failing to do so due
|
||||||
|
to missing options. (#5433)
|
||||||
|
+ Allow a Git ref to be installed over an existing
|
||||||
|
installation. (#5624)
|
||||||
|
+ Show a better error message when a configuration option has an
|
||||||
|
invalid value. (#5644)
|
||||||
|
+ Always revalidate cached simple API pages instead of blindly
|
||||||
|
caching them for up to 10 minutes. (#5670)
|
||||||
|
+ Avoid caching self-version-check information when cache is
|
||||||
|
disabled. (#5679)
|
||||||
|
+ Avoid traceback printing on autocomplete after flags in the
|
||||||
|
CLI. (#5751)
|
||||||
|
+ Fix incorrect parsing of egg names if pip needs to guess the
|
||||||
|
package name. (#5819)
|
||||||
|
* Vendored Libraries
|
||||||
|
+ Upgrade certifi to 2018.8.24
|
||||||
|
+ Upgrade packaging to 18.0
|
||||||
|
+ Add pep517 version 0.2
|
||||||
|
+ Upgrade pytoml to 0.1.19
|
||||||
|
+ Upgrade pkg_resources to 40.4.3 (via setuptools)
|
||||||
|
* Improved Documentation
|
||||||
|
+ Fix “Requirements Files” reference in User Guide
|
||||||
|
(#user_guide_fix_requirements_file_ref)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jul 23 21:03:56 UTC 2018 - mimi.vx@gmail.com
|
Mon Jul 23 21:03:56 UTC 2018 - mimi.vx@gmail.com
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
@ -21,7 +21,7 @@
|
|||||||
# enable testing with a build conditional (off by default):
|
# enable testing with a build conditional (off by default):
|
||||||
%bcond_with test
|
%bcond_with test
|
||||||
Name: python-pip
|
Name: python-pip
|
||||||
Version: 18.0
|
Version: 18.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Pip installs packages. Python packages. An easy_install replacement
|
Summary: Pip installs packages. Python packages. An easy_install replacement
|
||||||
License: MIT
|
License: MIT
|
||||||
@ -29,7 +29,6 @@ Group: Development/Languages/Python
|
|||||||
URL: http://www.pip-installer.org
|
URL: http://www.pip-installer.org
|
||||||
Source: https://files.pythonhosted.org/packages/source/p/pip/pip-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/p/pip/pip-%{version}.tar.gz
|
||||||
Patch0: pip-8.1.2-shipped-requests-cabundle.patch
|
Patch0: pip-8.1.2-shipped-requests-cabundle.patch
|
||||||
BuildRequires: %{python_module devel}
|
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
|
Loading…
Reference in New Issue
Block a user