Skip to content

Commit d15f93e

Browse files
committed
Support pandoc 3.6
1 parent 25160ad commit d15f93e

File tree

4 files changed

+20
-18
lines changed

4 files changed

+20
-18
lines changed

.github/workflows/python-package.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
matrix:
1717
python-version: ['3.10', '3.11', '3.12', '3.13']
18-
pandoc-version: ['3.5']
18+
pandoc-version: ['3.6']
1919
steps:
2020
- uses: actions/checkout@v4
2121
- name: Set up Python ${{ matrix.python-version }}
@@ -38,7 +38,7 @@ jobs:
3838
strategy:
3939
matrix:
4040
python-version: ['3.12']
41-
pandoc-version: [2.14.2, '2.15', 2.16.2, 2.17.1.1, '2.18', 2.19.2, 3.0.1, 3.1.13, 3.2.1, '3.3', '3.4', '3.5']
41+
pandoc-version: [2.14.2, '2.15', 2.16.2, 2.17.1.1, '2.18', 2.19.2, 3.0.1, 3.1.13, 3.2.1, '3.3', '3.4', '3.5', '3.6']
4242
steps:
4343
- uses: actions/checkout@v4
4444
- name: Set up Python ${{ matrix.python-version }}
@@ -61,7 +61,7 @@ jobs:
6161
strategy:
6262
matrix:
6363
python-version: ['3.12']
64-
pandoc-version: ['3.5']
64+
pandoc-version: ['3.6']
6565
steps:
6666
- uses: actions/checkout@v4
6767
- name: Set up Python
@@ -87,7 +87,7 @@ jobs:
8787
strategy:
8888
matrix:
8989
python-version: ['3.12']
90-
pandoc-version: ['3.5']
90+
pandoc-version: ['3.6']
9191
steps:
9292
- uses: actions/checkout@v4
9393
- name: Set up Python

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Install
22
=======
33

4-
[![Python package](https://github.com/chdemko/pandoc-numbering/workflows/Python%20package/badge.svg?branch=develop)](https://github.com/chdemko/pandoc-numbering/actions/workflows/python-package.yml)
4+
[![Python package](https://img.shields.io/github/actions/workflow/status/chdemko/pandoc-numbering/python-package.yml?logo=github&branch=develop)](https://github.com/chdemko/pandoc-numbering/actions/workflows/python-package.yml)
55
[![Hatch project](https://img.shields.io/badge/%F0%9F%A5%9A-Hatch-4051b5.svg)](https://github.com/pypa/hatch)
66
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit)](https://github.com/pre-commit/pre-commit)
77
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://pypi.org/project/black/)
88
[![Coveralls](https://img.shields.io/coveralls/github/chdemko/pandoc-numbering/develop.svg?logo=Codecov&logoColor=white)](https://coveralls.io/github/chdemko/pandoc-numbering?branch=develop)
99
[![Scrutinizer](https://img.shields.io/scrutinizer/g/chdemko/pandoc-numbering.svg?logo=scrutinizer)](https://scrutinizer-ci.com/g/chdemko/pandoc-numbering/)
10-
[![Code Climate](https://codeclimate.com/github/chdemko/pandoc-numbering/badges/gpa.svg)](https://codeclimate.com/github/chdemko/pandoc-numbering/)
10+
[![Code Climate](https://img.shields.io/codeclimate/maintainability/chdemko/pandoc-numbering?logo=codeclimate&barnch=develop)](https://codeclimate.com/github/chdemko/pandoc-numbering/)
1111
[![CodeFactor](https://img.shields.io/codefactor/grade/github/chdemko/pandoc-numbering/develop.svg?logo=codefactor)](https://www.codefactor.io/repository/github/chdemko/pandoc-numbering)
1212
[![Codacy](https://img.shields.io/codacy/grade/36051716c52147bca7a7f4c1ca6bc998.svg?logo=codacy)](https://app.codacy.com/gh/chdemko/pandoc-numbering/dashboard)
1313
[![PyPI version](https://img.shields.io/pypi/v/pandoc-numbering.svg?logo=pypi&logoColor=white)](https://pypi.org/project/pandoc-numbering/)
@@ -16,7 +16,7 @@ Install
1616
[![Downloads](https://img.shields.io/pypi/dm/pandoc-numbering?logo=pypi&logoColor=white)](https://pepy.tech/project/pandoc-numbering)
1717
[![Development Status](https://img.shields.io/pypi/status/pandoc-numbering.svg?logo=pypi&logoColor=white)](https://pypi.org/project/pandoc-numbering/)
1818
[![Python version](https://img.shields.io/pypi/pyversions/pandoc-numbering.svg?logo=Python&logoColor=white)](https://pypi.org/project/pandoc-numbering/)
19-
[![Pandoc version](https://img.shields.io/badge/pandoc-2.14%20|%202.15%20|%202.16%20|%202.17%20|%202.18%20|%202.19%20|%203.0%20|%203.1%20|%203.2%20|%203.3%20|%203.4%20|%203.5-blue.svg?logo=markdown)](https://pandoc.org/)
19+
[![Pandoc version](https://img.shields.io/badge/pandoc-2.14%20..%203.6-blue.svg?logo=markdown)](https://pandoc.org/)
2020
[![Latest release](https://img.shields.io/github/release-date/chdemko/pandoc-numbering.svg?logo=github)](https://github.com/chdemko/pandoc-numbering/releases)
2121
[![Last commit](https://img.shields.io/github/last-commit/chdemko/pandoc-numbering/develop?logo=github)](https://github.com/chdemko/pandoc-numbering/commit/develop/)
2222
[![Repo Size](https://img.shields.io/github/repo-size/chdemko/pandoc-numbering.svg?logo=github)](http://pandoc-numbering.readthedocs.io/en/latest/)

pyproject.toml

+12-10
Original file line numberDiff line numberDiff line change
@@ -213,21 +213,23 @@ arg-type-hints-in-docstring = false
213213
style = "numpy"
214214

215215
[tool.mypy]
216-
disallow_any_generics = true
217-
disallow_subclassing_any = true
218-
# disallow_untyped_calls = true
219-
# disallow_untyped_defs = true
220-
# disallow_incomplete_defs = true
221-
# check_untyped_defs = true
222-
disallow_untyped_decorators = true
223216
ignore_missing_imports = true
224217
no_implicit_optional = true
225-
no_implicit_reexport = true
226-
warn_redundant_casts = true
227-
warn_return_any = true
228218
# equivalent to --strict option
229219
warn_unused_configs = true
220+
disallow_any_generics = true
221+
disallow_subclassing_any = true
222+
disallow_untyped_calls = true
223+
disallow_untyped_defs = true
224+
disallow_incomplete_defs = true
225+
check_untyped_defs = true
226+
disallow_untyped_decorators = true
227+
warn_redundant_casts = true
230228
warn_unused_ignores = true
229+
warn_return_any = true
230+
no_implicit_reexport = true
231+
strict_equality = true
232+
extra_checks = true
231233
mypy_path = "src"
232234

233235
[[tool.mypy.overrides]]

uv.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)