14
0

- add remove-py313-upper-bound.patch: fix build with python 3.13

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pypandoc?expand=0&rev=23
This commit is contained in:
2024-11-20 15:46:22 +00:00
committed by Git OBS Bridge
parent 7983ac254d
commit 4e13dd0c27
3 changed files with 32 additions and 4 deletions

View File

@@ -0,0 +1,21 @@
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"