From 3d4bea8ee7a8640b17fdf5eb97c64f2cea31c4ae Mon Sep 17 00:00:00 2001 From: Alex Pyrgiotis Date: Mon, 7 Oct 2024 15:04:31 +0300 Subject: [PATCH] WIP: Check newest PyMuPDF wheels --- install/linux/vendor-pymupdf.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/install/linux/vendor-pymupdf.py b/install/linux/vendor-pymupdf.py index c94707b..1a0efdd 100755 --- a/install/linux/vendor-pymupdf.py +++ b/install/linux/vendor-pymupdf.py @@ -21,10 +21,6 @@ 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: