From fa3e9a43b9b61db9660deacfb021e57b01fbbeee7007774ac450fbc058c4e3f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mark=C3=A9ta=20Machov=C3=A1?= Date: Tue, 27 Sep 2022 06:31:17 +0000 Subject: [PATCH 1/2] Accepting request 1006249 from home:yarunachalam:branches:devel:languages:python - Update to 2.1.0 * Support for pickling abc.abstractproperty, abc.abstractclassmethod, and abc.abstractstaticmethod. (PR #450) * Support for pickling subclasses of generic classes. (PR #448) * Support and CI configuration for Python 3.11. (PR #467) * Support for the experimental nogil variant of CPython (PR #470) - Update to 2.0.0 * Python 3.5 is no longer supported. * Support for registering modules to be serialised by value. This allows code defined in local modules to be serialised and executed remotely without those local modules installed on the remote machine. (PR #417) * Fix a side effect altering dynamic modules at pickling time. (PR #426) * Support for pickling type annotations on Python 3.10 as per PEP 563 (PR #400) * Stricter parametrized type detection heuristics in _is_parametrized_type_hint to limit false positives. (PR #409) * Support pickling / depickling of OrderedDict KeysView, ValuesView, and ItemsView, following similar strategy for vanilla Python dictionaries. (PR #423) * Suppressed a source of non-determinism when pickling dynamically defined functions and handles the deprecation of co_lnotab in Python 3.10+. (PR #428) OBS-URL: https://build.opensuse.org/request/show/1006249 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cloudpickle?expand=0&rev=38 --- cloudpickle-1.6.0.tar.gz | 3 --- cloudpickle-2.1.0.tar.gz | 3 +++ python-cloudpickle.changes | 19 +++++++++++++++++++ python-cloudpickle.spec | 6 +++--- 4 files changed, 25 insertions(+), 6 deletions(-) delete mode 100644 cloudpickle-1.6.0.tar.gz create mode 100644 cloudpickle-2.1.0.tar.gz diff --git a/cloudpickle-1.6.0.tar.gz b/cloudpickle-1.6.0.tar.gz deleted file mode 100644 index 375b2ff..0000000 --- a/cloudpickle-1.6.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9bc994f9e9447593bd0a45371f0e7ac7333710fcf64a4eb9834bf149f4ef2f32 -size 52743 diff --git a/cloudpickle-2.1.0.tar.gz b/cloudpickle-2.1.0.tar.gz new file mode 100644 index 0000000..2b00a1a --- /dev/null +++ b/cloudpickle-2.1.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb233e876a58491d9590a676f93c7a5473a08f747d5ab9df7f9ce564b3e7938e +size 60093 diff --git a/python-cloudpickle.changes b/python-cloudpickle.changes index 3345632..320d0f7 100644 --- a/python-cloudpickle.changes +++ b/python-cloudpickle.changes @@ -1,3 +1,22 @@ +------------------------------------------------------------------- +Mon Sep 26 21:21:21 UTC 2022 - Yogalakshmi Arunachalam + +- Update to 2.1.0 + * Support for pickling abc.abstractproperty, abc.abstractclassmethod, and abc.abstractstaticmethod. (PR #450) + * Support for pickling subclasses of generic classes. (PR #448) + * Support and CI configuration for Python 3.11. (PR #467) + * Support for the experimental nogil variant of CPython (PR #470) + +- Update to 2.0.0 + * Python 3.5 is no longer supported. + * Support for registering modules to be serialised by value. This allows code defined in local modules to be serialised + and executed remotely without those local modules installed on the remote machine. (PR #417) + * Fix a side effect altering dynamic modules at pickling time. (PR #426) + * Support for pickling type annotations on Python 3.10 as per PEP 563 (PR #400) + * Stricter parametrized type detection heuristics in _is_parametrized_type_hint to limit false positives. (PR #409) + * Support pickling / depickling of OrderedDict KeysView, ValuesView, and ItemsView, following similar strategy for vanilla Python dictionaries. (PR #423) + * Suppressed a source of non-determinism when pickling dynamically defined functions and handles the deprecation of co_lnotab in Python 3.10+. (PR #428) + ------------------------------------------------------------------- Fri Jan 22 16:19:43 UTC 2021 - Benjamin Greiner diff --git a/python-cloudpickle.spec b/python-cloudpickle.spec index 33a6f31..9d5da63 100644 --- a/python-cloudpickle.spec +++ b/python-cloudpickle.spec @@ -1,7 +1,7 @@ # # spec file for package python-cloudpickle # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python3-%{**}} %define skip_python2 1 Name: python-cloudpickle -Version: 1.6.0 +Version: 2.1.0 Release: 0 Summary: Extended pickling support for Python objects License: BSD-3-Clause @@ -30,7 +30,7 @@ BuildRequires: fdupes BuildRequires: python-rpm-macros BuildArch: noarch # SECTION test requirements. None of these are hard dependencies -BuildRequires: %{python_module curses} +BuildRequires: %{python_module curses} BuildRequires: %{python_module psutil} BuildRequires: %{python_module pytest} BuildRequires: %{python_module tornado} From f2b813ee8b4fcc874d449bba529a3dae261616b3021af78417dbebf7da866d3c Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Sat, 1 Oct 2022 11:27:37 +0000 Subject: [PATCH 2/2] - update to 2.2.0: * Improve compatibility with "nogil" Python and 3.11 * Fix compatibility with Python 3.11 * Add Python 3.10 to tox config * Fix #440: Incorrect pickles for subclasses of generic classes * Extend test_abc to include abstract properties * Add support for abc.abstract* methods * Add test for multiprocessing.Lock error OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cloudpickle?expand=0&rev=39 --- cloudpickle-2.1.0.tar.gz | 3 --- cloudpickle-2.2.0.tar.gz | 3 +++ python-cloudpickle.changes | 12 ++++++++++++ python-cloudpickle.spec | 2 +- 4 files changed, 16 insertions(+), 4 deletions(-) delete mode 100644 cloudpickle-2.1.0.tar.gz create mode 100644 cloudpickle-2.2.0.tar.gz diff --git a/cloudpickle-2.1.0.tar.gz b/cloudpickle-2.1.0.tar.gz deleted file mode 100644 index 2b00a1a..0000000 --- a/cloudpickle-2.1.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bb233e876a58491d9590a676f93c7a5473a08f747d5ab9df7f9ce564b3e7938e -size 60093 diff --git a/cloudpickle-2.2.0.tar.gz b/cloudpickle-2.2.0.tar.gz new file mode 100644 index 0000000..d5afbab --- /dev/null +++ b/cloudpickle-2.2.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f4219469c55453cfe4737e564b67c2a149109dabf7f242478948b895f61106f +size 59630 diff --git a/python-cloudpickle.changes b/python-cloudpickle.changes index 320d0f7..625816c 100644 --- a/python-cloudpickle.changes +++ b/python-cloudpickle.changes @@ -1,3 +1,15 @@ +------------------------------------------------------------------- +Sat Oct 1 11:24:59 UTC 2022 - Dirk Müller + +- update to 2.2.0: + * Improve compatibility with "nogil" Python and 3.11 + * Fix compatibility with Python 3.11 + * Add Python 3.10 to tox config + * Fix #440: Incorrect pickles for subclasses of generic classes + * Extend test_abc to include abstract properties + * Add support for abc.abstract* methods + * Add test for multiprocessing.Lock error + ------------------------------------------------------------------- Mon Sep 26 21:21:21 UTC 2022 - Yogalakshmi Arunachalam diff --git a/python-cloudpickle.spec b/python-cloudpickle.spec index 9d5da63..4acb068 100644 --- a/python-cloudpickle.spec +++ b/python-cloudpickle.spec @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python3-%{**}} %define skip_python2 1 Name: python-cloudpickle -Version: 2.1.0 +Version: 2.2.0 Release: 0 Summary: Extended pickling support for Python objects License: BSD-3-Clause