15
0

- Update to 1.2.2:

* Revert the change introduced in (issue #276) attempting to pickle functions annotations for Python 3.4 to 3.6. It is not possible to pickle complex typing constructs for those versions (see issue #193)
  * Fix a bug affecting bound classmethod saving on Python 2. (issue #288)
  * Add support for pickling "getset" descriptors (issue #290)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cloudpickle?expand=0&rev=21
This commit is contained in:
Tomáš Chvátal
2019-09-26 10:43:05 +00:00
committed by Git OBS Bridge
parent cb01b021e6
commit 6ce02a5d65
4 changed files with 12 additions and 4 deletions

View File

@@ -1,3 +1,11 @@
-------------------------------------------------------------------
Thu Sep 26 10:40:19 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
- Update to 1.2.2:
* Revert the change introduced in (issue #276) attempting to pickle functions annotations for Python 3.4 to 3.6. It is not possible to pickle complex typing constructs for those versions (see issue #193)
* Fix a bug affecting bound classmethod saving on Python 2. (issue #288)
* Add support for pickling "getset" descriptors (issue #290)
-------------------------------------------------------------------
Fri Jul 26 07:52:16 UTC 2019 - pgajdos@suse.com