14
0

Accepting request 368985 from home:tbechtold:branches:devel:languages:python

- update to 20.2.2:
  * Issue #502: Correct regression in parsing of multiple
    version specifiers separated by commas and spaces.
  * Issue #499: Restore compatiblity for legacy versions
    by bumping to packaging 16.4.
  * Changelog now includes release dates and links to PEPs.
  * Pull Request #173: Replace dual PEP 345 _markerlib implementation
    and PEP 426 implementation of environment marker support from
    packaging 16.1 and PEP 508. Fixes Issue #122.
    See also Pull Request #175, Pull Request #168, and
    Pull Request #164. Additionally:
     - ``Requirement.parse`` no longer retains the order of extras.
     - ``parse_requirements`` now requires that all versions be
       PEP-440 compliant, as revealed in #499. Packages released
       with invalid local versions should be re-released using
       the proper local version syntax, e.g. ``mypkg-1.0+myorg.1``.
  * Update ``upload_docs`` command to also honor keyring
    for password resolution.
  * Added support for using passwords from keyring in the upload
    command.
  * Issue #118: Once again omit the package metadata (egg-info)
    from the list of outputs in ``--record``. This version of setuptools
    can no longer be used to upgrade pip earlier than 6.0.
  * `Off-project PR <https://github.com/jaraco/setuptools/pull/32>`_:
    For FreeBSD, also honor root certificates from ca_root_nss.

OBS-URL: https://build.opensuse.org/request/show/368985
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-setuptools?expand=0&rev=93
This commit is contained in:
Todd R
2016-03-09 16:22:46 +00:00
committed by Git OBS Bridge
parent 21bc82447a
commit 36d158ee23
4 changed files with 34 additions and 6 deletions

View File

@@ -1,3 +1,32 @@
-------------------------------------------------------------------
Wed Mar 9 09:37:04 UTC 2016 - tbechtold@suse.com
- update to 20.2.2:
* Issue #502: Correct regression in parsing of multiple
version specifiers separated by commas and spaces.
* Issue #499: Restore compatiblity for legacy versions
by bumping to packaging 16.4.
* Changelog now includes release dates and links to PEPs.
* Pull Request #173: Replace dual PEP 345 _markerlib implementation
and PEP 426 implementation of environment marker support from
packaging 16.1 and PEP 508. Fixes Issue #122.
See also Pull Request #175, Pull Request #168, and
Pull Request #164. Additionally:
- ``Requirement.parse`` no longer retains the order of extras.
- ``parse_requirements`` now requires that all versions be
PEP-440 compliant, as revealed in #499. Packages released
with invalid local versions should be re-released using
the proper local version syntax, e.g. ``mypkg-1.0+myorg.1``.
* Update ``upload_docs`` command to also honor keyring
for password resolution.
* Added support for using passwords from keyring in the upload
command.
* Issue #118: Once again omit the package metadata (egg-info)
from the list of outputs in ``--record``. This version of setuptools
can no longer be used to upgrade pip earlier than 6.0.
* `Off-project PR <https://github.com/jaraco/setuptools/pull/32>`_:
For FreeBSD, also honor root certificates from ca_root_nss.
-------------------------------------------------------------------
Mon Feb 1 10:57:28 UTC 2016 - toddrme2178@gmail.com