forked from pool/python-inflect
Compare commits
25 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| a55de162c3 | |||
| 3bed22eb16 | |||
| 008b43100b | |||
| 97fb2bd72b | |||
| 6955129c2c | |||
| 3c42b0194b | |||
| ccccb265ef | |||
| c6de1d7660 | |||
| 7d780004c5 | |||
| 64cfc7f1aa | |||
| 73d190b153 | |||
| 8f8ab3b13d | |||
| 0eeefc9b68 | |||
| cb52642b8d | |||
| 268c92acfb | |||
| a856e5fe5a | |||
| 7b5c0c5e34 | |||
| 7e3c29911f | |||
| 8e792486d2 | |||
|
|
0219d1eeea | ||
| 402ca47936 | |||
|
|
cae6d9db97 | ||
| 37e67f2fb9 | |||
| 177d392648 | |||
| dcf54a72bb |
BIN
inflect-7.0.0.tar.gz
LFS
BIN
inflect-7.0.0.tar.gz
LFS
Binary file not shown.
BIN
inflect-7.3.1.tar.gz
LFS
BIN
inflect-7.3.1.tar.gz
LFS
Binary file not shown.
BIN
inflect-7.5.0.tar.gz
LFS
Normal file
BIN
inflect-7.5.0.tar.gz
LFS
Normal file
Binary file not shown.
@@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Feb 7 12:12:46 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to 7.5.0
|
||||||
|
* Updated ast classes for Python 3.14 compatibility. (#225)
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Nov 19 15:09:13 UTC 2024 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||||
|
|
||||||
|
- Do not (ever) use %python_modules on runtime requires: it pulls
|
||||||
|
in all python flavors. Change to Requires: python-typeguard which
|
||||||
|
will be rewritten by the python singlespec machinery.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Nov 14 14:14:05 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- 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 <mcepl@cepl.eu>
|
Sat Sep 7 00:08:11 UTC 2024 - Matej Cepl <mcepl@cepl.eu>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-inflect
|
# spec file for package python-inflect
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -18,16 +18,13 @@
|
|||||||
|
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-inflect
|
Name: python-inflect
|
||||||
Version: 7.3.1
|
Version: 7.5.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Methods for working on numbers and nouns
|
Summary: Methods for working on numbers and nouns
|
||||||
License: MIT
|
License: MIT
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
URL: https://github.com/jaraco/inflect
|
URL: https://github.com/jaraco/inflect
|
||||||
Source0: https://files.pythonhosted.org/packages/source/i/inflect/inflect-%{version}.tar.gz
|
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 devel >= 3.8}
|
||||||
BuildRequires: %{python_module more-itertools >= 8.5.0}
|
BuildRequires: %{python_module more-itertools >= 8.5.0}
|
||||||
BuildRequires: %{python_module pip}
|
BuildRequires: %{python_module pip}
|
||||||
@@ -38,8 +35,8 @@ BuildRequires: %{python_module typing_extensions if %python-base < 3.9}
|
|||||||
BuildRequires: %{python_module wheel}
|
BuildRequires: %{python_module wheel}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
Requires: %{python_module typeguard}
|
|
||||||
Requires: python-more-itertools >= 8.5.0
|
Requires: python-more-itertools >= 8.5.0
|
||||||
|
Requires: python-typeguard
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
|
||||||
Reference in New Issue
Block a user