forked from pool/python-pip
- Update to 23.3.1:
- Bug Fixes - Handle a timezone indicator of Z when parsing dates in the self check. (#12338) - Fix bug where installing the same package at the same time with multiple pip processes could fail. (#12361) - Update to 23.3: - Process - Added reference to vulnerability reporting guidelines to pip's security policy. - Features - Improve extras resolution for multiple constraints on same base package. (#11924) - Improve use of datastructures to make candidate selection 1.6x faster. (#12204) - Allow pip install --dry-run to use platform and ABI overriding options. (#12215) - Add is_yanked boolean entry to the installation report (--report) to indicate whether the requirement was yanked from the index, but was still selected by pip conform to PEP 592. (#12224) - Bug Fixes - Ignore errors in temporary directory cleanup (show a warning instead). (#11394) - Normalize extras according to PEP 685 from package metadata in the resolver for comparison. This ensures extras are correctly compared and merged as long as the package providing the extra(s) is built with values normalized according to the standard. Note, however, that this does not solve cases where the package itself contains OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=109
This commit is contained in:
parent
9143020fdc
commit
b8579ce913
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:975e6b09fe9d14927b67db05d7de3a60503a1696c8c23ca2486f114c20097ad4
|
|
||||||
size 9370625
|
|
3
pip-23.3.1-gh.tar.gz
Normal file
3
pip-23.3.1-gh.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:4192f1ed5f8f1e01557d8c02ffd845c64d4a4567e0864ca78b74b0b5456c0f62
|
||||||
|
size 9397023
|
@ -1,12 +1,10 @@
|
|||||||
---
|
---
|
||||||
src/pip/_vendor/certifi/core.py | 70 ++++------------------------------------
|
src/pip/_vendor/certifi/core.py | 105 +++-------------------------------------
|
||||||
tests/unit/test_options.py | 5 ++
|
tests/unit/test_options.py | 5 +
|
||||||
2 files changed, 13 insertions(+), 62 deletions(-)
|
2 files changed, 13 insertions(+), 97 deletions(-)
|
||||||
|
|
||||||
Index: pip-22.3.1/src/pip/_vendor/certifi/core.py
|
--- a/src/pip/_vendor/certifi/core.py
|
||||||
===================================================================
|
+++ b/src/pip/_vendor/certifi/core.py
|
||||||
--- pip-22.3.1.orig/src/pip/_vendor/certifi/core.py
|
|
||||||
+++ pip-22.3.1/src/pip/_vendor/certifi/core.py
|
|
||||||
@@ -3,106 +3,17 @@ certifi.py
|
@@ -3,106 +3,17 @@ certifi.py
|
||||||
~~~~~~~~~~
|
~~~~~~~~~~
|
||||||
|
|
||||||
@ -122,10 +120,8 @@ Index: pip-22.3.1/src/pip/_vendor/certifi/core.py
|
|||||||
- return read_text("pip._vendor.certifi", "cacert.pem", encoding="ascii")
|
- return read_text("pip._vendor.certifi", "cacert.pem", encoding="ascii")
|
||||||
+def contents() -> str:
|
+def contents() -> str:
|
||||||
+ return read_text(encoding="ascii")
|
+ return read_text(encoding="ascii")
|
||||||
Index: pip-22.3.1/tests/unit/test_options.py
|
--- a/tests/unit/test_options.py
|
||||||
===================================================================
|
+++ b/tests/unit/test_options.py
|
||||||
--- pip-22.3.1.orig/tests/unit/test_options.py
|
|
||||||
+++ pip-22.3.1/tests/unit/test_options.py
|
|
||||||
@@ -1,4 +1,5 @@
|
@@ -1,4 +1,5 @@
|
||||||
import os
|
import os
|
||||||
+import os.path
|
+import os.path
|
||||||
@ -140,7 +136,7 @@ Index: pip-22.3.1/tests/unit/test_options.py
|
|||||||
from tests.lib.options_helpers import AddFakeCommandMixin
|
from tests.lib.options_helpers import AddFakeCommandMixin
|
||||||
|
|
||||||
|
|
||||||
@@ -619,6 +621,9 @@ class TestOptionsConfigFiles:
|
@@ -618,6 +620,9 @@ class TestOptionsConfigFiles:
|
||||||
else:
|
else:
|
||||||
assert expect == cmd._determine_file(options, need_value=False)
|
assert expect == cmd._determine_file(options, need_value=False)
|
||||||
|
|
||||||
|
@ -1,3 +1,74 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Nov 21 10:38:00 UTC 2023 - Matej Cepl <mcepl@cepl.eu>
|
||||||
|
|
||||||
|
- Update to 23.3.1:
|
||||||
|
- Bug Fixes
|
||||||
|
- Handle a timezone indicator of Z when parsing dates in the
|
||||||
|
self check. (#12338)
|
||||||
|
- Fix bug where installing the same package at the same time
|
||||||
|
with multiple pip processes could fail. (#12361)
|
||||||
|
- Update to 23.3:
|
||||||
|
- Process
|
||||||
|
- Added reference to vulnerability reporting guidelines to
|
||||||
|
pip's security policy.
|
||||||
|
- Features
|
||||||
|
- Improve extras resolution for multiple constraints on same
|
||||||
|
base package. (#11924)
|
||||||
|
- Improve use of datastructures to make candidate selection
|
||||||
|
1.6x faster. (#12204)
|
||||||
|
- Allow pip install --dry-run to use platform and ABI
|
||||||
|
overriding options. (#12215)
|
||||||
|
- Add is_yanked boolean entry to the installation report
|
||||||
|
(--report) to indicate whether the requirement was yanked
|
||||||
|
from the index, but was still selected by pip conform to
|
||||||
|
PEP 592. (#12224)
|
||||||
|
- Bug Fixes
|
||||||
|
- Ignore errors in temporary directory cleanup (show a
|
||||||
|
warning instead). (#11394)
|
||||||
|
- Normalize extras according to PEP 685 from package metadata
|
||||||
|
in the resolver for comparison. This ensures extras are
|
||||||
|
correctly compared and merged as long as the package
|
||||||
|
providing the extra(s) is built with values normalized
|
||||||
|
according to the standard. Note, however, that this
|
||||||
|
does not solve cases where the package itself contains
|
||||||
|
unnormalized extra values in the metadata. (#11649)
|
||||||
|
- Prevent downloading sdists twice when PEP 658 metadata is
|
||||||
|
present. (#11847)
|
||||||
|
- Include all requested extras in the install report
|
||||||
|
(--report). (#11924)
|
||||||
|
- Removed uses of datetime.datetime.utcnow from non-vendored
|
||||||
|
code. (#12005)
|
||||||
|
- Consistently report whether a dependency comes from an
|
||||||
|
extra. (#12095)
|
||||||
|
- Fix completion script for zsh (#12166)
|
||||||
|
- Fix improper handling of the new onexc argument of
|
||||||
|
shutil.rmtree() in Python 3.12. (#12187)
|
||||||
|
- Filter out yanked links from the available versions
|
||||||
|
error message: "(from versions: 1.0, 2.0, 3.0)" will
|
||||||
|
not contain yanked versions conform PEP 592. The yanked
|
||||||
|
versions (if any) will be mentioned in a separate error
|
||||||
|
message. (#12225)
|
||||||
|
- Fix crash when the git version number contains something
|
||||||
|
else than digits and dots. (#12280)
|
||||||
|
- Use -r=... instead of -r ... to specify references with
|
||||||
|
Mercurial. (#12306, CVE-2023-5752, bsc#1217353)
|
||||||
|
- Redact password from URLs in some additional
|
||||||
|
places. (#12350)
|
||||||
|
- pip uses less memory when caching large packages. As a
|
||||||
|
result, there is a new on-disk cache format stored in a new
|
||||||
|
directory ($PIP_CACHE_DIR/http-v2). (#2984)
|
||||||
|
- Vendored Libraries
|
||||||
|
- Upgrade certifi to 2023.7.22
|
||||||
|
- Add truststore 0.8.0
|
||||||
|
- Upgrade urllib3 to 1.26.17
|
||||||
|
- Improved Documentation
|
||||||
|
- Document that pip search support has been removed from PyPI
|
||||||
|
(#12059)
|
||||||
|
- Clarify --prefer-binary in CLI and docs (#12122)
|
||||||
|
- Document that using OS-provided Python can cause pip's test
|
||||||
|
suite to report false failures. (#12334)
|
||||||
|
- Adjust pip-shipped-requests-cabundle.patch.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Aug 28 03:30:09 UTC 2023 - Steve Kowalik <steven.kowalik@suse.com>
|
Mon Aug 28 03:30:09 UTC 2023 - Steve Kowalik <steven.kowalik@suse.com>
|
||||||
|
|
||||||
|
@ -40,11 +40,11 @@
|
|||||||
%endif
|
%endif
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-pip%{psuffix}
|
Name: python-pip%{psuffix}
|
||||||
Version: 23.2.1
|
Version: 23.3.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A Python package management system
|
Summary: A Python package management system
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: http://www.pip-installer.org
|
URL: https://pip.pypa.io
|
||||||
# The PyPI archive lacks the tests
|
# The PyPI archive lacks the tests
|
||||||
Source: https://github.com/pypa/pip/archive/%{version}.tar.gz#/pip-%{version}-gh.tar.gz
|
Source: https://github.com/pypa/pip/archive/%{version}.tar.gz#/pip-%{version}-gh.tar.gz
|
||||||
# PATCH-FIX-OPENSUSE pip-shipped-requests-cabundle.patch -- adapted patch from python-certifi package
|
# PATCH-FIX-OPENSUSE pip-shipped-requests-cabundle.patch -- adapted patch from python-certifi package
|
||||||
|
Loading…
Reference in New Issue
Block a user