Skip to content

Commit bde223b

Browse files
Updates for release of PyMuPDF-1.23.7.
1 parent e1bad0b commit bde223b

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

READMErb.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# PyMuPDF 1.23.6
1+
# PyMuPDF 1.23.7
22

33
This wheel contains MuPDF shared libraries for use by PyMuPDF.
44

changes.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Change Log
22
==========
33

44

5-
**Changes in version 1.23.7 ()**
5+
**Changes in version 1.23.7 (2023-11-30)**
66

77
* Bug fixes in rebased implementation, not fixed in classic implementation:
88

docs/version.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
----
22

3-
This documentation covers **PyMuPDF v1.23.6** features as of **2023-11-06 00:00:01**.
3+
This documentation covers **PyMuPDF v1.23.7** features as of **2023-11-30 00:00:01**.
44

55
The major and minor versions of **PyMuPDF** and **MuPDF** will always be the same. Only the third qualifier (patch level) may deviate from that of **MuPDF**.
66

fitz/version.i

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
%pythoncode %{
2-
VersionFitz = "1.23.5" # MuPDF version.
3-
VersionBind = "1.23.6" # PyMuPDF version.
4-
VersionDate = "2023-11-06 00:00:01"
5-
version = (VersionBind, VersionFitz, "20231106000001")
2+
VersionFitz = "1.23.7" # MuPDF version.
3+
VersionBind = "1.23.7" # PyMuPDF version.
4+
VersionDate = "2023-11-30 00:00:01"
5+
version = (VersionBind, VersionFitz, "20231130000001")
66
pymupdf_version_tuple = tuple( [int(i) for i in VersionFitz.split('.')])
77
%}

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ def get_mupdf_internal(out, location=None, sha=None, local_tgz=None):
387387
log(f'get_mupdf_internal(): {out=} {location=} {sha=}')
388388
assert out in ('dir', 'tgz')
389389
if location is None:
390-
location = 'https://mupdf.com/downloads/archive/mupdf-1.23.5-source.tar.gz'
390+
location = 'https://mupdf.com/downloads/archive/mupdf-1.23.7-source.tar.gz'
391391
#location = 'git:--branch master https://github.com/ArtifexSoftware/mupdf.git'
392392

393393
if location == '':
@@ -1184,8 +1184,8 @@ def sdist():
11841184
# We generate different wheels depending on g_flavour.
11851185
#
11861186

1187-
version = '1.23.6'
1188-
version_b = '1.23.6'
1187+
version = '1.23.7'
1188+
version_b = '1.23.7'
11891189

11901190
tag_python = None
11911191
requires_dist = None,

src/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -21433,9 +21433,9 @@ class FitzDeprecation(DeprecationWarning):
2143321433
pass
2143421434

2143521435

21436-
VersionFitz = "1.23.5" # MuPDF version.
21437-
VersionBind = "1.23.6" # PyMuPDF version.
21438-
VersionDate = "2023-11-06 00:00:01"
21436+
VersionFitz = "1.23.7" # MuPDF version.
21437+
VersionBind = "1.23.7" # PyMuPDF version.
21438+
VersionDate = "2023-11-30 00:00:01"
2143921439
VersionDate2 = VersionDate.replace('-', '').replace(' ', '').replace(':', '')
2144021440
version = (VersionBind, VersionFitz, VersionDate2)
2144121441
pymupdf_version_tuple = tuple( [int(i) for i in VersionFitz.split('.')])

0 commit comments

Comments
 (0)