Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-sybil for openSUSE:Factory checked in at 2026-08-26 19:51:23 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-sybil (Old) and /work/SRC/openSUSE:Factory/.python-sybil.new.1258 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-sybil" Wed Aug 26 19:51:23 2026 rev:25 rq:1373638 version:10.1.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-sybil/python-sybil.changes 2026-06-19 17:22:00.799389431 +0200 +++ /work/SRC/openSUSE:Factory/.python-sybil.new.1258/python-sybil.changes 2026-08-26 19:52:09.551426958 +0200 @@ -1,0 +2,5 @@ +Tue Aug 25 13:50:01 UTC 2026 - Markéta Machová <[email protected]> + +- Add testfixtures12.patch to fix test failure with testfixtures 12 + +------------------------------------------------------------------- New: ---- testfixtures12.patch ----------(New B)---------- New: - Add testfixtures12.patch to fix test failure with testfixtures 12 ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-sybil.spec ++++++ --- /var/tmp/diff_new_pack.KzXtLg/_old 2026-08-26 19:52:10.730468599 +0200 +++ /var/tmp/diff_new_pack.KzXtLg/_new 2026-08-26 19:52:10.732468670 +0200 @@ -32,6 +32,8 @@ License: MIT URL: https://github.com/simplistix/sybil Source: https://github.com/simplistix/sybil/archive/refs/tags/%{version}.tar.gz#/sybil-%{version}.tar.gz +# PATCH-FIX-UPSTREAM https://github.com/simplistix/sybil/commit/b1c31ce0818cfa7953a61b3b391a88cd5620f9dd Follow testfixtures' compare_text/compare_dict move to comparers module +Patch: testfixtures12.patch BuildRequires: %{python_module base >= 3.11} BuildRequires: %{python_module hatchling} BuildRequires: %{python_module pip} @@ -40,7 +42,7 @@ BuildRequires: %{python_module pytest >= 8} BuildRequires: %{python_module pytest-cov} BuildRequires: %{python_module sybil = %{version}} -BuildRequires: %{python_module testfixtures >= 11} +BuildRequires: %{python_module testfixtures >= 12} %if 0%{?sle_version} && 0%{?sle_version} <= 150400 BuildRequires: %{python_module dataclasses} %endif ++++++ testfixtures12.patch ++++++ >From b1c31ce0818cfa7953a61b3b391a88cd5620f9dd Mon Sep 17 00:00:00 2001 From: Chris Withers <[email protected]> Date: Thu, 9 Jul 2026 08:51:56 +0100 Subject: [PATCH] Follow testfixtures' compare_text/compare_dict move to comparers module --- pyproject.toml | 2 +- tests/test_lexing.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b3189a4..e4f6fd4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,7 @@ dev = [ "pytest-cov>=6", "ruff>=0.15.7", "seedir", - "testfixtures>=11", + "testfixtures>=12.0.0", "types-PyYAML", ] docs = [ diff --git a/tests/test_lexing.py b/tests/test_lexing.py index 44d20c3..c6129cd 100644 --- a/tests/test_lexing.py +++ b/tests/test_lexing.py @@ -2,7 +2,7 @@ import pytest from testfixtures import ShouldRaise, compare -from testfixtures.comparison import compare_text, compare_dict +from testfixtures.comparers import compare_text, compare_dict from sybil import Lexeme from sybil.parsers.abstract.lexers import BlockLexer, LexingException
