14
0

- update to 0.21.1:

* Allow to specify __match_args__.
  * Add @as_record adapter for def-style decalarations of
    dataclasses that are considered as just a struct.
  * The option fast_new will be removed in 0.22. It will be
    always as fast_new=True by creation.
  * Fix issues with `_PyUnicodeWriter`  for python 3.13.
  * Add __match_args__ to support match protocol for dataobject-based subclasses.
  Make to compile, to build and to test successfully for python 3.11.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-recordclass?expand=0&rev=7
This commit is contained in:
2023-12-29 09:36:21 +00:00
committed by Git OBS Bridge
parent 1fe6883176
commit a362b9bf43
4 changed files with 19 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-recordclass
#
# Copyright (c) 2022 SUSE LLC
# Copyright (c) 2023 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,11 +18,11 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-recordclass
Version: 0.18.0.1
Version: 0.21.1
Release: 0
Summary: Library implementing a mutable variant of namedtuple
License: MIT
URL: https://bitbucket.org/intellimath/recordclass
URL: https://github.com/intellimath/recordclass
Source: https://files.pythonhosted.org/packages/source/r/recordclass/recordclass-%{version}.tar.gz
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}