forked from pool/python-pypandoc
* Added support for python 3.13 - Removed ubber bound (#379) * Added parameter to control if files are sorted before being passed to pandoc (#378) * Dropped CI support for older python and pypy versions (#387) * Fix convert_file for Python 3.13 (#384) * allow non-latex intermediaries for pdf generation (#381) - Drop remove-py313-upper-bound.patch, merged upstream OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pypandoc?expand=0&rev=26
22 lines
724 B
Diff
22 lines
724 B
Diff
Index: pypandoc-1.14/pyproject.toml
|
|
===================================================================
|
|
--- pypandoc-1.14.orig/pyproject.toml
|
|
+++ pypandoc-1.14/pyproject.toml
|
|
@@ -24,6 +24,7 @@ classifiers = [
|
|
'Programming Language :: Python :: 3.10',
|
|
'Programming Language :: Python :: 3.11',
|
|
'Programming Language :: Python :: 3.12',
|
|
+ 'Programming Language :: Python :: 3.13',
|
|
'Programming Language :: Python :: Implementation :: CPython',
|
|
'Programming Language :: Python :: Implementation :: PyPy'
|
|
]
|
|
@@ -33,7 +34,7 @@ packages = [
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
-python = ">=3.7,<3.13"
|
|
+python = ">=3.7"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pandocfilters = "^1.5"
|