15
0
forked from pool/python-dill
2021-02-26 08:22:41 +00:00
committed by Git OBS Bridge
parent b2823365e5
commit 67c43185fb
4 changed files with 17 additions and 7 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:42d8ef819367516592a825746a18073ced42ca169ab1f5f4044134703e7a049c
size 151986

3
dill-0.3.3.zip Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:efb7f6cb65dba7087c1e111bb5390291ba3616741f96840bfc75792a1a9b5ded
size 177693

View File

@@ -1,3 +1,11 @@
-------------------------------------------------------------------
Fri Feb 26 04:58:06 UTC 2021 - John Vandenberg <jayvdb@gmail.com>
- Update to v0.3.3
* See https://github.com/uqfoundation/dill/compare/dill-0.3.2...dill-0.3.3
- from v0.3.2
* See https://github.com/uqfoundation/dill/compare/dill-0.3.1.1...dill-0.3.2
-------------------------------------------------------------------
Sun Dec 6 23:05:33 UTC 2020 - Benjamin Greiner <code@bnavigator.de>

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-dill
#
# Copyright (c) 2020 SUSE LLC
# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,17 +18,18 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-dill
Version: 0.3.1.1
Version: 0.3.3
Release: 0
Summary: Module to serialize all of Python
License: BSD-3-Clause
Group: Development/Languages/Python
URL: https://github.com/uqfoundation/dill
Source: https://files.pythonhosted.org/packages/source/d/dill/dill-%{version}.tar.gz
Source: https://files.pythonhosted.org/packages/source/d/dill/dill-%{version}.zip
BuildRequires: %{python_module objgraph >= 1.7.2}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildRequires: unzip
%if 0%{?suse_version} >= 1550
BuildRequires: %{python_module dbm}
%else
@@ -69,8 +70,9 @@ find dill -name '*.py' -exec sed -i '1{\@^#!%{_bindir}/env python@d}' {} \;
%check
export PYTHONDONTWRITEBYTECODE=1
# Creative; copied from .travis.yml
# See https://github.com/uqfoundation/dill/issues/361 for s390x and ppc64 failures
failed=0
for test in tests/*.py; do
for test in tests/test_*.py; do
%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} $python $test || failed=1
done
exit $failed