From 1427c24eda26f33ddcd8a12b767c3b899744c053 Mon Sep 17 00:00:00 2001 From: mozman Date: Tue, 31 Oct 2023 06:28:38 +0100 Subject: [PATCH] set required PyMuPDF version to 1.20.0 or newer #950 set in "extras_require"; this is an optional requirement and is not included in requirements.txt --- NEWS.md | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/NEWS.md b/NEWS.md index 1f4e0d060..e0877a908 100644 --- a/NEWS.md +++ b/NEWS.md @@ -12,7 +12,7 @@ Version 1.1.2 - beta `Matplotlib` requires oriented outer paths and holes to draw correct filled paths - BUGFIX: transform embedded `MTEXT` entity in `ATTRIB` and `ATTDEF` entities - BUGFIX: [#949](https://github.com/mozman/ezdxf/issues/949) - fixed `PyMuPDF` deprecated method names + fixed `PyMuPDF` deprecated method names, requires `PyMuPDF` 1.20.0 or newer Version 1.1.1 - 2023-10-08 -------------------------- diff --git a/setup.py b/setup.py index d3498e7b3..c537b60be 100644 --- a/setup.py +++ b/setup.py @@ -128,8 +128,8 @@ def read_until(lines): return "File '%s' not found.\n" % fname -DRAW = ["matplotlib", "PySide6", "PyMuPDF"] -DRAW5 = ["matplotlib", "PyQt5", "PyMuPDF"] +DRAW = ["matplotlib", "PySide6", "PyMuPDF>=1.20.0"] +DRAW5 = ["matplotlib", "PyQt5", "PyMuPDF>=1.20.0"] TEST = ["pytest"] DEV = ["setuptools", "wheel", "Cython"]