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
7 changes: 4 additions & 3 deletions .github/workflows/py3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
pymupdf-version: ['1.27.1', '1.26.7', '1.25.5']
markdown-it-py-version: ['4.2.0', '4.1.0', '4.0.0']

steps:
- uses: actions/checkout@v3
Expand All @@ -27,12 +28,12 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies with PyMuPDF==${{ matrix.pymupdf-version }}
- name: Install dependencies with PyMuPDF==${{ matrix.pymupdf-version }} and markdown-it-py==${{ matrix.markdown-it-py-version }}
run: |
python -m pip install --upgrade pip
pip install '.[dev]'
# Override pymupdf with the matrix version
pip install "PyMuPDF==${{ matrix.pymupdf-version }}"
# Override pymupdf and markdown-it-py with the matrix versions
pip install "PyMuPDF==${{ matrix.pymupdf-version }}" "markdown-it-py==${{ matrix.markdown-it-py-version }}"

- name: flake8
run: |
Expand Down
5 changes: 5 additions & 0 deletions history.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
28.05.2026 ver.1.13.2
---------------------

* Relax markdown-it-py pin: keep ==3.0.0 on Python <3.10, allow >=4.0.0 on Python >=3.10.

* For Python 3.8 PyMuPDF version changed from 1.24.6 to 1.24.11.

* For Python 3.9 use tests with PyMuPDF version 1.26.5.
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "markdown_pdf"
version = "1.13.1"
version = "1.13.2"
description = "Markdown to pdf renderer"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.8"
Expand All @@ -22,7 +22,8 @@ classifiers = [
dependencies = [
"PyMuPDF==1.24.11; python_version<'3.9'",
"PyMuPDF>=1.25.3; python_version>'3.8'",
"markdown-it-py==3.0.0; python_version>='3.8'",
"markdown-it-py==3.0.0; python_version<'3.10'",
"markdown-it-py>=4.0.0; python_version>='3.10'",
"requests==2.32.3; python_version<'3.9'",
"requests>=2.32.5; python_version>'3.8'",
"plantuml==0.3.0",
Expand Down
Loading