Accepting request 903718 from devel:languages:python
- Update to 5.1.0 * Add support for SQLAlchemy 1.4. * prepare_accept_content() now raises SerializerNotInstalled instead of KeyError. * Wheels are no longer universal. * Remove python2 compatibility code * Update default pickle protocol version to 4 * Drop support for the lzma backport. OBS-URL: https://build.opensuse.org/request/show/903718 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-kombu?expand=0&rev=71
This commit is contained in:
commit
d7695ccd98
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:f4965fba0a4718d47d470beeb5d6446e3357a62402b16c510b6a2f251e05ac3c
|
|
||||||
size 406267
|
|
3
kombu-5.1.0.tar.gz
Normal file
3
kombu-5.1.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:01481d99f4606f6939cdc9b637264ed353ee9e3e4f62cfb582324142c41a572d
|
||||||
|
size 416353
|
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 30 09:16:13 UTC 2021 - Markéta Machová <mmachova@suse.com>
|
||||||
|
|
||||||
|
- Update to 5.1.0
|
||||||
|
* Add support for SQLAlchemy 1.4.
|
||||||
|
* prepare_accept_content() now raises SerializerNotInstalled instead of
|
||||||
|
KeyError.
|
||||||
|
* Wheels are no longer universal.
|
||||||
|
* Remove python2 compatibility code
|
||||||
|
* Update default pickle protocol version to 4
|
||||||
|
* Drop support for the lzma backport.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Nov 16 01:50:08 UTC 2020 - Steve Kowalik <steven.kowalik@suse.com>
|
Mon Nov 16 01:50:08 UTC 2020 - Steve Kowalik <steven.kowalik@suse.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-kombu
|
# spec file for package python-kombu
|
||||||
#
|
#
|
||||||
# Copyright (c) 2020 SUSE LLC
|
# Copyright (c) 2021 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -19,7 +19,7 @@
|
|||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
%define skip_python2 1
|
%define skip_python2 1
|
||||||
Name: python-kombu
|
Name: python-kombu
|
||||||
Version: 5.0.2
|
Version: 5.1.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: AMQP Messaging Framework for Python
|
Summary: AMQP Messaging Framework for Python
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
@ -29,8 +29,9 @@ BuildRequires: %{python_module Brotli >= 1.0.0}
|
|||||||
BuildRequires: %{python_module PyYAML >= 3.10}
|
BuildRequires: %{python_module PyYAML >= 3.10}
|
||||||
BuildRequires: %{python_module Pyro4}
|
BuildRequires: %{python_module Pyro4}
|
||||||
BuildRequires: %{python_module SQLAlchemy}
|
BuildRequires: %{python_module SQLAlchemy}
|
||||||
BuildRequires: %{python_module amqp >= 5.0.0}
|
BuildRequires: %{python_module amqp >= 5.0.6}
|
||||||
BuildRequires: %{python_module boto3 >= 1.4.4}
|
BuildRequires: %{python_module boto3 >= 1.4.4}
|
||||||
|
BuildRequires: %{python_module cached-property}
|
||||||
BuildRequires: %{python_module case >= 1.5.2}
|
BuildRequires: %{python_module case >= 1.5.2}
|
||||||
BuildRequires: %{python_module importlib-metadata >= 0.18}
|
BuildRequires: %{python_module importlib-metadata >= 0.18}
|
||||||
BuildRequires: %{python_module msgpack}
|
BuildRequires: %{python_module msgpack}
|
||||||
@ -41,7 +42,8 @@ BuildRequires: %{python_module redis >= 3.3.11}
|
|||||||
BuildRequires: %{python_module setuptools >= 20.6.7}
|
BuildRequires: %{python_module setuptools >= 20.6.7}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
Requires: python-amqp >= 5.0.0
|
Requires: python-amqp >= 5.0.6
|
||||||
|
Requires: python-cached-property
|
||||||
Requires: python-importlib-metadata >= 0.18
|
Requires: python-importlib-metadata >= 0.18
|
||||||
Requires: python-setuptools
|
Requires: python-setuptools
|
||||||
Recommends: python-Brotli >= 1.0.0
|
Recommends: python-Brotli >= 1.0.0
|
||||||
@ -66,6 +68,8 @@ provide proven and tested solutions to common messaging problems.
|
|||||||
%setup -q -n kombu-%{version}
|
%setup -q -n kombu-%{version}
|
||||||
# pinned dependencies are bad
|
# pinned dependencies are bad
|
||||||
sed -i -e 's:==:>=:g' requirements/*.txt requirements/extras/*.txt
|
sed -i -e 's:==:>=:g' requirements/*.txt requirements/extras/*.txt
|
||||||
|
# we don't want to pull in the whole azure stack because of few tests of a non-essential feature
|
||||||
|
rm t/unit/transport/test_azureservicebus.py
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%python_build
|
%python_build
|
||||||
|
Loading…
Reference in New Issue
Block a user