Skip to content

Commit

Permalink
set required PyMuPDF version to 1.20.0 or newer #950
Browse files Browse the repository at this point in the history
set in "extras_require"; this is an optional requirement
and is not included in requirements.txt
  • Loading branch information
mozman committed Oct 31, 2023
1 parent cf179de commit 1427c24
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
--------------------------
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand Down

0 comments on commit 1427c24

Please sign in to comment.