- update to 5.0.1:

*  Fixed unexpected behavior when using inspect.isfunction
  *  Now prevents installation of RPyC on unsupported versions of python
  *  RPyC 5.0.0 cannot teleport functions to earlier versions
  *  Deprecated Python 2 support to coincide with it's EOL
  *  Server hostname default supports IPv4 and IPv6 by using the wildcard address
  *  Fixed pickle failure on windows for ``connect_multiprocess`` and ``connect_thread``
  *  Fixed teleport function behavior for keyword-only arguments with default
  *  Improved documentation on custom exception handling
  *  Fixed IPv6 support for server
  *  Added a simple asynchrounous service example

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-rpyc?expand=0&rev=21
This commit is contained in:
2021-11-08 20:26:26 +00:00
committed by Git OBS Bridge
parent 205b5a1a64
commit 01eb71fef8
4 changed files with 23 additions and 7 deletions

View File

@@ -1,3 +1,18 @@
-------------------------------------------------------------------
Mon Nov 8 20:22:29 UTC 2021 - Dirk Müller <dmueller@suse.com>
- update to 5.0.1:
* Fixed unexpected behavior when using inspect.isfunction
* Now prevents installation of RPyC on unsupported versions of python
* RPyC 5.0.0 cannot teleport functions to earlier versions
* Deprecated Python 2 support to coincide with it's EOL
* Server hostname default supports IPv4 and IPv6 by using the wildcard address
* Fixed pickle failure on windows for ``connect_multiprocess`` and ``connect_thread``
* Fixed teleport function behavior for keyword-only arguments with default
* Improved documentation on custom exception handling
* Fixed IPv6 support for server
* Added a simple asynchrounous service example
-------------------------------------------------------------------
Wed Jun 3 10:33:48 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>