From 46d1068553ac935edc6d6d4089b91fc8234bdec70dc98306dc201f9bdc5629ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= Date: Thu, 28 Mar 2019 14:23:52 +0000 Subject: [PATCH] - Update to 0.8.1: * Fix a bug (already present before 0.5.3 and re-introduced in 0.8.0) affecting relative import instructions inside depickled functions (issue #254) - Update to 0.8.0: * Add support for pickling interactively defined dataclasses. (issue #245) * Global variables referenced by functions pickled by cloudpickle are now unpickled in a new and isolated namespace scoped by the CloudPickler instance. This restores the (previously untested) behavior of cloudpickle prior to changes done in 0.5.4 for functions defined in the __main__ module, and 0.6.0/1 for other dynamic functions. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cloudpickle?expand=0&rev=14 --- cloudpickle-0.7.0.tar.gz | 3 --- cloudpickle-0.8.1.tar.gz | 3 +++ python-cloudpickle.changes | 13 +++++++++++++ python-cloudpickle.spec | 8 ++++---- 4 files changed, 20 insertions(+), 7 deletions(-) delete mode 100644 cloudpickle-0.7.0.tar.gz create mode 100644 cloudpickle-0.8.1.tar.gz diff --git a/cloudpickle-0.7.0.tar.gz b/cloudpickle-0.7.0.tar.gz deleted file mode 100644 index 5b9116f..0000000 --- a/cloudpickle-0.7.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d894ba62b0a04c3ccd482f6bc720dd02d4febcf320f5916c33d258b85d8409b1 -size 29512 diff --git a/cloudpickle-0.8.1.tar.gz b/cloudpickle-0.8.1.tar.gz new file mode 100644 index 0000000..75c725a --- /dev/null +++ b/cloudpickle-0.8.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ea6fd33b7521855a97819b3d645f92d51c8763d3ab5df35197cd8e96c19ba6f +size 30832 diff --git a/python-cloudpickle.changes b/python-cloudpickle.changes index 38751f1..abe10dc 100644 --- a/python-cloudpickle.changes +++ b/python-cloudpickle.changes @@ -1,3 +1,16 @@ +------------------------------------------------------------------- +Thu Mar 28 14:20:54 UTC 2019 - Tomáš Chvátal + +- Update to 0.8.1: + * Fix a bug (already present before 0.5.3 and re-introduced in 0.8.0) affecting relative import instructions inside depickled functions (issue #254) + +------------------------------------------------------------------- +Thu Mar 7 13:00:07 UTC 2019 - Tomáš Chvátal + +- Update to 0.8.0: + * Add support for pickling interactively defined dataclasses. (issue #245) + * Global variables referenced by functions pickled by cloudpickle are now unpickled in a new and isolated namespace scoped by the CloudPickler instance. This restores the (previously untested) behavior of cloudpickle prior to changes done in 0.5.4 for functions defined in the __main__ module, and 0.6.0/1 for other dynamic functions. + ------------------------------------------------------------------- Tue Feb 5 15:42:55 UTC 2019 - alarrosa@suse.com diff --git a/python-cloudpickle.spec b/python-cloudpickle.spec index 57ffd10..cdb9f78 100644 --- a/python-cloudpickle.spec +++ b/python-cloudpickle.spec @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-cloudpickle -Version: 0.7.0 +Version: 0.8.1 Release: 0 Summary: Extended pickling support for Python objects License: BSD-3-Clause @@ -27,11 +27,13 @@ URL: https://github.com/cloudpipe/cloudpickle Source: https://files.pythonhosted.org/packages/source/c/cloudpickle/cloudpickle-%{version}.tar.gz BuildRequires: %{python_module setuptools} BuildRequires: fdupes +BuildRequires: python-futures BuildRequires: python-rpm-macros BuildArch: noarch BuildRequires: %{python_module curses} BuildRequires: %{python_module mock} BuildRequires: %{python_module numpy >= 1.8.2} +BuildRequires: %{python_module psutil} BuildRequires: %{python_module pytest-cov} BuildRequires: %{python_module pytest} BuildRequires: %{python_module scipy} @@ -65,9 +67,7 @@ functions and classes defined interactively in the __main__ module. %python_expand %fdupes %{buildroot}%{$python_sitelib} %check -# Tests require very specific paths and py.test arguments -export PYTHONPATH='.:tests' -%python_expand py.test-%{$python_bin_suffix} -s +%pytest %files %{python_files} %doc README.md