Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test_multiple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
args:
type: string
default: ''
description: 'Arguments to pass to scripts/test.py'
description: 'Additional arguments to scripts/test.py'
schedule:
- cron: '13 6 * * *'

Expand Down
39 changes: 0 additions & 39 deletions .github/workflows/test_mupdf-master-branch.yml

This file was deleted.

40 changes: 0 additions & 40 deletions .github/workflows/test_mupdf-release-branch.yml

This file was deleted.

21 changes: 8 additions & 13 deletions .github/workflows/test_quick.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
name: Test quick
name: test_quick

on:
pull_request:
branches: [main]

workflow_dispatch:
inputs:
args:
type: string
default: ''
description: 'Additional arguments to scripts/test.py'

jobs:

Expand All @@ -21,20 +26,10 @@ jobs:
fail-fast: false

steps:

- uses: actions/checkout@v4
- uses: actions/setup-python@v5

- name: test_quick

env:
inputs_PYMUPDF_SETUP_MUPDF_BUILD: "git:--recursive --depth 1 --shallow-submodules --branch master https://github.com/ArtifexSoftware/mupdf.git"
inputs_flavours: "0"
inputs_sdist: "0"
inputs_wheels_cps: "cp312*"
inputs_wheels_default: "0"
inputs_wheels_linux_auto: "1"
inputs_wheels_macos_auto: "1"
inputs_wheels_windows_auto: "1"
PYMUPDF_test_args: ${{inputs.args}}
run:
python scripts/gh_release.py
python scripts/test.py build test -a PYMUPDF_test_args
19 changes: 18 additions & 1 deletion changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,24 @@ Change Log
==========


**Changes in version 1.26.1**
**Changes in version 1.26.2**

* Use MuPDF-1.26.3.

* Fixed issues:

* **Fixed** `4462 <https://github.com/pymupdf/PyMuPDF/issues/4462>`_: delete_pages() does not accept a single int
* **Fixed** `4527 <https://github.com/pymupdf/PyMuPDF/issues/4527>`_: Rect.intersects() is much slower than necessary
* **Fixed** `4564 <https://github.com/pymupdf/PyMuPDF/issues/4564>`_: Possible encoding issue in PDF metadata
* **Fixed** `4575 <https://github.com/pymupdf/PyMuPDF/issues/4575>`_: Bug with IRect contains method

* Other:

* Class Shape is now available as pymupdf.Shape.
* Added table cell markdown support.


**Changes in version 1.26.1 (2025-06-11)**

* Use MuPDF-1.26.2.

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -1246,15 +1246,15 @@ def sdist():
#

# PyMuPDF version.
version_p = '1.26.1'
version_p = '1.26.2'

version_mupdf = '1.26.2'
version_mupdf = '1.26.3'

# PyMuPDFb version. This is the PyMuPDF version whose PyMuPDFb wheels we will
# (re)use if generating separate PyMuPDFb wheels. Though as of PyMuPDF-1.24.11
# (2024-10-03) we no longer use PyMuPDFb wheels so this is actually unused.
#
version_b = '1.26.1'
version_b = '1.26.2'

if os.path.exists(f'{g_root}/{g_pymupdfb_sdist_marker}'):

Expand Down