Skip to content

Commit 026467a

Browse files
Increment minimum python version to 3.10.
1 parent 020c2e3 commit 026467a

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Join us on **Discord** here: [#pymupdf](https://discord.gg/TSpYGBW4eq)
88

99
# Installation
1010

11-
**PyMuPDF** requires **Python 3.9 or later**, install using **pip** with:
11+
**PyMuPDF** requires **Python 3.10 or later**, install using **pip** with:
1212

1313
`pip install PyMuPDF`
1414

changes.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Change Log
66

77
* Use MuPDF-1.26.11.
88

9+
* Supported Python versions are now 3.10-3.14.
10+
911
* Fixed issues:
1012

1113
* **Fixed** `4699 <https://github.com/pymupdf/PyMuPDF/issues/4699>`_: cannot find ExtGState resource

docs/installation.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ Notes
142142

143143
*
144144
Each wheel uses the Python Stable ABI of the current oldest supported
145-
Python version (currently 3.9), and so works with all later Python
145+
Python version (currently 3.10), and so works with all later Python
146146
versions, including new Python releases.
147147

148148
*
@@ -224,7 +224,7 @@ Also, one can build for different Python versions in the same PyMuPDF tree:
224224

225225
So for example on Windows one can build different versions with::
226226

227-
cd PyMuPDF && py -3.9 -m pip install .
227+
cd PyMuPDF && py -3.10 -m pip install .
228228

229229
or::
230230

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1358,7 +1358,7 @@ def get_requires_for_build_wheel(config_settings=None):
13581358
author = 'Artifex',
13591359
author_email = 'support@artifex.com',
13601360
requires_dist = requires_dist,
1361-
requires_python = '>=3.9',
1361+
requires_python = '>=3.10',
13621362
license = 'Dual Licensed - GNU AFFERO GPL 3.0 or Artifex Commercial License',
13631363
project_url = [
13641364
('Documentation, https://pymupdf.readthedocs.io/'),

0 commit comments

Comments
 (0)