Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-chest for openSUSE:Factory checked in at 2022-01-31 22:57:11 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-chest (Old) and /work/SRC/openSUSE:Factory/.python-chest.new.1898 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-chest" Mon Jan 31 22:57:11 2022 rev:4 rq:950067 version:0.2.3 Changes: -------- --- /work/SRC/openSUSE:Factory/python-chest/python-chest.changes 2021-04-21 21:00:55.534345571 +0200 +++ /work/SRC/openSUSE:Factory/.python-chest.new.1898/python-chest.changes 2022-01-31 22:57:54.085347462 +0100 @@ -1,0 +2,6 @@ +Mon Jan 31 04:22:18 UTC 2022 - Steve Kowalik <[email protected]> + +- Add patch support-python-310.patch: + * Support Python 3.10. + +------------------------------------------------------------------- New: ---- support-python-310.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-chest.spec ++++++ --- /var/tmp/diff_new_pack.TtVye3/_old 2022-01-31 22:57:54.601343987 +0100 +++ /var/tmp/diff_new_pack.TtVye3/_new 2022-01-31 22:57:54.605343960 +0100 @@ -1,7 +1,7 @@ # # spec file for package python-chest # -# 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 @@ -17,7 +17,6 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} -%define skip_python36 1 Name: python-chest Version: 0.2.3 Release: 0 @@ -25,6 +24,7 @@ License: BSD-3-Clause URL: https://github.com/ContinuumIO/chest Source: https://files.pythonhosted.org/packages/source/c/chest/chest-%{version}.tar.gz +Patch0: support-python-310.patch BuildRequires: %{python_module HeapDict} BuildRequires: %{python_module numpy} BuildRequires: %{python_module pytest} @@ -43,7 +43,7 @@ 2. Chest persists and so can be saved and loaded for later use %prep -%setup -q -n chest-%{version} +%autosetup -p1 -n chest-%{version} %build %python_build ++++++ support-python-310.patch ++++++ Index: chest-0.2.3/chest/core.py =================================================================== --- chest-0.2.3.orig/chest/core.py +++ chest-0.2.3/chest/core.py @@ -1,4 +1,4 @@ -from collections import MutableMapping +from collections.abc import MutableMapping from functools import partial from threading import Lock from contextlib import contextmanager
