From cbbaffcedbc0c85a9a07d9c4add2201702c1df7d4a98004cddd330fd59c92a1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mark=C3=A9ta=20Machov=C3=A1?= Date: Thu, 13 Feb 2025 14:03:38 +0000 Subject: [PATCH] Accepting request 1245594 from home:glaubitz:branches:devel:languages:python - Update to 1.15 * 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/request/show/1245594 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pypandoc?expand=0&rev=26 --- pypandoc-1.14.tar.gz | 3 --- pypandoc-1.15.tar.gz | 3 +++ python-pypandoc.changes | 12 ++++++++++++ python-pypandoc.spec | 6 ++---- remove-py313-upper-bound.patch | 21 --------------------- 5 files changed, 17 insertions(+), 28 deletions(-) delete mode 100644 pypandoc-1.14.tar.gz create mode 100644 pypandoc-1.15.tar.gz delete mode 100644 remove-py313-upper-bound.patch diff --git a/pypandoc-1.14.tar.gz b/pypandoc-1.14.tar.gz deleted file mode 100644 index e9ddb21..0000000 --- a/pypandoc-1.14.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e5b79144aa95beaf8365e2901b7da827759352f9794bfb082f395a11f873b6bf -size 70683 diff --git a/pypandoc-1.15.tar.gz b/pypandoc-1.15.tar.gz new file mode 100644 index 0000000..351f8e6 --- /dev/null +++ b/pypandoc-1.15.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7476818bccac8451c3e976617b3ebb26ef9b1521e1219fb852a8e3127b81fa03 +size 70808 diff --git a/python-pypandoc.changes b/python-pypandoc.changes index 05f6450..db28c40 100644 --- a/python-pypandoc.changes +++ b/python-pypandoc.changes @@ -1,3 +1,15 @@ +------------------------------------------------------------------- +Thu Feb 13 10:24:55 UTC 2025 - John Paul Adrian Glaubitz + +- Update to 1.15 + * 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 + ------------------------------------------------------------------- Wed Nov 20 15:46:13 UTC 2024 - Dirk Müller diff --git a/python-pypandoc.spec b/python-pypandoc.spec index feb1b4c..fe4a3bc 100644 --- a/python-pypandoc.spec +++ b/python-pypandoc.spec @@ -1,7 +1,7 @@ # # spec file for package python-pypandoc # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2025 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,14 +19,12 @@ %define base_name pypandoc %{?sle15_python_module_pythons} Name: python-pypandoc -Version: 1.14 +Version: 1.15 Release: 0 Summary: Thin wrapper for pandoc License: MIT URL: https://github.com/JessicaTegner/pypandoc Source: https://github.com/JessicaTegner/pypandoc/archive/refs/tags/v%{version}.tar.gz#/pypandoc-%{version}.tar.gz -# PATCH-FIX-UPSTREAM: https://github.com/JessicaTegner/pypandoc/commit/50f3b0867e82874edfd8828087acb6a52ef2eaef -Patch1: remove-py313-upper-bound.patch BuildRequires: %{python_module pandocfilters} BuildRequires: %{python_module pip} BuildRequires: %{python_module poetry} diff --git a/remove-py313-upper-bound.patch b/remove-py313-upper-bound.patch deleted file mode 100644 index 23419a4..0000000 --- a/remove-py313-upper-bound.patch +++ /dev/null @@ -1,21 +0,0 @@ -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"