Skip to content

Commit 50f3b08

Browse files
Added support for python 3.13 - Removed ubber bound (#379)
* Added CI support for python 3.13 * Removed ubber bound for pypandoc
1 parent 1a078c0 commit 50f3b08

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
os: [ubuntu-20.04, ubuntu-22.04, macos-13, windows-2022]
20-
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.8", "pypy3.9", "pypy3.10", ]
20+
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.8", "pypy3.9", "pypy3.10", ]
2121
runs-on: ${{ matrix.os }}
2222
steps:
2323
- name: Check out repository

poetry.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pypandoc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
__version__ = '1.14'
2525
__license__ = 'MIT'
2626
__description__ = "Thin wrapper for pandoc."
27-
__python_requires__ = ">=3.6"
27+
__python_requires__ = ">=3.7"
2828
__setup_requires__ = ['setuptools', 'pip>=8.1.0', 'wheel>=0.25.0']
2929
__classifiers__ = [
3030
'Development Status :: 4 - Beta',

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ packages = [
3333
]
3434

3535
[tool.poetry.dependencies]
36-
python = ">=3.7,<3.13"
36+
python = ">=3.7"
3737

3838
[tool.poetry.dev-dependencies]
3939
pandocfilters = "^1.5"

0 commit comments

Comments
 (0)