Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python2-pika-1.1.0-bp153.1.20 RPM for noarch

From OpenSuSE Leap 15.3 for noarch

Name: python2-pika Distribution: SUSE Linux Enterprise 15 SP3
Version: 1.1.0 Vendor: openSUSE
Release: bp153.1.20 Build date: Sat Mar 6 01:49:04 2021
Group: Development/Languages/Python Build host: cloud121
Size: 1909866 Source RPM: python-pika-1.1.0-bp153.1.20.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/pika/pika
Summary: Pika Python AMQP Client Library
Pika is a pure-Python implementation of the AMQP 0-9-1 protocol that
tries to stay fairly independent of the underlying network support
library. Pika was developed primarily for use with RabbitMQ, but
should also work with other AMQP 0-9-1 brokers.

Provides

Requires

License

BSD-3-Clause

Changelog

* Fri Apr 17 2020 Matej Cepl <mcepl@suse.com>
  - Switch from using nosetest runner to pytest
* Tue Jul 23 2019 Tomáš Chvátal <tchvatal@suse.com>
  - Update to 1.1.0:
    * various bugfixes
  - Drop merged patch e95001e480ec30f1617c47e77fb92e0384ff9e78.patch
* Tue Jun 18 2019 Thomas Bechtold <tbechtold@suse.com>
  - Fix build for older distros which fail with
    UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 4575: \
      ordinal not in range(128)
    Added e95001e480ec30f1617c47e77fb92e0384ff9e78.patch
* Thu Apr 18 2019 Ondřej Súkup <mimi.vx@gmail.com>
  - update to 1.0.1
    * API docstring updates
    * Twisted adapter: Add basic_consume Deferred to the call list
* Mon Apr 08 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 2019 Tomáš Chvátal <tchvatal@suse.com>
  - Update to 0.13.1:
    * URLParameters with SSL options not working
* Thu Jan 31 2019 Tomáš Chvátal <tchvatal@suse.com>
  - Update to 0.13.0:
    * AsyncioConnection, TornadoConnection and TwistedProtocolConnection are no longer auto-imported
    * Python 3.7 support
  - Drop merged patch 1119-increase_timeouts.patch
* Sat Sep 22 2018 Matěj Cepl <mcepl@suse.com>
  - Add 1119-increase_timeouts.patch to increase timeouts and hopefully
    make tests more resilient.
* Fri Sep 21 2018 mcepl@suse.com
  - Fix %files section double inclduing egg files.
* Wed Sep 19 2018 Tomáš Chvátal <tchvatal@suse.com>
  - Switch to github tarball in order to get tests
  - Run the tests
* Wed Sep 19 2018 Tomáš Chvátal <tchvatal@suse.com>
  - Version update to 0.12.0:
    * BlockingConnection now supports the add_callback_threadsafe method which
      allows a function to be executed correctly on the IO loop thread.
* Wed Sep 19 2018 Dominik Heidler <dheidler@suse.de>
  - Added Dep: Pika requires ssl python module provided by python
  - Fix license macro
* Tue Oct 17 2017 sean.marlow@suse.com
  - Update to 0.11.0:
    * Simplify Travis CI configuration for OS X.
    * Add asyncio connection adapter for Python 3.4 and newer.
    * Connection failures that occur after the socket is opened and
      before the AMQP connection is ready to go are now reported by
      calling the connection error callback. Previously these were
      not consistently reported.
    * In BaseConnection.close, call _handle_ioloop_stop only if the
      connection is already closed to allow the asynchronous close
      operation to complete gracefully.
    * Pass error information from failed socket connection to user
      callbacks on_open_error_callback and on_close_callback with
      result_code=-1.
    * ValueError is raised when a completion callback is passed to an
      asynchronous (nowait) Channel operation. It's an application
      error to pass a non-None completion callback with an
      asynchronous request, because this callback can never be
      serviced in the asynchronous scenario.
    * Channel.basic_reject fixed to allow delivery_tag to be of type
      long as well as int. (by quantum5)
    * Implemented support for blocked connection timeouts in
      pika.connection.Connection. This feature is available to all
      pika adapters. See pika.connection.ConnectionParameters
      docstring to learn more about blocked_connection_timeout
      configuration.
    * Deprecated the heartbeat_interval arg in
      pika.ConnectionParameters in favor of the heartbeat arg for
      consistency with the other connection parameters classes
      pika.connection.Parameters and pika.URLParameters.
    * When the port arg is not set explicitly in ConnectionParameters
      constructor, but the ssl arg is set explicitly, then set the
      port value to to the default AMQP SSL port if SSL is enabled,
      otherwise to the default AMQP plaintext port.
    * URLParameters will raise ValueError if a non-empty URL scheme
      other than {amqp | amqps | http | https} is specified.
    * InvalidMinimumFrameSize and InvalidMaximumFrameSize exceptions
      are deprecated. pika.connection.Parameters.frame_max property
      setter now raises the standard ValueError exception when the
      value is out of bounds.
    * Removed deprecated parameter type in Channel.exchange_declare
      and BlockingChannel.exchnage_declare in favor of the
      exchange_type arg that doesn't overshadow the builtin type
      keyword.
    * Channel.close() on OPENING channel transitions it to CLOSING
      instead of raising ChannelClosed.
    * Channel.close() on CLOSING channel raises
      ChannelAlreadyClosing; used to raise ChannelClosed.
    * Connection.channel() raises ConnectionClosed if connection is
      not in OPEN state.
    * When performing graceful close on a channel and Channel.Close
      from broker arrives while waiting for CloseOk, don't release
      the channel number until CloseOk arrives to avoid race
      condition that may lead to a new channel receiving the CloseOk
      that was destined for the closing channel.
    * The backpressure_detection option of ConnectionParameters and
      URLParameters property is DEPRECATED in favor of
      Connection.Blocked and Connection.Unblocked. See
      Connection.add_on_connection_blocked_callback.
* Tue Aug 22 2017 tbechtold@suse.com
  - switch to singlespec
* Wed Mar 16 2016 tbechtold@suse.com
  - update to 0.10.0:
    * LibevConnection: Fixed dict chgd size during iteration
    * SelectConnection: Fixed KeyError exceptions in IOLoop timeout executions
    * BlockingConnection: Add support to make BlockingConnection a Context Manager
    * f72b58f - Fixed failure to purge _ConsumerCancellationEvt from
      BlockingChannel._pending_events during basic_cancel.
    * Change to 3-Clause BSD License
    * Python 3.x support
    * Over 150 commits from 19 contributors
    * Refactoring of SelectConnection ioloop
    * This major release contains certain non-backward-compatible API changes as
      well as significant performance improvements in the BlockingConnection
      adapter.
    * Non-backward-compatible changes in Channel.add_on_return_callback
      callback’s signature.
    * The AsynchoreConnection adapter was retired
    * see also https://pika.readthedocs.org/en/0.10.0/version_history.html
  - Add and update LICENSE. It's now BSD-3-Clause
  - Remove README.md . It's shipped as README.rst in the upstream tarball
* Wed Mar 25 2015 matwey.kornilov@gmail.com
  - Update to version 0.9.14
    + Major issue with socket buffer refactor in 0.9.13 (#328) fixes by cooper6581 and Erik Andersson
    + Fix a bug in SelectConnection that did not allow for a IOLoop to be restarted (#337) fix by Ralf Nyrén
    + Fix an issue in BlockingConnection disconnections (#340) fix by Mark Unsworth
    + Add NullHandler to prevent logging warnings when not configured (#339) by Cenk Altı
    + Added Twisted Adapter example (#314) by nolinksoft

Files

/usr/lib/python2.7/site-packages/pika
/usr/lib/python2.7/site-packages/pika-1.1.0-py2.7.egg-info
/usr/lib/python2.7/site-packages/pika-1.1.0-py2.7.egg-info/PKG-INFO
/usr/lib/python2.7/site-packages/pika-1.1.0-py2.7.egg-info/SOURCES.txt
/usr/lib/python2.7/site-packages/pika-1.1.0-py2.7.egg-info/dependency_links.txt
/usr/lib/python2.7/site-packages/pika-1.1.0-py2.7.egg-info/requires.txt
/usr/lib/python2.7/site-packages/pika-1.1.0-py2.7.egg-info/top_level.txt
/usr/lib/python2.7/site-packages/pika-1.1.0-py2.7.egg-info/zip-safe
/usr/lib/python2.7/site-packages/pika/__init__.py
/usr/lib/python2.7/site-packages/pika/__init__.pyc
/usr/lib/python2.7/site-packages/pika/__init__.pyo
/usr/lib/python2.7/site-packages/pika/adapters
/usr/lib/python2.7/site-packages/pika/adapters/__init__.py
/usr/lib/python2.7/site-packages/pika/adapters/__init__.pyc
/usr/lib/python2.7/site-packages/pika/adapters/__init__.pyo
/usr/lib/python2.7/site-packages/pika/adapters/asyncio_connection.py
/usr/lib/python2.7/site-packages/pika/adapters/asyncio_connection.pyc
/usr/lib/python2.7/site-packages/pika/adapters/asyncio_connection.pyo
/usr/lib/python2.7/site-packages/pika/adapters/base_connection.py
/usr/lib/python2.7/site-packages/pika/adapters/base_connection.pyc
/usr/lib/python2.7/site-packages/pika/adapters/base_connection.pyo
/usr/lib/python2.7/site-packages/pika/adapters/blocking_connection.py
/usr/lib/python2.7/site-packages/pika/adapters/blocking_connection.pyc
/usr/lib/python2.7/site-packages/pika/adapters/blocking_connection.pyo
/usr/lib/python2.7/site-packages/pika/adapters/select_connection.py
/usr/lib/python2.7/site-packages/pika/adapters/select_connection.pyc
/usr/lib/python2.7/site-packages/pika/adapters/select_connection.pyo
/usr/lib/python2.7/site-packages/pika/adapters/tornado_connection.py
/usr/lib/python2.7/site-packages/pika/adapters/tornado_connection.pyc
/usr/lib/python2.7/site-packages/pika/adapters/tornado_connection.pyo
/usr/lib/python2.7/site-packages/pika/adapters/twisted_connection.py
/usr/lib/python2.7/site-packages/pika/adapters/twisted_connection.pyc
/usr/lib/python2.7/site-packages/pika/adapters/twisted_connection.pyo
/usr/lib/python2.7/site-packages/pika/adapters/utils
/usr/lib/python2.7/site-packages/pika/adapters/utils/__init__.py
/usr/lib/python2.7/site-packages/pika/adapters/utils/__init__.pyc
/usr/lib/python2.7/site-packages/pika/adapters/utils/__init__.pyo
/usr/lib/python2.7/site-packages/pika/adapters/utils/connection_workflow.py
/usr/lib/python2.7/site-packages/pika/adapters/utils/connection_workflow.pyc
/usr/lib/python2.7/site-packages/pika/adapters/utils/connection_workflow.pyo
/usr/lib/python2.7/site-packages/pika/adapters/utils/io_services_utils.py
/usr/lib/python2.7/site-packages/pika/adapters/utils/io_services_utils.pyc
/usr/lib/python2.7/site-packages/pika/adapters/utils/io_services_utils.pyo
/usr/lib/python2.7/site-packages/pika/adapters/utils/nbio_interface.py
/usr/lib/python2.7/site-packages/pika/adapters/utils/nbio_interface.pyc
/usr/lib/python2.7/site-packages/pika/adapters/utils/nbio_interface.pyo
/usr/lib/python2.7/site-packages/pika/adapters/utils/selector_ioloop_adapter.py
/usr/lib/python2.7/site-packages/pika/adapters/utils/selector_ioloop_adapter.pyc
/usr/lib/python2.7/site-packages/pika/adapters/utils/selector_ioloop_adapter.pyo
/usr/lib/python2.7/site-packages/pika/amqp_object.py
/usr/lib/python2.7/site-packages/pika/amqp_object.pyc
/usr/lib/python2.7/site-packages/pika/amqp_object.pyo
/usr/lib/python2.7/site-packages/pika/callback.py
/usr/lib/python2.7/site-packages/pika/callback.pyc
/usr/lib/python2.7/site-packages/pika/callback.pyo
/usr/lib/python2.7/site-packages/pika/channel.py
/usr/lib/python2.7/site-packages/pika/channel.pyc
/usr/lib/python2.7/site-packages/pika/channel.pyo
/usr/lib/python2.7/site-packages/pika/compat.py
/usr/lib/python2.7/site-packages/pika/compat.pyc
/usr/lib/python2.7/site-packages/pika/compat.pyo
/usr/lib/python2.7/site-packages/pika/connection.py
/usr/lib/python2.7/site-packages/pika/connection.pyc
/usr/lib/python2.7/site-packages/pika/connection.pyo
/usr/lib/python2.7/site-packages/pika/credentials.py
/usr/lib/python2.7/site-packages/pika/credentials.pyc
/usr/lib/python2.7/site-packages/pika/credentials.pyo
/usr/lib/python2.7/site-packages/pika/data.py
/usr/lib/python2.7/site-packages/pika/data.pyc
/usr/lib/python2.7/site-packages/pika/data.pyo
/usr/lib/python2.7/site-packages/pika/diagnostic_utils.py
/usr/lib/python2.7/site-packages/pika/diagnostic_utils.pyc
/usr/lib/python2.7/site-packages/pika/diagnostic_utils.pyo
/usr/lib/python2.7/site-packages/pika/exceptions.py
/usr/lib/python2.7/site-packages/pika/exceptions.pyc
/usr/lib/python2.7/site-packages/pika/exceptions.pyo
/usr/lib/python2.7/site-packages/pika/frame.py
/usr/lib/python2.7/site-packages/pika/frame.pyc
/usr/lib/python2.7/site-packages/pika/frame.pyo
/usr/lib/python2.7/site-packages/pika/heartbeat.py
/usr/lib/python2.7/site-packages/pika/heartbeat.pyc
/usr/lib/python2.7/site-packages/pika/heartbeat.pyo
/usr/lib/python2.7/site-packages/pika/spec.py
/usr/lib/python2.7/site-packages/pika/spec.pyc
/usr/lib/python2.7/site-packages/pika/spec.pyo
/usr/lib/python2.7/site-packages/pika/tcp_socket_opts.py
/usr/lib/python2.7/site-packages/pika/tcp_socket_opts.pyc
/usr/lib/python2.7/site-packages/pika/tcp_socket_opts.pyo
/usr/lib/python2.7/site-packages/pika/validators.py
/usr/lib/python2.7/site-packages/pika/validators.pyc
/usr/lib/python2.7/site-packages/pika/validators.pyo
/usr/share/doc/packages/python2-pika
/usr/share/doc/packages/python2-pika/CHANGELOG.rst
/usr/share/doc/packages/python2-pika/README.rst
/usr/share/licenses/python2-pika
/usr/share/licenses/python2-pika/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 14:50:04 2024