diff --git a/inflect-7.3.1.tar.gz b/inflect-7.3.1.tar.gz deleted file mode 100644 index ec0104d..0000000 --- a/inflect-7.3.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:edd785148a673b0c6dfef1a7d80cc1bcb2dd6d041cdb313b60032e464fd4e808 -size 71980 diff --git a/inflect-7.4.0.tar.gz b/inflect-7.4.0.tar.gz new file mode 100644 index 0000000..e57ae12 --- /dev/null +++ b/inflect-7.4.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:904baa17cc2cb74827a6c27b95692e95670dadc72b208b3e8c1c05aeed47026b +size 72730 diff --git a/python-inflect.changes b/python-inflect.changes index 7616935..0f4e945 100644 --- a/python-inflect.changes +++ b/python-inflect.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Thu Nov 14 14:14:05 UTC 2024 - Dirk Müller + +- update to 7.4.0: + * Handle a single apostrophe more gracefully. +- drop typing_extensions-version.patch (upstream) + ------------------------------------------------------------------- Sat Sep 7 00:08:11 UTC 2024 - Matej Cepl diff --git a/python-inflect.spec b/python-inflect.spec index 56eb079..3b97468 100644 --- a/python-inflect.spec +++ b/python-inflect.spec @@ -18,16 +18,13 @@ %{?sle15_python_module_pythons} Name: python-inflect -Version: 7.3.1 +Version: 7.4.0 Release: 0 Summary: Methods for working on numbers and nouns License: MIT Group: Development/Languages/Python URL: https://github.com/jaraco/inflect Source0: https://files.pythonhosted.org/packages/source/i/inflect/inflect-%{version}.tar.gz -# PATCH-FIX-UPSTREAM typing_extensions-version.patch bsc#[0-9]+ mcepl@suse.com -# Correct handling of the potential missing Annotated type -Patch0: typing_extensions-version.patch BuildRequires: %{python_module devel >= 3.8} BuildRequires: %{python_module more-itertools >= 8.5.0} BuildRequires: %{python_module pip} diff --git a/typing_extensions-version.patch b/typing_extensions-version.patch deleted file mode 100644 index c86b3a1..0000000 --- a/typing_extensions-version.patch +++ /dev/null @@ -1,16 +0,0 @@ ---- - inflect/compat/py38.py | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - ---- a/inflect/compat/py38.py -+++ b/inflect/compat/py38.py -@@ -1,7 +1,7 @@ - import sys - - --if sys.version_info >= (3, 9): -+try: - from typing import Annotated --else: # pragma: no cover -+except ImportError: - from typing_extensions import Annotated # noqa: F401