Compare commits
11 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| b295617e64 | |||
| eb5aa2418a | |||
| 6d486597b8 | |||
| c414bc838f | |||
| bbd69ac147 | |||
| 94837981d5 | |||
| 1e2f3a6041 | |||
| 7a0df4c146 | |||
| e8729f7165 | |||
| 6f8ecd4a21 | |||
| 2a974eaa7c |
BIN
dill-0.4.0.tar.gz
LFS
BIN
dill-0.4.0.tar.gz
LFS
Binary file not shown.
3
dill-0.4.1.tar.gz
Normal file
3
dill-0.4.1.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6fc954a2b757aaf7a38cf41e7feddcf5109230bc72888e51df1fb7d799946ef5
|
||||
size 180239
|
||||
@@ -1,3 +1,39 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 20 01:52:03 UTC 2026 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
- Update to 0.4.1:
|
||||
* drop formal support for python 3.8
|
||||
* use get_file_type to open _pyio file types
|
||||
* update rtfd to 3.12 and docs requirements
|
||||
* formal support for 3.14; init support for 3.15
|
||||
* dict and weakref descriptors are singletons in 3.15
|
||||
* sync with rtd 15.4.1
|
||||
* ensure valid class qualname in getsource
|
||||
* avoid numpy segfault for 3.15.0a3
|
||||
* update copyright for 2026, urllib3 to 2.6.0
|
||||
- Drop patch fix-contextvars.patch, merged upstream.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 14 10:48:35 UTC 2025 - Marius Grossu <marius.grossu@suse.com>
|
||||
|
||||
- added a fix-contextvars.patch:
|
||||
* Pickle _contextvars.Context objects, for threads in Python 3.14+
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 19 14:30:27 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- Still use update-alternatives on SLE-15
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 10 15:29:34 UTC 2025 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
- do not depend on alts for sle15
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 8 13:59:14 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- Convert to libalternatives
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 5 02:47:52 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-dill
|
||||
#
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
# Copyright (c) 2026 SUSE LLC and contributors
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -16,16 +16,21 @@
|
||||
#
|
||||
|
||||
|
||||
%if 0%{?suse_version} > 1500
|
||||
%bcond_without libalternatives
|
||||
%else
|
||||
%bcond_with libalternatives
|
||||
%endif
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-dill
|
||||
Version: 0.4.0
|
||||
Version: 0.4.1
|
||||
Release: 0
|
||||
Summary: Module to serialize all of Python
|
||||
License: BSD-3-Clause
|
||||
URL: https://github.com/uqfoundation/dill
|
||||
Source: https://github.com/uqfoundation/dill/archive/refs/tags/%{version}.tar.gz#/dill-%{version}.tar.gz
|
||||
BuildRequires: %{python_module dbm}
|
||||
BuildRequires: %{python_module devel >= 3.7}
|
||||
BuildRequires: %{python_module devel >= 3.9}
|
||||
BuildRequires: %{python_module objgraph >= 1.7.2}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
@@ -33,9 +38,14 @@ BuildRequires: %{python_module wheel}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
BuildRequires: unzip
|
||||
Recommends: python-objgraph >= 1.7.2
|
||||
%if %{with libalternatives}
|
||||
BuildRequires: alts
|
||||
Requires: alts
|
||||
%else
|
||||
Requires(post): update-alternatives
|
||||
Requires(postun): update-alternatives
|
||||
Recommends: python-objgraph >= 1.7.2
|
||||
%endif
|
||||
BuildArch: noarch
|
||||
%python_subpackages
|
||||
|
||||
@@ -65,6 +75,7 @@ find dill -name '*.py' -exec sed -i '1{\@^#!%{_bindir}/env python@d}' {} \;
|
||||
%python_clone -a %{buildroot}%{_bindir}/undill
|
||||
%python_clone -a %{buildroot}%{_bindir}/get_gprof
|
||||
%python_clone -a %{buildroot}%{_bindir}/get_objgraph
|
||||
%python_group_libalternatives undill get_gprof get_objgraph
|
||||
|
||||
%check
|
||||
export PYTHONDONTWRITEBYTECODE=1
|
||||
@@ -73,11 +84,14 @@ export PYTHONPATH=%{_builddir}/dill-%{version}
|
||||
%python_exec dill/tests/__main__.py
|
||||
|
||||
%post
|
||||
%{python_install_alternative undill get_objgraph get_gprof}
|
||||
%python_install_alternative undill get_gprof get_objgraph
|
||||
|
||||
%postun
|
||||
%python_uninstall_alternative undill
|
||||
|
||||
%pre
|
||||
%python_libalternatives_reset_alternative undill
|
||||
|
||||
%files %{python_files}
|
||||
%doc README.md
|
||||
%license LICENSE
|
||||
|
||||
Reference in New Issue
Block a user