Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Revert version change for MuPDF 1.26.11 since the causing commit was …
…reverted.

Originally MuPDF 1.26.11 was planned to include both the table hunting code
as well as dehyphenation and the new text search interface. This combination
of changes caused new behaviour in MuPDF which was adapted for in PyMuPDF
commit 23de718.

Due to newly found bugs in the dehyphenation and text search code and
apprehensiveness about adding these many changes to a stable version it was
decided to back these out. That means that the change in PyMuPDF commit
23de718 will now fail for MuPDF 1.26.11.

The best is to simply revert the commit, which is exactly what happens here.
  • Loading branch information
sebras committed Nov 2, 2025
commit bbcff0a8d1234398edb67c74a98ac747aa5c5ef5
2 changes: 1 addition & 1 deletion tests/test_font.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def test_2608():
f.write(text.encode('utf8'))
path_expected = os.path.normpath(f'{__file__}/../../tests/resources/test_2608_expected')
path_expected_1_26 = os.path.normpath(f'{__file__}/../../tests/resources/test_2608_expected_1.26')
if pymupdf.mupdf_version_tuple >= (1, 26, 11):
if pymupdf.mupdf_version_tuple >= (1, 27):
path_expected2 = path_expected
else:
path_expected2 = path_expected_1_26
Expand Down