[packages/python3-freezegun] up to 1.5.1
baggins
baggins at pld-linux.org
Sun Mar 16 21:30:25 CET 2025
commit b71ac7c67487e6021e9784480947f1f9e6cf5111
Author: Jan Rękorajski <baggins at pld-linux.org>
Date: Sun Mar 16 22:22:18 2025 +0100
up to 1.5.1
freezegun-pull397.patch | 26 --------------------------
python3-freezegun.spec | 11 +++++------
python3.13.patch | 34 ++++++++++++++++++++++++++++++++++
3 files changed, 39 insertions(+), 32 deletions(-)
---
diff --git a/python3-freezegun.spec b/python3-freezegun.spec
index f03e662..0d6d813 100644
--- a/python3-freezegun.spec
+++ b/python3-freezegun.spec
@@ -5,15 +5,14 @@
Summary: FreezeGun: Let your Python 2 tests travel through time
Summary(pl.UTF-8): FreezeGun - umożliwienie testom Pythona 2 podróżowania w czasie
Name: python3-freezegun
-Version: 1.2.2
-Release: 3
+Version: 1.5.1
+Release: 1
License: Apache v2.0
Group: Libraries/Python
#Source0Download: https://pypi.org/simple/freezegun/
Source0: https://files.pythonhosted.org/packages/source/f/freezegun/freezegun-%{version}.tar.gz
-# Source0-md5: 40e783f950f4e17e1e0118dd6385b449
-# https://patch-diff.githubusercontent.com/raw/spulec/freezegun/pull/397.patch
-Patch0: freezegun-pull397.patch
+# Source0-md5: fb7324aaa31c6fafabf16a623cc62e38
+Patch0: python3.13.patch
URL: https://pypi.org/project/freezegun/
BuildRequires: python3-modules >= 1:3.7
BuildRequires: python3-setuptools
@@ -37,7 +36,7 @@ czasie dzięki atrapie modułu datetime.
%prep
%setup -q -n freezegun-%{version}
-%patch -P 0 -p1
+%patch -P0 -p1
%build
%py3_build
diff --git a/freezegun-pull397.patch b/freezegun-pull397.patch
deleted file mode 100644
index 53f67f3..0000000
--- a/freezegun-pull397.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From e63874ce75a74a1159390914045fe8e7955b24c4 Mon Sep 17 00:00:00 2001
-From: Karthikeyan Singaravelan <tir.karthi at gmail.com>
-Date: Fri, 7 May 2021 15:51:33 +0000
-Subject: [PATCH] Fix decorate_class for Python 3.10 where staticmethod is
- callable.
-
----
- freezegun/api.py | 5 ++++-
- 1 file changed, 4 insertions(+), 1 deletion(-)
-
-diff --git a/freezegun/api.py b/freezegun/api.py
-index cab9ebe..55a80c7 100644
---- a/freezegun/api.py
-+++ b/freezegun/api.py
-@@ -598,7 +598,10 @@ def tearDownClass(cls):
- continue
- seen.add(attr)
-
-- if not callable(attr_value) or inspect.isclass(attr_value):
-+ # staticmethods are callable from Python 3.10 . Hence skip them from decoration
-+ if (not callable(attr_value)
-+ or inspect.isclass(attr_value)
-+ or isinstance(attr_value, staticmethod)):
- continue
-
- try:
diff --git a/python3.13.patch b/python3.13.patch
new file mode 100644
index 0000000..8da5e2e
--- /dev/null
+++ b/python3.13.patch
@@ -0,0 +1,34 @@
+From 1777174bb97c0b514033a09b820078b0d117f4a8 Mon Sep 17 00:00:00 2001
+From: Bert Blommers <info at bertblommers.nl>
+Date: Fri, 28 Jun 2024 19:21:04 +0000
+Subject: [PATCH] Admin: Support Python 3.13
+
+---
+ tests/test_datetimes.py | 6 +++---
+ 2 files changed, 9 insertions(+), 6 deletions(-)
+
+diff --git a/tests/test_datetimes.py b/tests/test_datetimes.py
+index a6f1989..b75ad3b 100644
+--- a/tests/test_datetimes.py
++++ b/tests/test_datetimes.py
+@@ -534,17 +534,17 @@ def test_method_decorator_works_on_unittest(self) -> None:
+ @freeze_time('2013-04-09', as_kwarg='frozen_time')
+ def test_method_decorator_works_on_unittest_kwarg_frozen_time(self, frozen_time: Any) -> None:
+ self.assertEqual(datetime.date(2013, 4, 9), datetime.date.today())
+- self.assertEqual(datetime.date(2013, 4, 9), frozen_time.time_to_freeze.today())
++ assert frozen_time.time_to_freeze.today().strftime('%Y-%m-%d') == "2013-04-09"
+
+ @freeze_time('2013-04-09', as_kwarg='hello')
+ def test_method_decorator_works_on_unittest_kwarg_hello(self, **kwargs: Any) -> None:
+ self.assertEqual(datetime.date(2013, 4, 9), datetime.date.today())
+- self.assertEqual(datetime.date(2013, 4, 9), kwargs.get('hello').time_to_freeze.today()) # type: ignore
++ assert kwargs.get("hello").time_to_freeze.today().strftime('%Y-%m-%d') == "2013-04-09" # type: ignore
+
+ @freeze_time(lambda: datetime.date(year=2013, month=4, day=9), as_kwarg='frozen_time')
+ def test_method_decorator_works_on_unittest_kwarg_frozen_time_with_func(self, frozen_time: Any) -> None:
+ self.assertEqual(datetime.date(2013, 4, 9), datetime.date.today())
+- self.assertEqual(datetime.date(2013, 4, 9), frozen_time.time_to_freeze.today())
++ assert frozen_time.time_to_freeze.today().strftime('%Y-%m-%d') == "2013-04-09"
+
+
+ @freeze_time('2013-04-09')
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/python3-freezegun.git/commitdiff/b71ac7c67487e6021e9784480947f1f9e6cf5111
More information about the pld-cvs-commit
mailing list