15
0

- Fix the version in the package, it was set to 2.2.0, but the version

provided was 2.0.0.
- Disable broken tests with python 3.11, related to ordering of sets
- Remove six dependency
- Update to version 2.1.0:
  * Bump version
  * Seems like this is never used
  * Better exception testing pattern, better test coverage :)
  * Remove python <2.6 stuff; and an adhoc nose test runner
  * Only round, not convert to hashable, when comparing dict values
  * Coverage reporting
  * PEP8 and other good practice fixes
  * Add LICENSE file, build wheels
  * Move tests into package subdir
  * Add tox.ini and test against more versions of python
  * fix __bool__ case when dict only has equal type diffs
  * fuzzy matching for float comparisons, fix empty set diffs
  * test_hashable_dict_values
  * revert datadiff/tools.py hashable to maintain module_nose.tools compatibility
  * use hashable when comparing

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-datadiff?expand=0&rev=4
This commit is contained in:
2023-03-22 07:37:23 +00:00
committed by Git OBS Bridge
parent 8fc05c1531
commit cc01fc523b
7 changed files with 214 additions and 155 deletions

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-datadiff
#
# Copyright (c) 2021 SUSE LLC
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2019, Martin Hauke <mardnh@gmx.de>
#
# All modifications and additions to the file contributed by third parties
@@ -17,9 +17,8 @@
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-datadiff
Version: 2.2.0
Version: 2.1.0
Release: 0
Summary: DataDiff is a library to provide human-readable diffs of python data structures
License: Apache-2.0
@@ -35,8 +34,8 @@ BuildRequires: python-rpm-macros
BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module six}
# /SECTION
%python_subpackages
%description
@@ -48,8 +47,7 @@ Drop-in replacements for some nose assertions are available. If the assertion f
a nice data diff is shown, letting you easily pinpoint the root difference.
%prep
%setup -q -n datadiff-%{version}
%autopatch -p1
%autosetup -p1 -n datadiff-%{version}
cp %{SOURCE1} .
%build
@@ -60,10 +58,12 @@ cp %{SOURCE1} .
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest
# Broken tests with py311
%pytest -k "not (test_diff_set or test_diff_frozenset)"
%files %{python_files}
%license LICENSE-2.0.txt
%{python_sitelib}/*
%{python_sitelib}/datadiff
%{python_sitelib}/datadiff-%{version}*-info
%changelog