14
0
forked from pool/python-pyzmq

Accepting request 575260 from home:apersaud:branches:devel:languages:python

update to latest version

OBS-URL: https://build.opensuse.org/request/show/575260
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyzmq?expand=0&rev=58
This commit is contained in:
Tomáš Chvátal
2018-02-10 19:37:25 +00:00
committed by Git OBS Bridge
parent 36f2e554fa
commit 960865ed7b
4 changed files with 30 additions and 4 deletions

View File

@@ -1,3 +1,29 @@
-------------------------------------------------------------------
Sat Feb 10 17:31:28 UTC 2018 - arun@gmx.de
- update to version 17.0.0:
* Add :meth:`zmq.Socket.send_serialized` and
:meth:`zmq.Socket.recv_serialized` for sending/receiving messages
with custom serialization.
* Add :attr:`zmq.Socket.copy_threshold` and
:const:`zmq.COPY_THRESHOLD`. Messages smaller than this are always
copied, regardless of copy=False, to avoid overhead of zero-copy
bookkeeping on small messages.
* Added visible deprecation warnings to bundled tornado
IOLoop. Tornado eventloop integration shouldn't be used without a
proper tornado install since pyzmq 14.
* Allow pyzmq asyncio/tornado integration to run without installing
:func:`zmq_poll` implementation. The following methods and classes
are deprecated and no longer required:
:func:`zmq.eventloop.ioloop.install`
:class:`zmq.eventloop.ioloop.IOLoop`
:func:`zmq.asyncio.install`
:class:`zmq.asyncio.ZMQEventLoop`
* Set RPATH correctly when building on macOS.
* Compatibility fixes with tornado 5.0.dev (may not be quite enough
for 5.0 final, which is not yet released as of pyzmq 17).
* Draft support for CLIENT-SERVER routing_id and group.
-------------------------------------------------------------------
Sun Jan 28 18:51:21 UTC 2018 - arun@gmx.de