We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8833810 commit a8ec7e2Copy full SHA for a8ec7e2
setup.py
@@ -737,10 +737,12 @@ def int_or_0(text):
737
except Exception:
738
return 0
739
swig_version_tuple = tuple(int_or_0(i) for i in swig_version.split('.'))
740
+ version_p_tuple = tuple(int_or_0(i) for i in version_p.split('.'))
741
log(f'{swig_version=}')
742
text = ''
743
text += f'mupdf_location = {mupdf_location!r}\n'
744
text += f'pymupdf_version = {version_p!r}\n'
745
+ text += f'pymupdf_version_tuple = {version_p_tuple!r}\n'
746
text += f'pymupdf_git_sha = {sha!r}\n'
747
text += f'pymupdf_git_diff = {diff!r}\n'
748
text += f'pymupdf_git_branch = {branch!r}\n'
0 commit comments