14
0
forked from pool/python-pika

- update to 1.0.0

* AsyncioConnection, TornadoConnection and TwistedProtocolConnection
     are no longer auto-imported
 * BlockingConnection.consume now returns (None, None, None) when inactivity
     timeout is reached
 * Python 3.7 support
 * all_channels parameter of the Channel.basic_qos method renamed to global_qos
 *  global_ parameter of the Basic.Qos spec class renamed to global_qos
 * NOTE: heartbeat_interval is removed, use heartbeat instead.
 * NOTE: The backpressure_detection option of ConnectionParameters
     and URLParameters property is REMOVED in favor of Connection.Blocked
     and Connection.Unblocked. See Connection.add_on_connection_blocked_callback

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pika?expand=0&rev=28
This commit is contained in:
2019-04-08 11:46:45 +00:00
committed by Git OBS Bridge
parent e4b53e7214
commit 7f5fb4a5b6
4 changed files with 21 additions and 5 deletions

View File

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

3
1.0.0.tar.gz Normal file
View File

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

View File

@@ -1,3 +1,19 @@
-------------------------------------------------------------------
Mon Apr 8 11:44:42 UTC 2019 - Ondřej Súkup <mimi.vx@gmail.com>
- update to 1.0.0
* AsyncioConnection, TornadoConnection and TwistedProtocolConnection
are no longer auto-imported
* BlockingConnection.consume now returns (None, None, None) when inactivity
timeout is reached
* Python 3.7 support
* all_channels parameter of the Channel.basic_qos method renamed to global_qos
* global_ parameter of the Basic.Qos spec class renamed to global_qos
* NOTE: heartbeat_interval is removed, use heartbeat instead.
* NOTE: The backpressure_detection option of ConnectionParameters
and URLParameters property is REMOVED in favor of Connection.Blocked
and Connection.Unblocked. See Connection.add_on_connection_blocked_callback
-------------------------------------------------------------------
Wed Mar 13 14:08:31 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>

View File

@@ -19,7 +19,7 @@
%define mod_name pika
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-%{mod_name}
Version: 0.13.1
Version: 1.0.0
Release: 0
Summary: Pika Python AMQP Client Library
License: BSD-3-Clause
@@ -60,7 +60,7 @@ sed -i -e 's:,tests/acceptance::' setup.cfg
%python_expand %fdupes %{buildroot}%{$python_sitelib}/*.egg-info
%check
%python_expand PYTHONPATH="%{buildroot}%{$python_sitelib}"% nosetests-%{$python_bin_suffix} tests/
%python_expand PYTHONPATH="%{buildroot}%{$python_sitelib}" nosetests-%{$python_bin_suffix} tests/
%files %{python_files}
%doc README.rst CHANGELOG.rst