Skip to content

Commit bbcff0a

Browse files
committed
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.
1 parent 898aa3d commit bbcff0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_font.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def test_2608():
6969
f.write(text.encode('utf8'))
7070
path_expected = os.path.normpath(f'{__file__}/../../tests/resources/test_2608_expected')
7171
path_expected_1_26 = os.path.normpath(f'{__file__}/../../tests/resources/test_2608_expected_1.26')
72-
if pymupdf.mupdf_version_tuple >= (1, 26, 11):
72+
if pymupdf.mupdf_version_tuple >= (1, 27):
7373
path_expected2 = path_expected
7474
else:
7575
path_expected2 = path_expected_1_26

0 commit comments

Comments
 (0)