forked from pool/python-packaging
- update to 21.2:
* Update documentation entry for 21.1. * Update pin to pyparsing to exclude 3.0.0. * PEP 656: musllinux support * Drop support for Python 2.7, Python 3.4 and Python 3.5. * Replace distutils usage with sysconfig * Add support for zip files in ``parse_sdist_filename`` * Use cached ``_hash`` attribute to short-circuit tag equality comparisons * Specify the default value for the ``specifier`` argument to ``SpecifierSet`` * Proper keyword-only "warn" argument in packaging.tags * Correctly remove prerelease suffixes from ~= check * Fix type hints for ``Version.post`` and ``Version.dev`` * Use typing alias ``UnparsedVersion`` * Improve type inference for ``packaging.specifiers.filter()`` * Tighten the return type of ``canonicalize_version()`` - drop no-legacyversion-warning.patch: setuptools has been updated OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-packaging?expand=0&rev=50
This commit is contained in:
parent
16814c1fe8
commit
324aec8654
@ -1,30 +0,0 @@
|
|||||||
--- packaging-20.9/packaging/specifiers.py
|
|
||||||
+++ packaging-20.9/packaging/specifiers.py
|
|
||||||
@@ -280,12 +280,6 @@
|
|
||||||
# type: (str, Optional[bool]) -> None
|
|
||||||
super(LegacySpecifier, self).__init__(spec, prereleases)
|
|
||||||
|
|
||||||
- warnings.warn(
|
|
||||||
- "Creating a LegacyVersion has been deprecated and will be "
|
|
||||||
- "removed in the next major release",
|
|
||||||
- DeprecationWarning,
|
|
||||||
- )
|
|
||||||
-
|
|
||||||
def _coerce_version(self, version):
|
|
||||||
# type: (Union[ParsedVersion, str]) -> LegacyVersion
|
|
||||||
if not isinstance(version, LegacyVersion):
|
|
||||||
--- packaging-20.9/packaging/version.py
|
|
||||||
+++ packaging-20.9/packaging/version.py
|
|
||||||
@@ -124,12 +124,6 @@
|
|
||||||
self._version = str(version)
|
|
||||||
self._key = _legacy_cmpkey(self._version)
|
|
||||||
|
|
||||||
- warnings.warn(
|
|
||||||
- "Creating a LegacyVersion has been deprecated and will be "
|
|
||||||
- "removed in the next major release",
|
|
||||||
- DeprecationWarning,
|
|
||||||
- )
|
|
||||||
-
|
|
||||||
def __str__(self):
|
|
||||||
# type: () -> str
|
|
||||||
return self._version
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:5b327ac1320dc863dca72f4514ecc086f31186744b84a230374cc1fd776feae5
|
|
||||||
size 81267
|
|
3
packaging-21.2.tar.gz
Normal file
3
packaging-21.2.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:096d689d78ca690e4cd8a89568ba06d07ca097e3306a4381635073ca91479966
|
||||||
|
size 84403
|
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Nov 6 18:30:50 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 21.2:
|
||||||
|
* Update documentation entry for 21.1.
|
||||||
|
* Update pin to pyparsing to exclude 3.0.0.
|
||||||
|
* PEP 656: musllinux support
|
||||||
|
* Drop support for Python 2.7, Python 3.4 and Python 3.5.
|
||||||
|
* Replace distutils usage with sysconfig
|
||||||
|
* Add support for zip files in ``parse_sdist_filename``
|
||||||
|
* Use cached ``_hash`` attribute to short-circuit tag equality comparisons
|
||||||
|
* Specify the default value for the ``specifier`` argument to ``SpecifierSet``
|
||||||
|
* Proper keyword-only "warn" argument in packaging.tags
|
||||||
|
* Correctly remove prerelease suffixes from ~= check
|
||||||
|
* Fix type hints for ``Version.post`` and ``Version.dev``
|
||||||
|
* Use typing alias ``UnparsedVersion``
|
||||||
|
* Improve type inference for ``packaging.specifiers.filter()``
|
||||||
|
* Tighten the return type of ``canonicalize_version()``
|
||||||
|
- drop no-legacyversion-warning.patch: setuptools has been updated
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jun 17 17:28:43 UTC 2021 - Ben Greiner <code@bnavigator.de>
|
Thu Jun 17 17:28:43 UTC 2021 - Ben Greiner <code@bnavigator.de>
|
||||||
|
|
||||||
|
@ -28,14 +28,12 @@
|
|||||||
# in order to avoid rewriting for subpackage generator
|
# in order to avoid rewriting for subpackage generator
|
||||||
%define mypython python
|
%define mypython python
|
||||||
Name: python-packaging%{psuffix}
|
Name: python-packaging%{psuffix}
|
||||||
Version: 20.9
|
Version: 21.2
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Core utilities for Python packages
|
Summary: Core utilities for Python packages
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
URL: https://github.com/pypa/packaging
|
URL: https://github.com/pypa/packaging
|
||||||
Source: https://files.pythonhosted.org/packages/source/p/packaging/packaging-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/p/packaging/packaging-%{version}.tar.gz
|
||||||
# Restore compatibility with 20.4 for setuptools
|
|
||||||
Patch1: no-legacyversion-warning.patch
|
|
||||||
BuildRequires: %{python_module six}
|
BuildRequires: %{python_module six}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
@ -64,7 +62,6 @@ Core utilities for Python packages
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n packaging-%{version}
|
%setup -q -n packaging-%{version}
|
||||||
%patch1 -p1
|
|
||||||
# sdist must provide a packaging.egg-info, used below in install phase
|
# sdist must provide a packaging.egg-info, used below in install phase
|
||||||
test -d packaging.egg-info
|
test -d packaging.egg-info
|
||||||
|
|
||||||
@ -73,8 +70,7 @@ test -d packaging.egg-info
|
|||||||
|
|
||||||
%if %{with test}
|
%if %{with test}
|
||||||
%check
|
%check
|
||||||
# no-legacyversion-warning.patch causes these to fail
|
%pytest
|
||||||
%pytest -k "not (test_legacy_specifier_is_deprecated or test_legacy_version_is_deprecated)"
|
|
||||||
|
|
||||||
%endif # %%{with_test}
|
%endif # %%{with_test}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user