SHA256
1
0
forked from pool/python-pip

Compare commits

...

170 Commits

Author SHA256 Message Date
85dcf546ee Accepting request 1219342 from devel:languages:python
- update to 24.3.1:
  * Allow multiple nested inclusions of the same requirements
    file again.
  * Deprecate wheel filenames that are not compliant with PEP
    440.
  * Detect recursively referencing requirements files and help
    users identify the source.
  * Support for PEP 730 iOS wheels.
  * Display a better error message when an already installed
    package has an invalid requirement.
  * Ignore PIP_TARGET and pip.conf global.target when preparing a
    build environment.
  * Restore support for macOS 10.12 and older (via truststore).
  * Allow installing pip in editable mode in a virtual
    environment on Windows.
  * Upgrade certifi to 2024.8.30
  * Upgrade distlib to 0.3.9
  * Upgrade truststore to 0.10.0
  * Upgrade urllib3 to 1.26.20

OBS-URL: https://build.opensuse.org/request/show/1219342
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=69
2024-10-30 16:33:22 +00:00
a2c906fd02 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=138 2024-10-30 08:12:14 +00:00
593a4781e4 - update to 24.3.1:
* Allow multiple nested inclusions of the same requirements
    file again.
  * Deprecate wheel filenames that are not compliant with PEP
    440.
  * Detect recursively referencing requirements files and help
    users identify the source.
  * Support for PEP 730 iOS wheels.
  * Display a better error message when an already installed
    package has an invalid requirement.
  * Ignore PIP_TARGET and pip.conf global.target when preparing a
    build environment.
  * Restore support for macOS 10.12 and older (via truststore).
  * Allow installing pip in editable mode in a virtual
    environment on Windows.
  * Upgrade certifi to 2024.8.30
  * Upgrade distlib to 0.3.9
  * Upgrade truststore to 0.10.0
  * Upgrade urllib3 to 1.26.20

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=137
2024-10-30 08:10:27 +00:00
0f4ff55d77 Accepting request 1202624 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1202624
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=68
2024-09-24 15:31:20 +00:00
a795463c49 - Adapt disable-ssl-context-in-buildenv.patch to make it compatible
with leap

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=135
2024-09-23 11:47:40 +00:00
045ced153d Accepting request 1193638 from devel:languages:python
- update to 24.2:
  * Deprecate pip install --editable falling back to setup.py
    develop when using a setuptools version that does not support
    PEP 660 (setuptools v63 and older).
  * Check unsupported packages for the current platform. (#11054)
  * Check unsupported packages for the current platform.
  * Use system certificates and certifi certificates to verify
    HTTPS connections on Python 3.10+. Python 3.9 and earlier
    only use certifi. To revert to previous behaviour, pass the
    flag --use-deprecated=legacy-certs. (#11647)
  * Use system certificates and certifi certificates to verify
    HTTPS connections on Python 3.10+. Python 3.9 and earlier
    only use certifi.
  * To revert to previous behaviour, pass the flag --use-
    deprecated=legacy-certs.
  * Improve discovery performance of installed packages when the
    importlib.metadata backend is used to load distribution
    metadata (used by default under Python 3.11+). (#12656)
  * Improve discovery performance of installed packages when the
    importlib.metadata backend is used to load distribution
    metadata (used by default under Python 3.11+).
  * Improve performance when the same requirement string appears
    many times during resolution, by consistently caching the
    parsed requirement string. (#12663)
  * Improve performance when the same requirement string appears
    many times during resolution, by consistently caching the
    parsed requirement string.
  * Minor performance improvement of finding applicable package
    candidates by not repeatedly calculating their versions
    (#12664)

OBS-URL: https://build.opensuse.org/request/show/1193638
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=67
2024-08-29 13:42:28 +00:00
ebf5677ed4 Accepting request 1170734 from devel:languages:python
- update to 24.0:
  * Retry on HTTP status code 502
  * Automatically use the setuptools PEP 517 build backend when
    --config-settings is used for projects without
    pyproject.toml.
  * Make pip freeze and pip uninstall of legacy editable installs
    of packages whose name contains _ compatible with
    setuptools>=69.0.3.
  * Support per requirement --config-settings for editable
    installs.
  * Optimized usage of --find-links=<path-to-dir>, by only
    scanning the relevant directory once, only considering file
    names that are valid wheel or sdist names, and only
    considering files in the directory that are related to the
    install.
  * Removed wheel from the [build-system].requires list fallback
    that is used when pyproject.toml is absent.
  * Upgrade distlib to 0.3.8
  * Fix explanation of how PIP_CONFIG_FILE works
  * Fix outdated pip install argument description in
    documentation.
  * Replace some links to PEPs with links to the canonical
    specifications on the :doc:`pypug:index`
  * Updated the pyproject.toml document to stop suggesting to
    depend on wheel as a build dependency directly.
  * Update supported interpreters in development docs
  * Most project metadata is now defined statically via pip's
    pyproject.toml file.

OBS-URL: https://build.opensuse.org/request/show/1170734
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=66
2024-04-30 15:26:13 +00:00
fb358edc38 - update to 24.0:
* Retry on HTTP status code 502
  * Automatically use the setuptools PEP 517 build backend when
    --config-settings is used for projects without
    pyproject.toml.
  * Make pip freeze and pip uninstall of legacy editable installs
    of packages whose name contains _ compatible with
    setuptools>=69.0.3.
  * Support per requirement --config-settings for editable
    installs.
  * Optimized usage of --find-links=<path-to-dir>, by only
    scanning the relevant directory once, only considering file
    names that are valid wheel or sdist names, and only
    considering files in the directory that are related to the
    install.
  * Removed wheel from the [build-system].requires list fallback
    that is used when pyproject.toml is absent.
  * Upgrade distlib to 0.3.8
  * Fix explanation of how PIP_CONFIG_FILE works
  * Fix outdated pip install argument description in
    documentation.
  * Replace some links to PEPs with links to the canonical
    specifications on the :doc:`pypug:index`
  * Updated the pyproject.toml document to stop suggesting to
    depend on wheel as a build dependency directly.
  * Update supported interpreters in development docs
  * Most project metadata is now defined statically via pip's
    pyproject.toml file.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=120
2024-04-28 19:10:57 +00:00
3a92190cac Accepting request 1144283 from devel:languages:python
- Fix shebang path for "pip3.XX" binaries

OBS-URL: https://build.opensuse.org/request/show/1144283
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=65
2024-02-06 15:32:49 +00:00
fd35a26ee1 - Don't use %python_fix_shebang_path, not available on leap yet
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=118
2024-02-05 12:46:46 +00:00
ad4c01baa5 - Fix shebang path for "pip3.XX" binaries
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=117
2024-02-05 11:50:48 +00:00
ed277998e9 Accepting request 1136254 from devel:languages:python
Forwarded request #1134667 from bnavigator

- Drop deprecated setup.py installmethod, bootstrap PEP517 with
    built-in pip instead
  - python3XX-pip-wheel can now be a regular subpackage
  - Drop obsolete python2 directives in specfile

OBS-URL: https://build.opensuse.org/request/show/1136254
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=64
2024-02-02 14:45:01 +00:00
eb6fea59a9 Accepting request 1134667 from home:bnavigator:branches:devel:languages:python
- Drop deprecated setup.py installmethod, bootstrap PEP517 with
  built-in pip instead
- python3XX-pip-wheel can now be a regular subpackage
- Drop obsolete python2 directives in specfile

OBS-URL: https://build.opensuse.org/request/show/1134667
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=115
2024-01-02 17:39:27 +00:00
e0c8d187e0 Accepting request 1133888 from devel:languages:python
- update to 23.3.2:
  * Fix a bug in extras handling for link requirements (`#12372
  * Fix mercurial revision "parse error": use ``--rev={ref}``
    instead of ``-r={ref}`` (`#12373

- Finally drop csv23, it has been removed upstream since 2021.
    ``setup.py``.
- Use libalternatives instead of update-alternatives.
    * Document that certain removals can be fast tracked.
  * use %python_clone and %python_install_alternative for sip and
  * Make the setup.py install deprecation warning less
    noisy. We warn only when setup.py install succeeded and
    setup.py bdist_wheel failed, as situations where both
    fails are most probably irrelevant to this deprecation.
- 20.2.2
  * Only attempt to use the keyring once and if it fails, don’t try
    again. This prevents spamming users with several keyring unlock
  * Fix regression that distributions in system site-packages are
    not correctly found when a virtual environment is configured
  * Disable caching for range requests, which causes corrupted
    wheels when pip tries to obtain metadata using the feature
  * Always use UTF-8 to read pyvenv.cfg to match the built-in venv.
  * 2020 Resolver: Correctly handle marker evaluation in
    constraints and exclude them if their markers do not match the
  * Correctly find already-installed distributions with dot (.) in
  * Trace a better error message on installation failure due to
  * Fix SVN version detection for alternative SVN distributions.
  * New resolver: Correctly include the base package when specified
  * Use UTF-8 to handle ZIP archive entries on Python 2 according
    to PEP 427, so non-ASCII paths can be resolved as expected.

OBS-URL: https://build.opensuse.org/request/show/1133888
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=63
2023-12-19 22:15:35 +00:00
7d362cf4a6 - update to 23.3.2:
* Fix a bug in extras handling for link requirements (`#12372
  * Fix mercurial revision "parse error": use ``--rev={ref}``
    instead of ``-r={ref}`` (`#12373
- Finally drop csv23, it has been removed upstream since 2021.
    ``setup.py``.
- Use libalternatives instead of update-alternatives.
    * Document that certain removals can be fast tracked.
  * use %python_clone and %python_install_alternative for sip and
  * Make the setup.py install deprecation warning less
    noisy. We warn only when setup.py install succeeded and
    setup.py bdist_wheel failed, as situations where both
    fails are most probably irrelevant to this deprecation.
- 20.2.2
  * Only attempt to use the keyring once and if it fails, don’t try
    again. This prevents spamming users with several keyring unlock
  * Fix regression that distributions in system site-packages are
    not correctly found when a virtual environment is configured
  * Disable caching for range requests, which causes corrupted
    wheels when pip tries to obtain metadata using the feature
  * Always use UTF-8 to read pyvenv.cfg to match the built-in venv.
  * 2020 Resolver: Correctly handle marker evaluation in
    constraints and exclude them if their markers do not match the
  * Correctly find already-installed distributions with dot (.) in
  * Trace a better error message on installation failure due to
  * Fix SVN version detection for alternative SVN distributions.
  * New resolver: Correctly include the base package when specified
  * Use UTF-8 to handle ZIP archive entries on Python 2 according
    to PEP 427, so non-ASCII paths can be resolved as expected.
  * Add deprecation warning for invalid requirements format

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=113
2023-12-18 14:19:23 +00:00
40414955d4 Accepting request 1127960 from devel:languages:python
- 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.

OBS-URL: https://build.opensuse.org/request/show/1127960
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=62
2023-11-22 17:54:20 +00:00
8a34ace17e - 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=111
2023-11-21 16:33:21 +00:00
b29b786657 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=110 2023-11-21 16:21:10 +00:00
b8579ce913 - 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
2023-11-21 10:45:17 +00:00
ffacb94886 Accepting request 1106201 from devel:languages:python
- Finally drop csv23, it has been removed upstream since 2021. 
- Shift around sle15_python_module_pythons.

- Upgrade to 23.2.1
  * Bug fixes
    - Disable PEP 658 metadata fetching with the legacy resolver.
- Upgrade to 23.2
  * Process
    - Deprecate support for eggs for Python 3.11 or later, when the
      new importlib.metadata backend is used to load distribution
      metadata. This only affects the egg distribution format (with
      the .egg extension); distributions using the .egg-info metadata
      format (but are not actually eggs) are not affected. For more
      information about eggs, see relevant section in the setuptools
      documentation.
  * Deprecations and Removals
    - Deprecate legacy version and version specifiers that don’t
      conform to PEP 440
    - freeze no longer excludes the setuptools, distribute, and wheel
      from the output when running on Python 3.12 or later, where they
      are not included in a virtual environment by default. Use
      --exclude if you wish to exclude any of these packages.
  * Features
    - make rejection messages slightly different between 1 and 8, so
      the user can make the difference.
  * Bug Fixes
    - Fix pip completion --zsh.
    - Prevent downloading files twice when PEP 658 metadata is present
    - Add permission check before configuration
    - Fix deprecation warnings in Python 3.12 for usage of

OBS-URL: https://build.opensuse.org/request/show/1106201
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=61
2023-08-30 08:19:12 +00:00
9143020fdc Shift around sle15_python_module_pythons.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=108
2023-08-28 03:31:08 +00:00
ce9fde948e - Finally drop csv23, it has been removed upstream since 2021.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=107
2023-08-28 03:27:26 +00:00
4c451ce0fd Accepting request 1102789 from home:mschreiner:branches:devel:languages:python
- Upgrade to 23.2.1
  * Bug fixes
    - Disable PEP 658 metadata fetching with the legacy resolver.
- Upgrade to 23.2
  Various bug fixes and enhancements. Check the changes file.

OBS-URL: https://build.opensuse.org/request/show/1102789
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=106
2023-08-11 19:03:42 +00:00
7251d89ab6 Accepting request 1092512 from devel:languages:python
- Remove .exe files from package (bsc#1212015)

OBS-URL: https://build.opensuse.org/request/show/1092512
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=60
2023-06-14 14:29:12 +00:00
82592cacee - Remove .exe files from package (bsc#1212015)
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=105
2023-06-12 10:53:56 +00:00
59a20bd3d6 Accepting request 1084918 from devel:languages:python
- Update to 23.1.2
  - Upgrade setuptools to 67.7.2
- 23.1.1:
  - Revert #11487, as it causes issues with virtualenvs created by the
    Windows Store distribution of Python. (#11987)
  - Revert pkg_resources (via setuptools) back to 65.6.3
  - Update documentation to reflect the new behavior of using the
    cache of locally built wheels in hash-checking mode. (#11967)

OBS-URL: https://build.opensuse.org/request/show/1084918
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=59
2023-05-30 20:01:58 +00:00
6075e156e4 Clean up the SPEC file
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=104
2023-05-04 20:03:20 +00:00
8e6dc8d6ee Accepting request 1084785 from home:dgarcia:pep-668
- Update to 23.1.2
  - Upgrade setuptools to 67.7.2
- 23.1.1:
  - Revert #11487, as it causes issues with virtualenvs created by the
    Windows Store distribution of Python. (#11987)
  - Revert pkg_resources (via setuptools) back to 65.6.3
  - Update documentation to reflect the new behavior of using the
    cache of locally built wheels in hash-checking mode. (#11967)
- 23.1:
  - Remove support for the deprecated --install-options. (#11358)
  - --no-binary does not imply setup.py install anymore. Instead a
    wheel will be built locally and installed. (#11451)
  - --no-binary does not disable the cache of locally built wheels
    anymore. It only means "don't download wheels". (#11453)
  - Deprecate --build-option and --global-option. Users are invited to
    switch to --config-settings. (#11859)
  - Using --config-settings with projects that don't have a
    pyproject.toml now prints a deprecation warning. In the future the
    presence of config settings will automatically enable the default
    build backend for legacy projects and pass the setttings to it.
    (#11915)
  - Remove setup.py install fallback when building a wheel failed for
    projects without pyproject.toml. (#8368)
  - When the wheel package is not installed, pip now uses the default
    build backend instead of setup.py install and setup.py develop for
    project without pyproject.toml. (#8559)
  - Specify egg-link location in assertion message when it does not
    match installed location to provide better error message for
    debugging. (#10476)
  - Present conflict information during installation after each choice
    that is rejected (pass -vv to pip install to show it) (#10937)
  - Display dependency chain on each Collecting/Processing log line.
    (#11169)
  - Support a per-requirement --config-settings option in requirements
    files. (#11325)
  - The --config-settings/-C option now supports using the same key
    multiple times. When the same key is specified multiple times, all
    values are passed to the build backend as a list, as opposed to
    the previous behavior, where pip would only pass the last value if
    the same key was used multiple times. (#11681)
  - Add -C as a short version of the --config-settings option.
    (#11786)
  - Reduce the number of resolver rounds, since backjumping makes the
    resolver more efficient in finding solutions. This also makes
    pathological cases fail quicker. (#11908)
  - Warn if --hash is used on a line without requirement in a
    requirements file. (#11935)
  - Stop propagating CLI --config-settings to the build dependencies.
    They already did not propagate to requirements provided in
    requirement files. To pass the same config settings to several
    requirements, users should provide the requirements as CLI
    arguments. (#11941)
  - Support wheel cache when using --require-hashes. (#5037)
  - Add --keyring-provider flag. See the Authentication page in the
    documentation for more info. (#8719)
  - In the case of virtual environments, configuration files are now
    also included from the base installation. (#9752)
  - Fix grammar by changing "A new release of pip available:" to "A
    new release of pip is available:" in the notice used for
    indicating that. (#11529)
  - Normalize paths before checking if installed scripts are on PATH.
    (#11719)
  - Correct the way to decide if keyring is available. (#11774)
  - More consistent resolution backtracking by removing legacy hack
    related to setuptools resolution (#11837)
  - Include AUTHORS.txt in pip's wheels. (#11882)
  - The uninstall and install --force-reinstall commands no longer
    call normalize_path() repeatedly on the same paths. Instead, these
    results are cached for the duration of an uninstall operation,
    resulting in improved performance, particularly on Windows.
    (#11889)
  - Fix and improve the parsing of hashes embedded in URL fragments.
    (#11936)
  - When package A depends on package B provided as a direct URL
    dependency including a hash embedded in the link, the
    --require-hashes option did not warn when user supplied hashes
    were missing for package B. (#11938)
  - Correctly report requested_extras in the installation report when
    extras are specified for a local directory installation. (#11946)
  - When installing an archive from a direct URL or local file,
    populate download_info.info.hashes in the installation report, in
    addition to the legacy download_info.info.hash key. (#11948)
- 23.0.1:
  - Change the hashes in the installation report to be a mapping. Emit
    the archive_info.hashes dictionary in direct_url.json. (#11312)
  - Implement logic to read the EXTERNALLY-MANAGED file as specified
    in PEP 668. This allows a downstream Python distributor to prevent
    users from using pip to modify the externally managed environment.
    (#11381)
  - Enable the use of keyring found on PATH. This allows keyring
    installed using pipx to be used by pip. (#11589)
  - The inspect and installation report formats are now declared
    stable, and their version has been bumped from 0 to 1. (#11757)
  - Wheel cache behavior is restored to match previous versions,
    allowing the cache to find existing entries. (#11527)
  - Use the "venv" scheme if available to obtain prefixed lib paths.
    (#11598)
  - Deprecated a historical ambiguity in how egg fragments in
    URL-style requirements are formatted and handled. egg fragments
    that do not look like PEP 508 names now produce a deprecation
    warning. (#11617)
  - Fix scripts path in isolated build environment on Debian. (#11623)
  - Make pip show show the editable location if package is editable
    (#11638)
  - Stop checking that wheel is present when build-system.requires is
    provided without build-system.build-backend as setuptools (which
    we still check for) will inject it anyway. (#11673)
  - Fix an issue when an already existing in-memory distribution would
    cause exceptions in pip install (#11704)

OBS-URL: https://build.opensuse.org/request/show/1084785
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=103
2023-05-04 19:59:15 +00:00
6531b0803b Accepting request 1081839 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1081839
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=58
2023-04-22 19:59:47 +00:00
caa9979d38 Accepting request 1081519 from home:dirkmueller:acdc:as_python3_module
SR for python stack proposal

OBS-URL: https://build.opensuse.org/request/show/1081519
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=102
2023-04-21 14:15:41 +00:00
163fe8bde0 Accepting request 1041297 from devel:languages:python
- Update to 22.3.1: (bsc#1205478)
  * Deprecations and Removals
    + Deprecate installation with setup.py install when no-binary is enabled
      for source distributions without pyproject.toml. (#11452)
    + Deprecate installation with setup.py install when the wheel package is
      absent for source distributions without pyproject.toml. (#8559)
    + Drop --use-deprecated=out-of-tree-build. (#11001)
  * Features
    + Use the data-dist-info-metadata attribute from PEP 658 to resolve
      distribution metadata without downloading the dist yet. (#11111)
    + Add --dry-run option to pip install, to let it print what it would
     install but not actually make changes in the target environment. (#11096)
    + Add pip inspect command to obtain the list of installed distributions
     and other information about the Python environment, in JSON. (#11245)
    + Add option to install and uninstall commands to opt-out from
      running-as-root warning. (#10556)
    + Add a user interface for supplying config settings to build backends.
      (#11059)
    + Explains why specified version cannot be retrieved when Requires-Python
      is not satisfied. (#9615)
    + Validate build dependencies when using --no-build-isolation. (#9794)
  * Bug Fixes
    + Fix entry point generation of pip.X, pipX.Y, and easy_install-X.Y to
      correctly account for multi-digit Python version segments. (#11547)
    + Fix --no-index when --index-url or --extra-index-url is specified
      inside a requirements file. (#11276)
    + Ignore distributions with invalid Name in metadata instead of crashing,
      when using the importlib.metadata backend. (#11352)
    + Raise RequirementsFileParseError when parsing malformed requirements
      options that can’t be sucessfully parsed by shlex. (#11491)

OBS-URL: https://build.opensuse.org/request/show/1041297
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=57
2022-12-09 12:16:25 +00:00
e7a16fb30e - Update to 22.3.1: (bsc#1205478)
* Deprecations and Removals
    + Deprecate installation with setup.py install when no-binary is enabled
      for source distributions without pyproject.toml. (#11452)
    + Deprecate installation with setup.py install when the wheel package is
      absent for source distributions without pyproject.toml. (#8559)
    + Drop --use-deprecated=out-of-tree-build. (#11001)
  * Features
    + Use the data-dist-info-metadata attribute from PEP 658 to resolve
      distribution metadata without downloading the dist yet. (#11111)
    + Add --dry-run option to pip install, to let it print what it would
     install but not actually make changes in the target environment. (#11096)
    + Add pip inspect command to obtain the list of installed distributions
     and other information about the Python environment, in JSON. (#11245)
    + Add option to install and uninstall commands to opt-out from
      running-as-root warning. (#10556)
    + Add a user interface for supplying config settings to build backends.
      (#11059)
    + Explains why specified version cannot be retrieved when Requires-Python
      is not satisfied. (#9615)
    + Validate build dependencies when using --no-build-isolation. (#9794)
  * Bug Fixes
    + Fix entry point generation of pip.X, pipX.Y, and easy_install-X.Y to
      correctly account for multi-digit Python version segments. (#11547)
    + Fix --no-index when --index-url or --extra-index-url is specified
      inside a requirements file. (#11276)
    + Ignore distributions with invalid Name in metadata instead of crashing,
      when using the importlib.metadata backend. (#11352)
    + Raise RequirementsFileParseError when parsing malformed requirements
      options that can’t be sucessfully parsed by shlex. (#11491)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=101
2022-12-08 04:12:44 +00:00
7e09a496cb Accepting request 994298 from devel:languages:python
- skip subversion tests, not that relevant to pull in
  dozens of dependencies into small bootstrap

- Add distutils-reproducible-compile.patch to make installed
  files ordered correctly and thus builds reproducible again
  (port of the fix for bpo#29708 and gh#python/cpython#8057).

OBS-URL: https://build.opensuse.org/request/show/994298
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=56
2022-08-10 15:12:28 +00:00
fa06cedcd2 - skip subversion tests, not that relevant to pull in
dozens of dependencies into small bootstrap

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=100
2022-08-10 10:34:01 +00:00
c6fe1446b4 Accepting request 993345 from home:mcepl:branches:devel:languages:python
- Add distutils-reproducible-compile.patch to make installed
  files ordered correctly and thus builds reproducible again
  (port of the fix for bpo#29708 and gh#python/cpython#8057).

OBS-URL: https://build.opensuse.org/request/show/993345
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=99
2022-08-05 15:13:09 +00:00
426449ea52 Accepting request 963100 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/963100
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=55
2022-03-22 18:36:11 +00:00
19311e4f60 Accepting request 963083 from home:bnavigator:branches:devel:languages:python
- Avoid cycle: BuildRequire ca-certificates only in tests

OBS-URL: https://build.opensuse.org/request/show/963083
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=98
2022-03-19 23:03:41 +00:00
875ceee46f Accepting request 962618 from home:bnavigator:branches:devel:languages:python
- Update requirements: v22 is not compatible with Python 3.6 and
  thus not suitable for SLE/Leap 15.

OBS-URL: https://build.opensuse.org/request/show/962618
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=97
2022-03-18 17:03:06 +00:00
90461fc037 - Update to 22.0.4:
- Drop the doctype check, that presented a warning for index
    pages that use non-compliant HTML 5.
- Update to 22.0.3:
  - Print the exception via rich.traceback, when running with
    --debug.
  - Only calculate topological installation order, for packages
    that are going to be installed/upgraded.
  - This fixes an AssertionError that occured when determining
    installation order, for a very specific combination of
    upgrading-already-installed-package + change of dependencies
    + fetching some packages from a package index. This
    combination was especially common in Read the Docs'
    builds.
  - Use html.parser by default, instead of falling back
    to html5lib when --use-deprecated=html5lib is not
    passed.
  - Clarify that using per-requirement overrides disables the
    usage of wheels.
- Update to 22.0.2:
  - Instead of failing on index pages that use non-compliant
    HTML 5, print a deprecation warning and fall back to
    html5lib-based parsing for now. This simplifies the migration
    for non-compliant index pages, by letting such indexes
    function with a warning.
- Update to 22.0.1:
  - Accept lowercase <!doctype html> on index pages.
  - Properly handle links parsed by html5lib, when using
    --use-deprecated=html5lib.
- Update to 22.0:

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=96
2022-03-17 10:48:03 +00:00
ea42b17226 Fix SPEC file
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=95
2022-02-25 16:35:29 +00:00
ea597cee0d Remove conflicts.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=94
2021-11-13 16:28:39 +00:00
aca87be971 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=93 2021-11-08 12:12:17 +00:00
ab9131a0af - update to 21.3.1:
* Always refuse installing or building projects that have no ``pyproject.toml`` nor
    ``setup.py``. 
  * Tweak running-as-root detection, to check ``os.getuid`` if it exists, on
    Unix-y and non-Linux/non-MacOS machines.
  * When installing projects with a ``pyproject.toml`` in editable mode, and the build
    backend does not support :pep:`660`, prepare metadata using
    ``prepare_metadata_for_build_wheel`` instead of ``setup.py egg_info``. Also, refuse
    installing projects that only have a ``setup.cfg`` and no ``setup.py`` nor
    ``pyproject.toml``. These restore the pre-21.3 behaviour.
  * Restore compatibility of where configuration files are loaded from on MacOS
  * Upgrade pep517 to 0.12.0
  * Improve deprecation warning regarding the copying of source trees when
    installing from a local directory.
  * Suppress location mismatch warnings when pip is invoked from a Python source
    tree, so ``ensurepip`` does not emit warnings on CPython ``make install``.
  * On Python 3.10 or later, the installation scheme backend has been changed to use
    ``sysconfig``. This is to anticipate the deprecation of ``distutils`` in Python
    3.10, and its scheduled removal in 3.12. For compatibility considerations, pip
    installations running on Python 3.9 or lower will continue to use ``distutils``.
  * Remove the ``--build-dir`` option and aliases, one last time.
  * In-tree builds are now the default. ``--use-feature=in-tree-build`` is now
    ignored. ``--use-deprecated=out-of-tree-build`` may be used temporarily to ease
    the transition.
  * Un-deprecate source distribution re-installation behaviour.
  * Replace vendored appdirs with platformdirs.
  * Support `PEP 610 <https://www.python.org/dev/peps/pep-0610/>`_ to detect
    editable installs in ``pip freeze`` and  ``pip list``. The ``pip list`` column output
    has a new ``Editable project location`` column, and the JSON output has a new
    ``editable_project_location`` field.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=92
2021-11-07 18:12:24 +00:00
1c02e69cec Accepting request 929675 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/929675
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=54
2021-11-06 17:15:46 +00:00
24643ed603 Accepting request 923310 from home:schubi2
- Use libalternatives instead of update-alternatives.

OBS-URL: https://build.opensuse.org/request/show/923310
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=91
2021-11-05 14:12:26 +00:00
da67104680 Accepting request 860150 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/860150
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=53
2021-01-08 16:32:17 +00:00
5bae5d22f5 Accepting request 860101 from home:polslinux:branches:devel:languages:python
- Update to 20.2.4:
  Deprecations and Removals
    * Document that certain removals can be fast tracked. 
    * Document that Python versions are generally supported until
      PyPI usage falls below 5%
  Features
    * New resolver: Avoid accessing indexes when the installed
      candidate is preferred and considered good enough
    * Improve error message friendliness when an environment
      has packages with corrupted metadata
    * Cache package listings on index packages so they are guarenteed
      to stay stable during a pip command session. This also improves
      performance when a index page is accessed multiple times during
      the command session
    * New resolver: Tweak resolution logic to improve user experience
      when user-supplied requirements conflict
  Bug Fixes
    * New resolver: Correctly respect ``Requires-Python`` metadata
      to reject incompatible packages in ``--no-deps`` mode
    * New resolver: Pick up hash declarations in constraints files
      and use them to filter available distributions
    * New resolver: If a package appears multiple times in user
      specification with different ``--hash`` options, only hashes
      that present in all specifications should be allowed

OBS-URL: https://build.opensuse.org/request/show/860101
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=90
2021-01-04 11:34:14 +00:00
a076c60351 Accepting request 855625 from devel:languages:python
- Fix the condition to really not break Python 2.7 in Leap

- We don't need to break Python 2.7

- Add remove_mock.patch to remove dependency on the external mock
  package (gh#pypa/pip#9266).

OBS-URL: https://build.opensuse.org/request/show/855625
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=52
2020-12-16 09:59:28 +00:00
2f884dd870 Accepting request 855624 from home:bnavigator:branches:devel:languages:python
- Fix the condition to really not break Python 2.7 in Leap

OBS-URL: https://build.opensuse.org/request/show/855624
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=89
2020-12-14 00:24:25 +00:00
7f7716d917 Accepting request 855619 from home:mcepl:branches:devel:tools:scm
- We don't need to break Python 2.7

OBS-URL: https://build.opensuse.org/request/show/855619
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=88
2020-12-13 21:37:51 +00:00
ab39133ac8 Accepting request 855338 from home:mcepl:branches:devel:tools:scm
- Add remove_mock.patch to remove dependency on the external mock
  package (gh#pypa/pip#9266).

OBS-URL: https://build.opensuse.org/request/show/855338
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=87
2020-12-12 12:12:56 +00:00
2bdcb1dc9d Accepting request 848968 from devel:languages:python
- Actually, test the new structure of package. :$
- Remove the additional sourced setuptools*.whl and use BR on
  python-setuptools-wheel.

- Add wheel subpackage with the generated wheel for this package
  (bsc#1176262, CVE-2019-20916).
- Make wheel a separate build run to avoid the setuptools/wheel build
  cycle.

OBS-URL: https://build.opensuse.org/request/show/848968
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=51
2020-11-25 18:27:44 +00:00
ec091103ec - Actually, test the new structure of package. :$
- Remove the additional sourced setuptools*.whl and use BR on
  python-setuptools-wheel.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=86
2020-11-16 16:40:46 +00:00
c71a1fcae8 - Add wheel subpackage with the generated wheel for this package
(bsc#1176262, CVE-2019-20916).
- Make wheel a separate build run to avoid the setuptools/wheel build
  cycle.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=84
2020-11-13 18:54:07 +00:00
c5362853a5 Accepting request 845027 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/845027
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=50
2020-11-02 08:39:26 +00:00
a80f0c1f13 Accepting request 844950 from home:bnavigator:branches:devel:languages:python
- Make executables setup compatible with multiple python3 flavors
  * update-alternatives for pip3
  * use python_clone and python_install_alternative for sip and 
    sip3
  * use original sip%{python_bin_suffix} as is
  * effect: consistent shebangs and specifiers inside the
    entry_point scripts

OBS-URL: https://build.opensuse.org/request/show/844950
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=83
2020-10-30 12:49:34 +00:00
f3ce0051e1 Accepting request 841872 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/841872
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=49
2020-10-29 08:48:05 +00:00
Tomáš Chvátal
86e65d86fb Accepting request 841036 from home:bnavigator:branches:devel:languages:python
Update to 20.2.3

With the increased use of %pyproject_wheel we need an up to date pip

Needs new package python-csv23 for testing

OBS-URL: https://build.opensuse.org/request/show/841036
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=82
2020-10-15 08:14:59 +00:00
91e967375f Accepting request 786378 from devel:languages:python
- Skip virtualenv tests that are pinned to old virtualenv 16

OBS-URL: https://build.opensuse.org/request/show/786378
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=48
2020-03-26 23:27:15 +00:00
Tomáš Chvátal
ced1a9187c Accepting request 788169 from devel:languages:python
- Skip virtualenv tests that are pinned to old virtualenv 16

OBS-URL: https://build.opensuse.org/request/show/788169
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=81
2020-03-25 11:57:55 +00:00
Tomáš Chvátal
1d4598150d osc copypac from project:openSUSE:Factory package:python-pip revision:47
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=80
2020-03-25 11:56:51 +00:00
Tomáš Chvátal
1f5afbea3e - Skip virtualenv tests that are pinned to old virtualenv 16
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=79
2020-03-19 09:43:50 +00:00
Oliver Kurz
a5c550ebec Accepting request 770248 from devel:languages:python
- update to 20.0.2
- add setuptools-45.1.0-py3-none-any.whl for testsuite
- drop pytest5.patch
 * Fix a regression in generation of compatibility tags
 * Rename an internal module, to avoid ImportErrors due to improper uninstallation
 * Switch to a dedicated CLI tool for vendoring dependencies.
 * Remove wheel tag calculation from pip and use packaging.tags. This should provide more tags ordered better than in prior releases.
 *  Deprecate setup.py-based builds that do not generate an .egg-info directory.
 *  The pip>=20 wheel cache is not retro-compatible with previous versions. Until pip 21.0, pip will continue to take advantage of existing legacy cache entries.
 *  Deprecate undocumented --skip-requirements-regex option.
 *  Deprecate passing install-location-related options via --install-option.
 *  Use literal "abi3" for wheel tag on CPython 3.x, to align with PEP 384 which only defines it for this platform.
 *  Remove interpreter-specific major version tag e.g. cp3-none-any from consideration. This behavior was not documented strictly, and this tag in particular is not useful. Anyone with a use case can create an issue with pypa/packaging.
 *  Wheel processing no longer permits wheels containing more than one top-level .dist-info directory.
 *  Support for the git+git@ form of VCS requirement is being deprecated and will be removed in pip 21.0. Switch to git+https:// or git+ssh://. git+git:// also works but its use is discouraged as it is insecure.
 *  Default to doing a user install (as if --user was passed) when the main site-packages directory is not writeable and user site-packages are enabled.
 *  Warn if a path in PATH starts with tilde during pip install.
 *  Cache wheels built from Git requirements that are considered immutable, because they point to a commit hash.
 *  Add option --no-python-version-warning to silence warnings related to deprecation of Python versions.
 *  Cache wheels that pip wheel built locally, matching what pip install does. This particularly helps performance in workflows where pip wheel is used for building before installing. Users desiring the original behavior can use pip wheel --no-cache-dir
 *  Display CA information in pip debug.
 *  Show only the filename (instead of full URL), when downloading from PyPI.
 *  Suggest a more robust command to upgrade pip itself to avoid confusion when the current pip command is not available as pip.
 *  Define all old pip console script entrypoints to prevent import issues in stale wrapper scripts.
 *  The build step of pip wheel now builds all wheels to a cache first, then copies them to the wheel directory all at once. Before, it built them to a temporary directory and moved them to the wheel directory one by one.
 *  Expand ~ prefix to user directory in path options, configs, and environment variables. Values that may be either URL or path are not currently supported, to avoid ambiguity:
   --find-links
   --constraint, -c
   --requirement, -r
   --editable, -e

OBS-URL: https://build.opensuse.org/request/show/770248
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=47
2020-02-14 15:24:40 +00:00
709047657f - drop pytest5.patch
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=77
2020-02-05 12:23:24 +00:00
5c90bd62cc - update to 20.0.2
- add setuptools-45.1.0-py3-none-any.whl for testsuite
 * Fix a regression in generation of compatibility tags
 * Rename an internal module, to avoid ImportErrors due to improper uninstallation
 * Switch to a dedicated CLI tool for vendoring dependencies.
 * Remove wheel tag calculation from pip and use packaging.tags. This should provide more tags ordered better than in prior releases.
 *  Deprecate setup.py-based builds that do not generate an .egg-info directory.
 *  The pip>=20 wheel cache is not retro-compatible with previous versions. Until pip 21.0, pip will continue to take advantage of existing legacy cache entries.
 *  Deprecate undocumented --skip-requirements-regex option.
 *  Deprecate passing install-location-related options via --install-option.
 *  Use literal "abi3" for wheel tag on CPython 3.x, to align with PEP 384 which only defines it for this platform.
 *  Remove interpreter-specific major version tag e.g. cp3-none-any from consideration. This behavior was not documented strictly, and this tag in particular is not useful. Anyone with a use case can create an issue with pypa/packaging.
 *  Wheel processing no longer permits wheels containing more than one top-level .dist-info directory.
 *  Support for the git+git@ form of VCS requirement is being deprecated and will be removed in pip 21.0. Switch to git+https:// or git+ssh://. git+git:// also works but its use is discouraged as it is insecure.
 *  Default to doing a user install (as if --user was passed) when the main site-packages directory is not writeable and user site-packages are enabled.
 *  Warn if a path in PATH starts with tilde during pip install.
 *  Cache wheels built from Git requirements that are considered immutable, because they point to a commit hash.
 *  Add option --no-python-version-warning to silence warnings related to deprecation of Python versions.
 *  Cache wheels that pip wheel built locally, matching what pip install does. This particularly helps performance in workflows where pip wheel is used for building before installing. Users desiring the original behavior can use pip wheel --no-cache-dir
 *  Display CA information in pip debug.
 *  Show only the filename (instead of full URL), when downloading from PyPI.
 *  Suggest a more robust command to upgrade pip itself to avoid confusion when the current pip command is not available as pip.
 *  Define all old pip console script entrypoints to prevent import issues in stale wrapper scripts.
 *  The build step of pip wheel now builds all wheels to a cache first, then copies them to the wheel directory all at once. Before, it built them to a temporary directory and moved them to the wheel directory one by one.
 *  Expand ~ prefix to user directory in path options, configs, and environment variables. Values that may be either URL or path are not currently supported, to avoid ambiguity:
   --find-links
   --constraint, -c
   --requirement, -r
   --editable, -e
 *  Correctly handle system site-packages, in virtual environments created with venv (PEP 405).

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=76
2020-02-05 10:27:04 +00:00
4994d55d89 Accepting request 741067 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/741067
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=46
2019-11-04 16:07:16 +00:00
Tomáš Chvátal
ed5c541dc1 Accepting request 741057 from home:mcalabkova:branches:devel:languages:python
- Update to version 19.3.1
  * Document Python 3.8 support.
  * Fix bug that prevented installation of PEP 517 packages without setup.py.
  * Remove undocumented support for un-prefixed URL requirements pointing to SVN repositories.
  * Remove the deprecated --venv option from pip config.
  * Make pip show warn about packages not found.
  * Abort installation if any archive contains a file which would be placed outside the extraction location.
  * pip's CLI completion code no longer prints a Traceback if it is interrupted.
  * Ignore errors copying socket files for local source installs (in Python 3).
  * Skip copying .tox and .nox directories to temporary build directories
  * Ignore "require_virtualenv" in pip config

OBS-URL: https://build.opensuse.org/request/show/741057
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=74
2019-10-18 12:29:37 +00:00
92cfb5c5e2 Accepting request 723012 from devel:languages:python
- Update to version 19.2.2:
  * Merge pull request #6827 from cjerdonek/issue-6804-find-links-expansion
  * Fix handling of tokens (single part credentials) in URLs (#6818)
  * Simplify the handling of "typing.cast"

OBS-URL: https://build.opensuse.org/request/show/723012
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=45
2019-08-16 13:28:31 +00:00
5115d3704b - Update to version 19.2.2:
* Merge pull request #6827 from cjerdonek/issue-6804-find-links-expansion
  * Fix handling of tokens (single part credentials) in URLs (#6818)
  * Simplify the handling of "typing.cast"

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=72
2019-08-13 08:20:21 +00:00
6c37711f24 Accepting request 721781 from devel:languages:python
- Update to version 19.2.1:
  * Fix a ``NoneType`` ``AttributeError`` when evaluating hashes and no hashes provided
  * Drop support for EOL Python 3.4.
  * Credentials will now be loaded using keyring when installed
  * Fully support using --trusted-host inside requirements files
  * Update timestamps in pip's --log file to include milliseconds
  * Respect whether a file has been marked as "yanked" from a simple repository (see PEP 592 for details)
  * When choosing candidates to install, prefer candidates with a hash matching one of the user-provided hashes
  * Improve the error message when METADATA or PKG-INFO is None when accessing metadata
  * Add a new command pip debug that can display e.g. the list of compatible tags for the current Python
  * Display hint on installing with --pre when search results include pre-release versions
  * Report to Warehouse that pip is running under CI if the PIP_IS_CI environment variable is set
  * Allow --python-version to be passed as a dotted version string (e.g. 3.7 or 3.7.3)
  * Log the final filename and SHA256 of a .whl file when done building a wheel
  * Include the wheel's tags in the log message explanation when a candidate wheel link is found incompatible
  * Add a --path argument to pip freeze to support --target installations
  * Add a --path argument to pip list to support --target installations

OBS-URL: https://build.opensuse.org/request/show/721781
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=44
2019-08-09 14:49:01 +00:00
e0c3171293 - Update to version 19.2.1:
* Fix a ``NoneType`` ``AttributeError`` when evaluating hashes and no hashes provided
  * Drop support for EOL Python 3.4.
  * Credentials will now be loaded using keyring when installed
  * Fully support using --trusted-host inside requirements files
  * Update timestamps in pip's --log file to include milliseconds
  * Respect whether a file has been marked as "yanked" from a simple repository (see PEP 592 for details)
  * When choosing candidates to install, prefer candidates with a hash matching one of the user-provided hashes
  * Improve the error message when METADATA or PKG-INFO is None when accessing metadata
  * Add a new command pip debug that can display e.g. the list of compatible tags for the current Python
  * Display hint on installing with --pre when search results include pre-release versions
  * Report to Warehouse that pip is running under CI if the PIP_IS_CI environment variable is set
  * Allow --python-version to be passed as a dotted version string (e.g. 3.7 or 3.7.3)
  * Log the final filename and SHA256 of a .whl file when done building a wheel
  * Include the wheel's tags in the log message explanation when a candidate wheel link is found incompatible
  * Add a --path argument to pip freeze to support --target installations
  * Add a --path argument to pip list to support --target installations

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=70
2019-08-08 14:02:19 +00:00
2082c67f05 Accepting request 717473 from devel:languages:python
- Add patch to build with pytest5, also sent upstream:
  * pytest5.patch

OBS-URL: https://build.opensuse.org/request/show/717473
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=43
2019-07-30 11:04:18 +00:00
Tomáš Chvátal
4662065a62 - Add patch to build with pytest5, also sent upstream:
* pytest5.patch

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=68
2019-07-22 08:25:30 +00:00
25a7a5805b Accepting request 703186 from devel:languages:python
- Update to version 19.1.1+git.1557777841.63878672:
  * Update news file to match usual style
  * fix-5963: assert error message
  * Simplify CandidateEvaluator.evaluate_link().
  * Fix 6486 mac gitignore (#6487)
  * Store instances in the VcsSupport registry instead of classes.
  * Remove unused cls argument from VcsSupport.unregister().
  * fix-5963: Add news file
  * fix-5963: fail elegantly on missing name or section in config set / unset
  * Remove unnecessary slices.
  * Fix typo.

- Switch to multibuild, so testing is separate from the building
  of the package itself. (forwarded request 703184 from mcepl)

OBS-URL: https://build.opensuse.org/request/show/703186
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=42
2019-05-17 21:40:44 +00:00
34466b4ae2 Accepting request 703184 from home:mcepl:branches:devel:languages:python
- Update to version 19.1.1+git.1557777841.63878672:
  * Update news file to match usual style
  * fix-5963: assert error message
  * Simplify CandidateEvaluator.evaluate_link().
  * Fix 6486 mac gitignore (#6487)
  * Store instances in the VcsSupport registry instead of classes.
  * Remove unused cls argument from VcsSupport.unregister().
  * fix-5963: Add news file
  * fix-5963: fail elegantly on missing name or section in config set / unset
  * Remove unnecessary slices.
  * Fix typo.

- Switch to multibuild, so testing is separate from the building
  of the package itself.

OBS-URL: https://build.opensuse.org/request/show/703184
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=66
2019-05-15 15:33:36 +00:00
6f0bdab7e0 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
2019-05-11 17:29:32 +00:00
c7b70875b7 Accepting request 683720 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/683720
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=41
2019-03-12 08:46:23 +00:00
Tomáš Chvátal
00cea51cd8 Accepting request 683599 from home:apersaud:branches:devel:languages:python
update to latest version

OBS-URL: https://build.opensuse.org/request/show/683599
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=63
2019-03-11 08:30:56 +00:00
Stephan Kulow
b92b55d7ff Accepting request 673642 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/673642
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=40
2019-02-24 16:03:46 +00:00
Tomáš Chvátal
356c3fd368 Accepting request 673607 from home:jengelh:branches:devel:languages:python
- Avoid name repetition in summary. Summary should not be a
  sentence (let alone three).

OBS-URL: https://build.opensuse.org/request/show/673607
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=61
2019-02-12 11:29:37 +00:00
Tomáš Chvátal
e1e06c37b8 Accepting request 673419 from home:frispete:python
- Update to 19.0.2 (2019-02-09):
  + Bug Fixes
    * Fix a crash where PEP 517-based builds using --no-cache-dir
      would fail in some circumstances with an AssertionError due
      to not finalizing a build directory internally. (#6197)
    * Provide a better error message if attempting an editable
      install of a directory with a pyproject.toml but no setup.py.
      (#6170)
    * The implicit default backend used for projects that provide a
      pyproject.toml file without explicitly specifying build-
      backend now behaves more like direct execution of setup.py,
      and hence should restore compatibility with projects that
      were unable to be installed with pip 19.0. This raised the
      minimum required version of setuptools for such builds to
      40.8.0. (#6163)
    * Allow RECORD lines with more than three elements, and display
      a warning. (#6165)
    * AdjacentTempDirectory fails on unwritable directory instead
      of locking up the uninstall command. (#6169)
    * Make failed uninstalls roll back more reliably and better at
      avoiding naming conflicts. (#6194)
    * Ensure the correct wheel file is copied when building PEP 517
      distribution is built. (#6196)
    * The Python 2 end of life warning now only shows on CPython,
      which is the implementation that has announced end of life
      plans. (#6207)
  + Improved Documentation
    * Re-write README and documentation index (#5815)
- Update to 19.0.1 (2019-01-23):
  + Bug Fixes

OBS-URL: https://build.opensuse.org/request/show/673419
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=60
2019-02-12 08:54:28 +00:00
65686cea89 Accepting request 655666 from devel:languages:python
- Fix fdupes call

OBS-URL: https://build.opensuse.org/request/show/655666
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=39
2018-12-14 19:46:24 +00:00
Tomáš Chvátal
a79f74f347 - Fix fdupes call
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=58
2018-12-06 13:19:23 +00:00
cc791233b4 Accepting request 643579 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/643579
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=38
2018-11-06 12:49:41 +00:00
Tomáš Chvátal
05d175b09d 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
2018-10-21 18:21:38 +00:00
3a87f72d6e Accepting request 624944 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/624944
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=37
2018-08-02 12:48:43 +00:00
Tomáš Chvátal
a52524cd47 Accepting request 624890 from home:mimi_vx:branches:devel:languages:python
- update to 18.0
- refresh pip-8.1.2-shipped-requests-cabundle.patch
 * drop python 3.3 support
 * Remove the legacy format from pip list.
 * Remove support for cleaning up #egg fragment postfixes
 * Remove the shim for the old get-pip.py location
 * Introduce a new --prefer-binary flag, to prefer older wheels
     over newer source packages.
 * Improve autocompletion function on file name completion 
 * Add support for installing PEP 518 build dependencies from source
 * Improve status message when upgrade is skipped due to only-if-needed strategy

OBS-URL: https://build.opensuse.org/request/show/624890
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=54
2018-07-24 06:41:54 +00:00
836026db78 Accepting request 599442 from devel:languages:python
- update to 10.0.1
- refactor pip-8.1.2-shipped-requests-cabundle.patch
 * Switch the default repository to the new "PyPI 2.0" running at https://pypi.org/
 * big bunch of changes from 9.0.1 in NEWS.rst

OBS-URL: https://build.opensuse.org/request/show/599442
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=36
2018-04-26 11:34:24 +00:00
Tomáš Chvátal
65a9bcca8a OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=52 2018-04-20 16:12:49 +00:00
Tomáš Chvátal
5901895627 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=51 2018-04-20 16:12:25 +00:00
Tomáš Chvátal
1e080e3705 Accepting request 599168 from home:mimi_vx:branches:devel:languages:python
- update to 10.0.1
- refactor pip-8.1.2-shipped-requests-cabundle.patch
 * Switch the default repository to the new "PyPI 2.0" running at https://pypi.org/
 * big bunch of changes from 9.0.1 in NEWS.rst

OBS-URL: https://build.opensuse.org/request/show/599168
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=50
2018-04-20 08:09:42 +00:00
e8a8edcb64 Accepting request 483376 from devel:languages:python
- uninstall alternatives in %postun

OBS-URL: https://build.opensuse.org/request/show/483376
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=35
2017-04-19 16:04:53 +00:00
OBS User buildservice-autocommit
dcb41e3411 Updating link to change in openSUSE:Factory/python-pip revision 35.0
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=2474f808c61b06e0e01a49b660ca3ee3
2017-04-19 16:04:53 +00:00
Todd R
44afbd60a4 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=49 2017-04-14 16:46:04 +00:00
Todd R
b9cac7281f OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=48 2017-04-14 16:45:49 +00:00
Jan Matejek
16c54f4fd8 - uninstall alternatives in %postun
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=47
2017-03-29 13:52:20 +00:00
a63d1652ed Accepting request 460264 from devel:languages:python
first batch of singlespec packages

OBS-URL: https://build.opensuse.org/request/show/460264
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=34
2017-02-27 17:36:14 +00:00
Jan Matejek
8e50cef319 Accepting request 460233 from devel:languages:python:singlespec
- update for singlespec
- fix alternative priorities
- drop cacert.pem and add pip-8.1.2-shipped-requests-cabundle.patch
  to ensure function without it
- add ca-certificates{,-mozilla} dependency to ensure existence of CA bundle
- add fdupes

OBS-URL: https://build.opensuse.org/request/show/460233
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=46
2017-02-24 14:34:50 +00:00
05876ac78f Accepting request 451336 from devel:languages:python
1

OBS-URL: https://build.opensuse.org/request/show/451336
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=33
2017-01-23 10:31:08 +00:00
848608d4e8 Accepting request 449217 from home:stroeder:branches:devel:languages:python
update to 9.0.1

OBS-URL: https://build.opensuse.org/request/show/449217
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=45
2017-01-19 09:55:31 +00:00
662f1e56c2 Accepting request 406269 from devel:languages:python
- Use pypi.io as Source url.

- update to 8.1.2:
  * Fix a regression on systems with uninitialized locale (:issue:`3575`).
  * Use environment markers to filter packages before determining if a
    required wheel is supported. Solves (:issue:`3254`).
  * Make glibc parsing for `manylinux1` support more robust for the variety of
    glibc versions found in the wild (:issue:`3588`).
  * Update environment marker support to fully support PEP 508 and legacy
    environment markers (:issue:`3624`).
  * Always use debug logging to the ``--log`` file (:issue:`3351`).
  * Don't attempt to wrap search results for extremely narrow terminal windows
    (:issue:`3655`).
  * Fix regression with non-ascii requirement files on Python 2 and add support
    for encoding headers in requirement files (:issue:`3548`, :pull:`3547`).

OBS-URL: https://build.opensuse.org/request/show/406269
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=32
2016-07-10 16:45:10 +00:00
c142c91b16 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=44 2016-07-04 08:19:16 +00:00
5e2cff497f Accepting request 405574 from home:tbechtold:branches:devel:languages:python
- Use pypi.io as Source url.

OBS-URL: https://build.opensuse.org/request/show/405574
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=43
2016-07-04 08:18:08 +00:00
Jan Matejek
026ad1dbba Accepting request 395519 from home:tbechtold:branches:devel:languages:python
- update to 8.1.2:
  * Fix a regression on systems with uninitialized locale (:issue:`3575`).
  * Use environment markers to filter packages before determining if a
    required wheel is supported. Solves (:issue:`3254`).
  * Make glibc parsing for `manylinux1` support more robust for the variety of
    glibc versions found in the wild (:issue:`3588`).
  * Update environment marker support to fully support PEP 508 and legacy
    environment markers (:issue:`3624`).
  * Always use debug logging to the ``--log`` file (:issue:`3351`).
  * Don't attempt to wrap search results for extremely narrow terminal windows
    (:issue:`3655`).
  * Fix regression with non-ascii requirement files on Python 2 and add support
    for encoding headers in requirement files (:issue:`3548`, :pull:`3547`).

OBS-URL: https://build.opensuse.org/request/show/395519
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=42
2016-05-16 15:25:36 +00:00
42d1f0e505 Accepting request 369207 from devel:languages:python
1

OBS-URL: https://build.opensuse.org/request/show/369207
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=31
2016-03-16 09:43:07 +00:00
Todd R
ff8bd97bc6 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
2016-03-09 16:22:56 +00:00
64feb8fb09 Accepting request 354910 from devel:languages:python
1

OBS-URL: https://build.opensuse.org/request/show/354910
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=30
2016-01-28 16:19:47 +00:00
Todd R
f386c9ff32 Accepting request 354908 from home:TheBlackCat:branches:devel:languages:python
Update to 0.8.0

OBS-URL: https://build.opensuse.org/request/show/354908
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=40
2016-01-20 10:39:43 +00:00
Stephan Kulow
b6b7b64de1 Accepting request 333759 from devel:languages:python
1

OBS-URL: https://build.opensuse.org/request/show/333759
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=29
2015-10-03 18:29:36 +00:00
Denisart Benjamin
ad652f3f07 Accepting request 333669 from home:tbechtold:branches:devel:languages:python
- update to 7.1.2:
  * Don't raise an error if pip is not installed when checking for the latest pip
    version.
  * Check that the wheel cache directory is writable before we attempt to write
    cached files to them.
  * Move the pip version check until *after* any installs have been performed,
    thus removing the extraenous warning when upgrading pip.
  * Added debug logging when using a cached wheel.
  * Respect platlib by default on platforms that have it separated from purlib.
  * Upgrade packaging to 15.3.
    * Normalize post-release spellings for rev/r prefixes.
  * Upgrade distlib to 0.2.1.
    * Updated launchers to decode shebangs using UTF-8. This allows non-ASCII
      pathnames to be correctly handled.
    * Ensured that the executable written to shebangs is normcased.
    * Changed ScriptMaker to work better under Jython.
  * Upgrade ipaddress to 1.0.13.
  * Allow constraining versions globally without having to know exactly what will
    be installed by the pip command. :issue:`2731`.
  * Accept --no-binary and --only-binary via pip.conf. :issue:`2867`.
  * Allow ``--allow-all-external`` within a requirements file.
  * Fixed an issue where ``--user`` could not be used when ``--prefix`` was used
    in a distutils configuration file.
  * Fixed an issue where the SOABI tags were not correctly being generated on
    Python 3.5.
  * Fixed an issue where we were advising windows users to upgrade by directly
    executing pip, when that would always fail on Windows.
  * Allow ``~`` to be expanded within a cache directory in all situations.
  * Fixed a regression where ``--no-cache-dir`` would raise an exception, fixes
    :issue:`2855`.

OBS-URL: https://build.opensuse.org/request/show/333669
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=39
2015-09-25 12:47:47 +00:00
Denisart Benjamin
fbcb483950 Accepting request 333163 from home:DocB:branches:Application:ERP:Tryton:3.4
Added coreutils as requirement. Otherwise SLE12 build breaks in SUSE Studio

OBS-URL: https://build.opensuse.org/request/show/333163
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=38
2015-09-24 13:07:51 +00:00
9a8431d50b Accepting request 319405 from devel:languages:python
1

OBS-URL: https://build.opensuse.org/request/show/319405
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=28
2015-08-06 22:20:46 +00:00
Todd R
04982ea520 Accepting request 319404 from home:TheBlackCat:branches:devel:languages:python
Make tests conditional to avoid dependency loop.

OBS-URL: https://build.opensuse.org/request/show/319404
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=37
2015-07-29 13:08:31 +00:00
Todd R
81b7367b7f OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=36 2015-07-29 12:58:21 +00:00
Todd R
9e887f17eb OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=35 2015-07-29 12:56:35 +00:00
fc2a6f9ce7 Accepting request 292198 from devel:languages:python
1

OBS-URL: https://build.opensuse.org/request/show/292198
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=27
2015-03-23 11:18:55 +00:00
Denisart Benjamin
4f6dfeb6cc Accepting request 291343 from home:tbechtold:branches:devel:languages:python
New upstream release

OBS-URL: https://build.opensuse.org/request/show/291343
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=34
2015-03-21 11:36:48 +00:00
fb4335ed4a Accepting request 261627 from devel:languages:python
1

OBS-URL: https://build.opensuse.org/request/show/261627
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=26
2014-11-18 21:45:08 +00:00
Denisart Benjamin
507e0aada9 Accepting request 260387 from home:Ledest:misc
fix bashism in pre script

OBS-URL: https://build.opensuse.org/request/show/260387
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=33
2014-11-14 15:31:02 +00:00
Stephan Kulow
723335a49b Accepting request 213128 from devel:languages:python
- Package /usr/bin/pip2

- Readd argparse requirement for SLE

- Update to version 1.5:
  * **BACKWARD INCOMPATIBLE** pip no longer supports the --use-mirrors,
    -M, and --mirrors flags. The mirroring support has been removed. In
    order to use a mirror specify it as the primary index with -i or
    --index-url, or as an additional index with --extra-index-url. (Pull #1098, CVE-2013-5123)
  * **BACKWARD INCOMPATIBLE** pip no longer will scrape insecure external urls by
    default nor will it install externally hosted files by default. Users may opt
    into installing externally hosted or insecure files or urls using
    --allow-external PROJECT and --allow-unverified PROJECT. (Pull #1055)
  * **BACKWARD INCOMPATIBLE** pip no longer respects dependency links by default.
    Users may opt into respecting them again using --process-dependency-links.
  * **DEPRECATION** pip install --no-install and pip install
    --no-download are now formally deprecated.  See Issue #906 for discussion on
    possible alternatives, or lack thereof, in future releases.
  * **DEPRECATION** pip zip and pip unzip are now formally deprecated.
  * pip will now install Mac OSX platform wheels from PyPI. (Pull #1278)
  * pip now generates the appropriate platform-specific console scripts when
    installing wheels. (Pull #1251)
  * Pip now confirms a wheel is supported when installing directly from a path or
    url. (Pull #1315)
  * Fixed #1097, --ignore-installed now behaves again as designed, after it was
    unintentionally broke in v0.8.3 when fixing Issue #14 (Pull #1352).
  * Fixed a bug where global scripts were being removed when uninstalling --user
    installed packages (Pull #1353).
  * Fixed #1163, --user wasn't being respected when installing scripts from wheels (Pull #1176).
  * Fixed #1150, we now assume '_' means '-' in versions from wheel filenames (Pull #1158).

OBS-URL: https://build.opensuse.org/request/show/213128
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=24
2014-01-09 16:25:44 +00:00
Sascha Peilicke
365439b184 - Package /usr/bin/pip2
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=32
2014-01-08 11:03:25 +00:00
Sascha Peilicke
b725ee1449 - Readd argparse requirement for SLE
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=31
2014-01-08 10:41:16 +00:00
Sascha Peilicke
780d056a54 - Update to version 1.5:
* **BACKWARD INCOMPATIBLE** pip no longer supports the --use-mirrors,
    -M, and --mirrors flags. The mirroring support has been removed. In
    order to use a mirror specify it as the primary index with -i or
    --index-url, or as an additional index with --extra-index-url. (Pull #1098, CVE-2013-5123)
  * **BACKWARD INCOMPATIBLE** pip no longer will scrape insecure external urls by
    default nor will it install externally hosted files by default. Users may opt
    into installing externally hosted or insecure files or urls using
    --allow-external PROJECT and --allow-unverified PROJECT. (Pull #1055)
  * **BACKWARD INCOMPATIBLE** pip no longer respects dependency links by default.
    Users may opt into respecting them again using --process-dependency-links.
  * **DEPRECATION** pip install --no-install and pip install
    --no-download are now formally deprecated.  See Issue #906 for discussion on
    possible alternatives, or lack thereof, in future releases.
  * **DEPRECATION** pip zip and pip unzip are now formally deprecated.
  * pip will now install Mac OSX platform wheels from PyPI. (Pull #1278)
  * pip now generates the appropriate platform-specific console scripts when
    installing wheels. (Pull #1251)
  * Pip now confirms a wheel is supported when installing directly from a path or
    url. (Pull #1315)
  * Fixed #1097, --ignore-installed now behaves again as designed, after it was
    unintentionally broke in v0.8.3 when fixing Issue #14 (Pull #1352).
  * Fixed a bug where global scripts were being removed when uninstalling --user
    installed packages (Pull #1353).
  * Fixed #1163, --user wasn't being respected when installing scripts from wheels (Pull #1176).
  * Fixed #1150, we now assume '_' means '-' in versions from wheel filenames (Pull #1158).
  * Fixed #219, error when using --log with a failed install (Pull #1205).
  * Fixed #1131, logging was buffered and choppy in Python 3.
  * Fixed #70,  --timeout was being ignored (Pull #1202).
  * Fixed #772, error when setting PIP_EXISTS_ACTION (Pull #1201).

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=30
2014-01-07 14:26:40 +00:00
Stephan Kulow
421f0df4b3 Accepting request 207963 from devel:languages:python
- Fix alternative link in buildroot

OBS-URL: https://build.opensuse.org/request/show/207963
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=23
2013-12-03 15:12:06 +00:00
Sascha Peilicke
9aa5604b0f - Fix alternative link in buildroot
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=29
2013-11-22 13:11:14 +00:00
Stephan Kulow
6549c2464a Accepting request 200711 from devel:languages:python
bnc#842516 (forwarded request 200710 from rhafer)

OBS-URL: https://build.opensuse.org/request/show/200711
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=22
2013-09-26 17:55:09 +00:00
Todd R
adb4a58947 Accepting request 200710 from home:rhafer:branches:devel:languages:python
bnc#842516

OBS-URL: https://build.opensuse.org/request/show/200710
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=28
2013-09-26 11:51:36 +00:00
Tomáš Chvátal
1630e752c7 Accepting request 186538 from devel:languages:python
- update to 1.4.1:
 * Fixed issues with installing from pybundle files (Pull #1116).
 * Fixed error when sysconfig module throws an exception (Pull #1095).
 * Don't ignore already installed pre-releases (Pull #1076).
 * Fixes related to upgrading setuptools (Pull #1092).
 * Fixes so that --download works with wheel archives (Pull #1113).
 * Fixes related to recognizing and cleaning global build dirs (Pull #1080) (forwarded request 186463 from dirkmueller)

OBS-URL: https://build.opensuse.org/request/show/186538
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=20
2013-08-13 11:22:06 +00:00
Sascha Peilicke
fe08b6136a Accepting request 186463 from home:dirkmueller:branches:devel:languages:python
- update to 1.4.1:
 * Fixed issues with installing from pybundle files (Pull #1116).
 * Fixed error when sysconfig module throws an exception (Pull #1095).
 * Don't ignore already installed pre-releases (Pull #1076).
 * Fixes related to upgrading setuptools (Pull #1092).
 * Fixes so that --download works with wheel archives (Pull #1113).
 * Fixes related to recognizing and cleaning global build dirs (Pull #1080)

OBS-URL: https://build.opensuse.org/request/show/186463
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=27
2013-08-09 08:24:31 +00:00
Stephan Kulow
72584bc59d Accepting request 184861 from devel:languages:python
- Update to version 1.4:
  * **BACKWARD INCOMPATIBLE** pip now only installs stable versions by default,
    and offers a new --pre option to also find pre-release and development
    versions. (Pull #834)
  * **BACKWARD INCOMPATIBLE** Dropped support for Python 2.5. The minimum
    supported Python version for pip 1.4 is Python 2.6.
  * Added support for installing and building wheel archives.
    Thanks Daniel Holth, Marcus Smith, Paul Moore, and Michele Lacchia
    (Pull #845)
  * Applied security patch to pip's ssl support related to certificate DNS
    wildcard matching (http://bugs.python.org/issue17980).
  * To satisfy pip's setuptools requirement, pip now recommends setuptools>=0.8,
    not distribute. setuptools and distribute are now merged into one project
    called 'setuptools'. (Pull #1003)
  * pip will now warn when installing a file that is either hosted externally to
    the index or cannot be verified with a hash. In the future pip will default
    to not installing them and will require the flags --allow-external NAME, and
    --allow-insecure NAME respectively. (Pull #985)
  * If an already-downloaded or cached file has a bad hash, re-download it rather
    than erroring out. (Issue #963).
  * pip bundle and support for installing from pybundle files is now
    considered deprecated and will be removed in pip v1.5.
  * Fixed a number of issues (#413, #709, #634, #602, and #939) related to
    cleaning up and not reusing build directories. (Pull #865, #948)
  * Added a User Agent so that pip is identifiable in logs. (Pull #901)
  * Added ssl and --user support to get-pip.py. Thanks Gabriel de Perthuis.
    (Pull #895)
  * Fixed the proxy support, which was broken in pip 1.3.x (Pull #840)
  * Fixed issue #32 - pip fails when server does not send content-type header.
    Thanks Hugo Lopes Tavares and Kelsey Hightower (Pull #872).

OBS-URL: https://build.opensuse.org/request/show/184861
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=19
2013-07-29 19:11:00 +00:00
Sascha Peilicke
77499bad92 - Update to version 1.4:
* **BACKWARD INCOMPATIBLE** pip now only installs stable versions by default,
    and offers a new --pre option to also find pre-release and development
    versions. (Pull #834)
  * **BACKWARD INCOMPATIBLE** Dropped support for Python 2.5. The minimum
    supported Python version for pip 1.4 is Python 2.6.
  * Added support for installing and building wheel archives.
    Thanks Daniel Holth, Marcus Smith, Paul Moore, and Michele Lacchia
    (Pull #845)
  * Applied security patch to pip's ssl support related to certificate DNS
    wildcard matching (http://bugs.python.org/issue17980).
  * To satisfy pip's setuptools requirement, pip now recommends setuptools>=0.8,
    not distribute. setuptools and distribute are now merged into one project
    called 'setuptools'. (Pull #1003)
  * pip will now warn when installing a file that is either hosted externally to
    the index or cannot be verified with a hash. In the future pip will default
    to not installing them and will require the flags --allow-external NAME, and
    --allow-insecure NAME respectively. (Pull #985)
  * If an already-downloaded or cached file has a bad hash, re-download it rather
    than erroring out. (Issue #963).
  * pip bundle and support for installing from pybundle files is now
    considered deprecated and will be removed in pip v1.5.
  * Fixed a number of issues (#413, #709, #634, #602, and #939) related to
    cleaning up and not reusing build directories. (Pull #865, #948)
  * Added a User Agent so that pip is identifiable in logs. (Pull #901)
  * Added ssl and --user support to get-pip.py. Thanks Gabriel de Perthuis.
    (Pull #895)
  * Fixed the proxy support, which was broken in pip 1.3.x (Pull #840)
  * Fixed issue #32 - pip fails when server does not send content-type header.
    Thanks Hugo Lopes Tavares and Kelsey Hightower (Pull #872).

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=26
2013-07-29 14:47:58 +00:00
Stephan Kulow
45a055ddc2 Accepting request 179929 from devel:languages:python
housekeeping sr, necessary due to split between d:l:p and d:l:p3 and (manual) _link removal in Factory.

OBS-URL: https://build.opensuse.org/request/show/179929
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=18
2013-06-19 14:43:10 +00:00
Sascha Peilicke
e7e7bfc1bc Python3 moved to devel:languages:python3
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=25
2013-06-17 12:52:33 +00:00
Stephan Kulow
31d106e406 Accepting request 172884 from devel:languages:python
Re-add buildrequires: python3.  This is needed for openSUSE <= 12.2 (forwarded request 172883 from TheBlackCat)

OBS-URL: https://build.opensuse.org/request/show/172884
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=17
2013-04-23 09:38:43 +00:00
Todd R
70ca7b99f0 Accepting request 172883 from devel:languages:python3
Re-add buildrequires: python3.  This is needed for openSUSE <= 12.2

OBS-URL: https://build.opensuse.org/request/show/172883
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=24
2013-04-22 16:27:54 +00:00
Todd R
5ea6789241 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=23 2013-04-22 16:09:43 +00:00
Todd R
461e86028a OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=22 2013-04-22 16:09:25 +00:00
Todd R
fb30f645d2 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=21 2013-04-22 16:09:16 +00:00
Sascha Peilicke
2c10c9c9ac - Simpler spec file
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=20
2013-04-22 09:32:49 +00:00
Stephan Kulow
915febfd52 Accepting request 159591 from devel:languages:python
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/159591
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=16
2013-03-17 09:07:44 +00:00
Alexandre Rogoski
ef60d3c2f9 - Update to 1.3.1:
* Fixed a major backward incompatible change of parsing URLs to
    externally hosted packages that got accidentily included in 1.3.
- Aditional changes from 1.3:
  * SSL Cert Verification; Make https the default for PyPI access.
    Thanks James Cleveland, Giovanni Bajo, Marcus Smith and many
    others (Pull #789).
  * Added "pip list" for listing installed packages and the latest
    version available. Thanks Rafael Caricio, Miguel Araujo, Dmitry
    Gladkov (Pull #752)
  * Fixed security issues with pip's use of temp build directories.
    Thanks David (d1b) and Thomas Guttler. (Pull #780)
  * Improvements to sphinx docs and cli help. (Pull #773)
  * Fixed issue #707, dealing with OS X temp dir handling, which was
    causing global NumPy installs to fail. (Pull #768)
  * Split help output into general vs command-specific option groups.
    Thanks Georgi Valkov. (Pull #744; Pull #721 contains preceding
    refactor)
  * Fixed dependency resolution when installing from archives with
    uppercase project names. (Pull #724)
  * Fixed problem where re-installs always occurred when using
    file:// find-links. (Pulls #683/#702)
  * "pip install -v" now shows the full download url, not just the
    archive name. Thanks Marc Abramowitz (Pull #687)
  * Fix to prevent unnecessary PyPI redirects. Thanks Alex
    Gronholm (Pull #695)
  * Fixed issue #670 - install failure under Python 3 when the same
    version of a package is found under 2 different URLs. Thanks
    Paul Moore (Pull #671)
  * Fix git submodule recursive updates.  Thanks Roey Berman.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=19
2013-03-08 13:18:16 +00:00
Stephan Kulow
3ac59951b9 Accepting request 142814 from devel:languages:python
Removed openSUSE 11.4 spec file workarounds (forwarded request 142803 from TheBlackCat) (forwarded request 142808 from TheBlackCat)

OBS-URL: https://build.opensuse.org/request/show/142814
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=14
2012-11-26 18:55:01 +00:00
Todd R
28537a18de Accepting request 142808 from devel:languages:python3
Removed openSUSE 11.4 spec file workarounds (forwarded request 142803 from TheBlackCat)

OBS-URL: https://build.opensuse.org/request/show/142808
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=18
2012-11-25 11:22:09 +00:00
Stephan Kulow
67befae263 Accepting request 133453 from devel:languages:python
Update to 1.2.1.  Note: dropped support for python 2.4. (forwarded request 133376 from poorboywilly)

OBS-URL: https://build.opensuse.org/request/show/133453
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=13
2012-09-11 07:17:33 +00:00
Ismail Dönmez
8b9fd993e9 Accepting request 133376 from home:poorboywilly:branches:devel:languages:python
Update to 1.2.1.  Note: dropped support for python 2.4.

OBS-URL: https://build.opensuse.org/request/show/133376
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=17
2012-09-10 10:50:27 +00:00
Stephan Kulow
589a5dfe93 Accepting request 116070 from devel:languages:python
Fix building python 3 package on openSUSE 11.4 x86_64 (forwarded request 116068 from TheBlackCat) (forwarded request 116069 from TheBlackCat)

OBS-URL: https://build.opensuse.org/request/show/116070
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=11
2012-05-07 20:50:23 +00:00
Todd R
dd09f955ef Accepting request 116069 from devel:languages:python3
Fix building python 3 package on openSUSE 11.4 x86_64 (forwarded request 116068 from TheBlackCat)

OBS-URL: https://build.opensuse.org/request/show/116069
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=16
2012-04-30 14:29:18 +00:00
Todd R
be871f951a Accepting request 115839 from home:TheBlackCat:branches:devel:languages:python
Add python 3 package (forwarded request 115838 from TheBlackCat)

OBS-URL: https://build.opensuse.org/request/show/115839
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=15
2012-04-27 11:40:36 +00:00
Stephan Kulow
16b82de117 Accepting request 106458 from devel:languages:python
- Update to version 1.1:
  * Fixed issue #326 - don't crash when a package's setup.py emits UTF-8
    and then fails.
  * Added --target option for installing directly to arbitrary directory.
  * Added support for authentication with Subversion repositories.
  * Fixed issue #315 - --download now downloads dependencies as well.
  * Errors from subprocesses will display the current working directory.
  * Fixed issue #369 - compatibility with Subversion 1.7.
  * Fixed issue #57 - ignore py2app-generated OS X mpkg zip files in finder.
  * Fixed issue #182 - log to ~/Library/Logs/ by default on OS X framework
    installs.
  * Fixed issue #310 - understand version tags without minor version ("py3")
    in sdist filenames.
  * Fixed issue #7 - Pip now supports optionally installing setuptools
    "extras" dependencies; e.g. "pip install Paste[openid]".
  * Fixed issue #391 - freeze no longer borks on requirements file
  * Fixed issue #288 - handle symlinks properly.
  * Fixed issue #49 - pip install -U no longer reinstalls the same versions
    of packages.
  * Removed -E option and PIP_RESPECT_VIRTUALENV; both use a restart-in-venv
    mechanism that's broken, and neither one is useful since every virtualenv
    now has pip inside it.
  * Fixed issue #366 - pip throws IndexError when it calls scraped_rel_links
  * Fixed issue #22 - pip search should set and return a userful shell
    status code
  * Fixed issue #351 and #365 - added global --exists-action command line
    option to easier script file exists conflicts, e.g. from editable
    requirements from VCS that have a changed repo URL.
- Cleaned up changes file

OBS-URL: https://build.opensuse.org/request/show/106458
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=10
2012-02-22 14:54:28 +00:00
Sascha Peilicke
bf61875125 Remove old tarball
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=14
2012-02-22 13:30:35 +00:00
Sascha Peilicke
33ec7ad37c Accepting request 106441 from home:saschpe:branches:devel:languages:python
- Update to version 1.1:
  * Fixed issue #326 - don't crash when a package's setup.py emits UTF-8
    and then fails.
  * Added --target option for installing directly to arbitrary directory.
  * Added support for authentication with Subversion repositories.
  * Fixed issue #315 - --download now downloads dependencies as well.
  * Errors from subprocesses will display the current working directory.
  * Fixed issue #369 - compatibility with Subversion 1.7.
  * Fixed issue #57 - ignore py2app-generated OS X mpkg zip files in finder.
  * Fixed issue #182 - log to ~/Library/Logs/ by default on OS X framework
    installs.
  * Fixed issue #310 - understand version tags without minor version ("py3")
    in sdist filenames.
  * Fixed issue #7 - Pip now supports optionally installing setuptools
    "extras" dependencies; e.g. "pip install Paste[openid]".
  * Fixed issue #391 - freeze no longer borks on requirements file
  * Fixed issue #288 - handle symlinks properly.
  * Fixed issue #49 - pip install -U no longer reinstalls the same versions
    of packages.
  * Removed -E option and PIP_RESPECT_VIRTUALENV; both use a restart-in-venv
    mechanism that's broken, and neither one is useful since every virtualenv
    now has pip inside it.
  * Fixed issue #366 - pip throws IndexError when it calls scraped_rel_links
  * Fixed issue #22 - pip search should set and return a userful shell
    status code
  * Fixed issue #351 and #365 - added global --exists-action command line
    option to easier script file exists conflicts, e.g. from editable
    requirements from VCS that have a changed repo URL.
- Cleaned up changes file

OBS-URL: https://build.opensuse.org/request/show/106441
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=13
2012-02-22 12:15:04 +00:00
Stephan Kulow
4c7626b3ff Accepting request 102233 from devel:languages:python
Python is awesome

OBS-URL: https://build.opensuse.org/request/show/102233
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=9
2012-02-01 08:59:58 +00:00
Sascha Peilicke
eaf11dd8ba - Run testsuite
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=12
2012-01-31 14:11:32 +00:00
Sascha Peilicke
ec2c5be977 - Only SLES-11 needs %python_sitelib and not noarch
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=11
2011-12-05 12:32:19 +00:00
Sascha Peilicke
a39ee2a28d Accepting request 84386 from devel:languages:python
- Don't repackage upstream tarball
- Require python-distribute instead of setuptools
- Package documentation
- Fix non-executable script rpmlint warning

OBS-URL: https://build.opensuse.org/request/show/84386
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=7
2011-09-26 08:17:04 +00:00
Sascha Peilicke
bf413aa296 - Don't repackage upstream tarball
- Require python-distribute instead of setuptools
- Package documentation
- Fix non-executable script rpmlint warning

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=10
2011-09-22 09:07:16 +00:00
Lars Vogdt
b6de32f1ba Accepting request 83352 from devel:languages:python
- Update to 1.0.2
  * Fixed docs issues.
  * Fixed issue #295 - Reinstall a package when using the ``install -I``
    option
  * Fixed issue #283 - Finds a Git tag pointing to same commit as
    origin/master
  * Fixed issue #279 - Use absolute path for path to docs in setup.py
  * Fixed issue #320 - Correctly handle exceptions on Python3.
  * Fixed issue #314 - Correctly parse ``--editable`` lines in requirements
    files
- Updates from 1.0.1
  * Start to use git-flow.
  * Fixed issue #274 - `find_command` should not raise AttributeError
  * Fixed issue #273 - respect Content-Disposition header. Thanks Bradley
    Ayers.
  * Fixed issue #233 - pathext handling on Windows.
  * Fixed issue #252 - svn+svn protocol.
  * Fixed issue #44 - multiple CLI searches.
  * Fixed issue #266 - current working directory when running setup.py clean.
- Updates from 1.0
  * Added Python 3 support! Huge thanks to Vinay Sajip, Vitaly Babiy, Kelsey
    Hightower, and Alex Gronholm, among others.
  * Download progress only shown on a real TTY. Thanks Alex Morega.
  * Fixed finding of VCS binaries to not be fooled by same-named directories.
    Thanks Alex Morega.
  * Fixed uninstall of packages from system Python for users of Debian/Ubuntu
    python-setuptools package (workaround until fixed in Debian and Ubuntu).
  * Added `get-pip.py https://raw.github.com/pypa/pip/master/contrib/get-pip.py
- Updates from 0.8.3
  * Fixed issue #14 - No uninstall-on-upgrade with URL package. Thanks Oliver
    Tonnhofer
  * Fixed issue #163 - Egg name not properly resolved. Thanks Igor Sobreira
  * Fixed issue #178 - Non-alphabetical installation of requirements. Thanks
    Igor Sobreira
  * Fixed issue #199 - Documentation mentions --index instead of --index-url.
    Thanks Kelsey Hightower
  * Fixed issue #204 - rmtree undefined in mercurial.py. Thanks Kelsey
    Hightower
  * Fixed bug in Git vcs backend that would break during reinstallation.
  * Fixed bug in Mercurial vcs backend related to pip freeze and branch/tag
    resolution.
  * Fixed bug in version string parsing related to the suffix "-dev".
 (forwarded request 82747 from ocefpaf)

OBS-URL: https://build.opensuse.org/request/show/83352
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=6
2011-09-19 20:56:49 +00:00
Thomas Schraitle
6d4e296c7f Accepting request 82747 from home:ocefpaf:branches:devel:languages:python
- Update to 1.0.2
  * Fixed docs issues.
  * Fixed issue #295 - Reinstall a package when using the ``install -I``
    option
  * Fixed issue #283 - Finds a Git tag pointing to same commit as
    origin/master
  * Fixed issue #279 - Use absolute path for path to docs in setup.py
  * Fixed issue #320 - Correctly handle exceptions on Python3.
  * Fixed issue #314 - Correctly parse ``--editable`` lines in requirements
    files
- Updates from 1.0.1
  * Start to use git-flow.
  * Fixed issue #274 - `find_command` should not raise AttributeError
  * Fixed issue #273 - respect Content-Disposition header. Thanks Bradley
    Ayers.
  * Fixed issue #233 - pathext handling on Windows.
  * Fixed issue #252 - svn+svn protocol.
  * Fixed issue #44 - multiple CLI searches.
  * Fixed issue #266 - current working directory when running setup.py clean.
- Updates from 1.0
  * Added Python 3 support! Huge thanks to Vinay Sajip, Vitaly Babiy, Kelsey
    Hightower, and Alex Gronholm, among others.
  * Download progress only shown on a real TTY. Thanks Alex Morega.
  * Fixed finding of VCS binaries to not be fooled by same-named directories.
    Thanks Alex Morega.
  * Fixed uninstall of packages from system Python for users of Debian/Ubuntu
    python-setuptools package (workaround until fixed in Debian and Ubuntu).
  * Added `get-pip.py https://raw.github.com/pypa/pip/master/contrib/get-pip.py
- Updates from 0.8.3
  * Fixed issue #14 - No uninstall-on-upgrade with URL package. Thanks Oliver
    Tonnhofer
  * Fixed issue #163 - Egg name not properly resolved. Thanks Igor Sobreira
  * Fixed issue #178 - Non-alphabetical installation of requirements. Thanks
    Igor Sobreira
  * Fixed issue #199 - Documentation mentions --index instead of --index-url.
    Thanks Kelsey Hightower
  * Fixed issue #204 - rmtree undefined in mercurial.py. Thanks Kelsey
    Hightower
  * Fixed bug in Git vcs backend that would break during reinstallation.
  * Fixed bug in Mercurial vcs backend related to pip freeze and branch/tag
    resolution.
  * Fixed bug in version string parsing related to the suffix "-dev".

OBS-URL: https://build.opensuse.org/request/show/82747
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=9
2011-09-19 06:35:08 +00:00
Sascha Peilicke
2ad7b4b3d0 Fixed year in copyright line
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=8
2011-01-28 15:25:19 +00:00
c32d75acd6 Autobuild autoformatter for 57863
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=4
2011-01-14 02:39:38 +00:00
58dff183dd Accepting request 57863 from devel:languages:python
Accepted submit request 57863 from user saschpe

OBS-URL: https://build.opensuse.org/request/show/57863
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=3
2011-01-14 02:39:33 +00:00
Cristian Rodríguez
90870e2e89 Accepting request 56453 from home:saschpe:branches:devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/56453
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=7
2010-12-21 15:41:18 +00:00
7f20eeb315 Autobuild autoformatter for 55758
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=2
2010-12-13 13:13:01 +00:00
a01576fb2c Accepting request 55758 from devel:languages:python
Accepted submit request 55758 from user saschpe

OBS-URL: https://build.opensuse.org/request/show/55758
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pip?expand=0&rev=1
2010-12-13 13:12:40 +00:00
Stephan Kulow
9c44768bc4 Accepting request 48173 from home:aledr:branches
OBS-URL: https://build.opensuse.org/request/show/48173
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=6
2010-09-15 08:07:32 +00:00
Peter Nixon
8400cb943e Fix error in expression so that package builds (was failing on all targets)
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=5
2010-06-20 17:58:56 +00:00
Pavol Rusnak
85e480ed91 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=4 2010-05-28 09:55:09 +00:00
Pavol Rusnak
ae16694dd0 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=3 2010-05-28 09:54:48 +00:00
Pavol Rusnak
c07cac4e8b Accepting request 40769 from home:aledr:branches
Copy from home:aledr:branches/python-pip via accept of submit request 40769 revision 2.
Request was accepted with message:
Reviewed ok

OBS-URL: https://build.opensuse.org/request/show/40769
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=2
2010-05-28 09:54:03 +00:00
Peter Nixon
89537b191e osc copypac from project:home:playpauseandstop:python package:python-pip revision:5
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=1
2010-05-19 08:50:14 +00:00
7 changed files with 46 additions and 20 deletions

View File

@ -7,7 +7,7 @@ Index: pip-24.2/src/pip/_vendor/requests/adapters.py
extract_zipped_paths(DEFAULT_CA_BUNDLE_PATH)
)
-except ImportError:
+except (ImportError, FileNotFoundError):
+except (ImportError, FileNotFoundError, ssl.SSLError):
# Bypass default SSLContext creation when Python
# interpreter isn't built with the ssl module.
_preloaded_ssl_context = None
@ -22,7 +22,7 @@ Index: pip-24.2/src/pip/_internal/cli/index_command.py
- ctx.load_verify_locations(certifi.where())
+ try:
+ ctx.load_verify_locations(certifi.where())
+ except FileNotFoundError:
+ except (FileNotFoundError, ssl.SSLError):
+ logger.warning("Disabling truststore because of missing certificates")
+ return None
return ctx

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ad0dfe75fb28092a8cbe18523391695ceb0c0d65a5c9a969349fcb13b12b84c7
size 9398156

BIN
pip-24.2-gh.tar.gz (Stored with Git LFS)

Binary file not shown.

3
pip-24.3.1-gh.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1349240eff5fd44f4b9d834d503d87505a6cd0a8ab022f3f1665181d6a719a73
size 9198711

View File

@ -3,10 +3,10 @@
tests/unit/test_options.py | 5 +
2 files changed, 13 insertions(+), 97 deletions(-)
Index: pip-24.1.1/src/pip/_vendor/certifi/core.py
Index: pip-24.3.1/src/pip/_vendor/certifi/core.py
===================================================================
--- pip-24.1.1.orig/src/pip/_vendor/certifi/core.py
+++ pip-24.1.1/src/pip/_vendor/certifi/core.py
--- pip-24.3.1.orig/src/pip/_vendor/certifi/core.py
+++ pip-24.3.1/src/pip/_vendor/certifi/core.py
@@ -3,112 +3,15 @@ certifi.py
~~~~~~~~~~
@ -128,25 +128,25 @@ Index: pip-24.1.1/src/pip/_vendor/certifi/core.py
- return read_text("pip._vendor.certifi", "cacert.pem", encoding="ascii")
+def contents() -> str:
+ return read_text(encoding="ascii")
Index: pip-24.1.1/tests/unit/test_options.py
Index: pip-24.3.1/tests/unit/test_options.py
===================================================================
--- pip-24.1.1.orig/tests/unit/test_options.py
+++ pip-24.1.1/tests/unit/test_options.py
--- pip-24.3.1.orig/tests/unit/test_options.py
+++ pip-24.3.1/tests/unit/test_options.py
@@ -1,4 +1,5 @@
import os
+import os.path
from contextlib import contextmanager
from optparse import Values
from tempfile import NamedTemporaryFile
@@ -11,6 +12,7 @@ from pip._internal.cli.main import main
@@ -10,6 +11,7 @@ import pip._internal.configuration
from pip._internal.cli.main import main
from pip._internal.commands import create_command
from pip._internal.commands.configuration import ConfigurationCommand
from pip._internal.exceptions import PipError
+from pip._vendor.certifi import where
from pip._internal.exceptions import PipError
from tests.lib.options_helpers import AddFakeCommandMixin
@@ -617,6 +619,9 @@ class TestOptionsConfigFiles:
@@ -618,6 +620,9 @@ class TestOptionsConfigFiles:
else:
assert expect == cmd._determine_file(options, need_value=False)

View File

@ -1,3 +1,32 @@
-------------------------------------------------------------------
Wed Oct 30 08:10:12 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 24.3.1:
* Allow multiple nested inclusions of the same requirements
file again.
* Deprecate wheel filenames that are not compliant with PEP
440.
* Detect recursively referencing requirements files and help
users identify the source.
* Support for PEP 730 iOS wheels.
* Display a better error message when an already installed
package has an invalid requirement.
* Ignore PIP_TARGET and pip.conf global.target when preparing a
build environment.
* Restore support for macOS 10.12 and older (via truststore).
* Allow installing pip in editable mode in a virtual
environment on Windows.
* Upgrade certifi to 2024.8.30
* Upgrade distlib to 0.3.9
* Upgrade truststore to 0.10.0
* Upgrade urllib3 to 1.26.20
-------------------------------------------------------------------
Mon Sep 23 11:21:24 UTC 2024 - Daniel Garcia <daniel.garcia@suse.com>
- Adapt disable-ssl-context-in-buildenv.patch to make it compatible
with leap
-------------------------------------------------------------------
Mon Aug 12 16:49:06 UTC 2024 - Dirk Müller <dmueller@suse.com>

View File

@ -33,7 +33,7 @@
%define mypython python
%{?sle15_python_module_pythons}
Name: python-pip%{psuffix}
Version: 24.2
Version: 24.3.1
Release: 0
Summary: A Python package management system
License: MIT