Skip to content

Commit

Permalink
Revert "WIP: Check newest PyMuPDF wheels"
Browse files Browse the repository at this point in the history
This reverts commit 3d4bea8.
apyrgio committed Oct 8, 2024

Verified

This commit was signed with the committer’s verified signature.
apyrgio Alex Pyrgiotis
1 parent 05090ad commit 4dcca91
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions install/linux/vendor-pymupdf.py
Original file line number Diff line number Diff line change
@@ -21,6 +21,10 @@ def main():
cmd = ["poetry", "export", "--only", "container"]
container_requirements_txt = subprocess.check_output(cmd)

# XXX: Hack for Ubuntu Focal.
if sys.version.startswith("3.8"):
container_requirements_txt = container_requirements_txt.replace(b"3.9", b"3.8")

print(f">>> Vendoring PyMuPDF under '{args.dest}'", file=sys.stderr)
# We prefer to call the CLI version of `pip`, instead of importing it directly, as
# instructed here:

0 comments on commit 4dcca91

Please sign in to comment.