#26 Update to 19.0.3 (#1679277)
Merged 5 years ago by churchyard. Opened 5 years ago by churchyard.
rpms/ churchyard/python-pip 19.0.3  into  master

file modified
+2
@@ -30,3 +30,5 @@ 

  /pip-18.1-tests.tar.gz

  /pip-19.0.2.tar.gz

  /pip-19.0.2-tests.tar.gz

+ /pip-19.0.3.tar.gz

+ /pip-19.0.3-tests.tar.gz

@@ -1,5 +1,5 @@ 

  diff --git a/src/pip/_internal/commands/install.py b/src/pip/_internal/commands/install.py

- index 1c244d2..4b07ec0 100644

+ index 1c244d23..4b07ec0f 100644

  --- a/src/pip/_internal/commands/install.py

  +++ b/src/pip/_internal/commands/install.py

  @@ -109,6 +109,14 @@ class InstallCommand(RequirementCommand):
@@ -26,7 +26,7 @@ 

   

                       lib_locations = get_lib_location_guesses(

  diff --git a/src/pip/_internal/req/req_install.py b/src/pip/_internal/req/req_install.py

- index a4834b0..d21530a 100644

+ index a4834b00..d21530ac 100644

  --- a/src/pip/_internal/req/req_install.py

  +++ b/src/pip/_internal/req/req_install.py

  @@ -431,7 +431,8 @@ class InstallRequirement(object):
@@ -66,7 +66,7 @@ 

               self.install_succeeded = True

               return

  diff --git a/src/pip/_internal/wheel.py b/src/pip/_internal/wheel.py

- index 700b180..3655bd4 100644

+ index 67bcc7f7..6470576b 100644

  --- a/src/pip/_internal/wheel.py

  +++ b/src/pip/_internal/wheel.py

  @@ -265,6 +265,7 @@ def get_csv_rows_for_installed(
@@ -76,8 +76,8 @@ 

  +    strip_file_prefix=None,  # type: Optional[str]

   ):

       # type: (...) -> List[InstalledCSVRow]

-      installed_rows = []  # type: List[InstalledCSVRow]

- @@ -282,7 +283,11 @@ def get_csv_rows_for_installed(

+      """

+ @@ -289,7 +290,11 @@ def get_csv_rows_for_installed(

           installed_rows.append(tuple(row))

       for f in generated:

           digest, length = rehash(f)
@@ -90,7 +90,7 @@ 

       for f in installed:

           installed_rows.append((installed[f], '', ''))

       return installed_rows

- @@ -299,7 +304,8 @@ def move_wheel_files(

+ @@ -306,7 +311,8 @@ def move_wheel_files(

       scheme=None,  # type: Optional[Mapping[str, str]]

       isolated=False,  # type: bool

       prefix=None,  # type: Optional[str]
@@ -100,7 +100,7 @@ 

   ):

       # type: (...) -> None

       """Install a wheel"""

- @@ -598,6 +604,7 @@ if __name__ == '__main__':

+ @@ -605,6 +611,7 @@ if __name__ == '__main__':

               outrows = get_csv_rows_for_installed(

                   reader, installed=installed, changed=changed,

                   generated=generated, lib_dir=lib_dir,

file modified
+4 -1
@@ -22,7 +22,7 @@ 

  Name:           python-%{srcname}

  # When updating, update the bundled libraries versions bellow!

  # You can use vendor_meta.sh in the dist git repo

- Version:        19.0.2

+ Version:        19.0.3

  Release:        1%{?dist}

  Summary:        A tool for installing and managing Python packages

  
@@ -489,6 +489,9 @@ 

  %endif

  

  %changelog

+ * Wed Mar 06 2019 Miro Hrončok <mhroncok@redhat.com> - 19.0.3-1

+ - Update to 19.0.3 (#1679277)

+ 

  * Wed Feb 13 2019 Miro Hrončok <mhroncok@redhat.com> - 19.0.2-1

  - Update to 19.0.2 (#1668492)

  

file modified
+2 -2
@@ -1,4 +1,4 @@ 

- SHA512 (pip-19.0.2.tar.gz) = c6e13da3a57462371d32982c80575c5181592f5c6a8e70d60ec879e689442f4ad468e7aef97eb58c9da50a5a770385aa35e701eefd713a8e9fafeb12e11d956b

- SHA512 (pip-19.0.2-tests.tar.gz) = 069464b9a99d487e6eaca9cc77e012f6850da81395191eeffd33b007f6de248e14db6c6105f643d7afa0737f4f00e48e183cae6b3f931a1b9e2cb3e2c57b7fb6

+ SHA512 (pip-19.0.3.tar.gz) = 71562800d5e52e7eb9a49ebb77ac7d2ec2b2a3ef464c9f67a4a76ed1123dce57c59c422ac91dc688f91bf9e84ad13d6547ff3cb61ac4bec54ca9428512b83163

+ SHA512 (pip-19.0.3-tests.tar.gz) = 7708661ffa529da3d96734f6659b6a0ae6d53d896ac0513cf18fb153f8bc53737f4548f87f58f27e67633cc5fc521a04bc2f96fa4dd892e12dd7f6109b44d2b8

  SHA512 (d2e63fbfc62af3b7050f619b2f5bb8658985b931.tar.gz) = fc7b11c5cbf6322469ce2eaca2a8d7eb60b17398d316f7465ab5d3d38dabd00ee22a3da7437a28f6312f0115f77f2df0d8bf0abc671e055eef06356c94283409

  SHA512 (2018.2.tar.gz) = 4c09c43a70ecb3ca3bc9445b01bf209eb382e41d9c969145696dea38551992ed88fd9b725a1264380f3dbdf8acdaf5ada3ef86b44255cdfbdbe4a01a1630912d

No vendored libraries changed.

Let's see what does the CI say.

CI is successful and the change LGTM. Please merge at will.

Pull-Request has been merged by churchyard

5 years ago