Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-tesserocr for openSUSE:Factory checked in at 2025-08-06 14:34:02 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-tesserocr (Old) and /work/SRC/openSUSE:Factory/.python-tesserocr.new.1085 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-tesserocr" Wed Aug 6 14:34:02 2025 rev:22 rq:1297803 version:2.8.0 Changes: -------- --- /work/SRC/openSUSE:Factory/python-tesserocr/python-tesserocr.changes 2025-03-11 20:45:30.294662775 +0100 +++ /work/SRC/openSUSE:Factory/.python-tesserocr.new.1085/python-tesserocr.changes 2025-08-06 14:35:32.713705551 +0200 @@ -1,0 +2,5 @@ +Mon Aug 4 14:15:13 UTC 2025 - Felix Stegmeier <felix.stegme...@suse.com> + +- add unpin-cython.patch to unpin cython version + +------------------------------------------------------------------- New: ---- unpin-cython.patch ----------(New B)---------- New: - add unpin-cython.patch to unpin cython version ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-tesserocr.spec ++++++ --- /var/tmp/diff_new_pack.P18rDX/_old 2025-08-06 14:35:33.965758285 +0200 +++ /var/tmp/diff_new_pack.P18rDX/_new 2025-08-06 14:35:33.965758285 +0200 @@ -25,6 +25,8 @@ Group: Development/Languages/Python URL: https://github.com/sirfz/tesserocr Source: https://files.pythonhosted.org/packages/source/t/tesserocr/tesserocr-%{version}.tar.gz +#PATCH-FIX-OPENSUSE unpin-cython.patch +Patch: unpin-cython.patch BuildRequires: %{python_module Cython} BuildRequires: %{python_module Pillow} BuildRequires: %{python_module devel} @@ -55,7 +57,7 @@ GIL while processing an image in tesseract. %prep -%setup -q -n tesserocr-%{version} +%autosetup -p1 -n tesserocr-%{version} %build %pyproject_wheel ++++++ unpin-cython.patch ++++++ Index: tesserocr-2.8.0/setup.py =================================================================== --- tesserocr-2.8.0.orig/setup.py +++ tesserocr-2.8.0/setup.py @@ -318,7 +318,7 @@ setup( cmdclass={"build_ext": my_build_ext}, ext_modules=[make_extension()], test_suite="tests", - setup_requires=["Cython>=0.23,<3.1.0"], + setup_requires=["Cython>=0.23"], packages=["tesserocr"], package_dir={"tesserocr": "tesserocr"}, )