summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python
diff options
context:
space:
mode:
Diffstat (limited to 'meta-python/recipes-devtools/python')
-rw-r--r--meta-python/recipes-devtools/python/python3-freezegun/1777174bb97c0b514033a09b820078b0d117f4a8.patch37
-rw-r--r--meta-python/recipes-devtools/python/python3-freezegun_1.5.2.bb (renamed from meta-python/recipes-devtools/python/python3-freezegun_1.5.1.bb)6
2 files changed, 1 insertions, 42 deletions
diff --git a/meta-python/recipes-devtools/python/python3-freezegun/1777174bb97c0b514033a09b820078b0d117f4a8.patch b/meta-python/recipes-devtools/python/python3-freezegun/1777174bb97c0b514033a09b820078b0d117f4a8.patch
deleted file mode 100644
index 4604da2b57..0000000000
--- a/meta-python/recipes-devtools/python/python3-freezegun/1777174bb97c0b514033a09b820078b0d117f4a8.patch
+++ /dev/null
@@ -1,37 +0,0 @@
1From 1777174bb97c0b514033a09b820078b0d117f4a8 Mon Sep 17 00:00:00 2001
2From: Bert Blommers <info@bertblommers.nl>
3Date: Fri, 28 Jun 2024 19:21:04 +0000
4Subject: [PATCH] Admin: Support Python 3.13
5
6Upstream-Status: Backport [https://github.com/spulec/freezegun/pull/550]
7Signed-off-by: Khem Raj <raj.khem@gmail.com>
8---
9 .github/workflows/ci.yaml | 9 ++++++---
10 tests/test_datetimes.py | 6 +++---
11 2 files changed, 9 insertions(+), 6 deletions(-)
12
13diff --git a/tests/test_datetimes.py b/tests/test_datetimes.py
14index a6f1989..b75ad3b 100644
15--- a/tests/test_datetimes.py
16+++ b/tests/test_datetimes.py
17@@ -534,17 +534,17 @@ def test_method_decorator_works_on_unittest(self) -> None:
18 @freeze_time('2013-04-09', as_kwarg='frozen_time')
19 def test_method_decorator_works_on_unittest_kwarg_frozen_time(self, frozen_time: Any) -> None:
20 self.assertEqual(datetime.date(2013, 4, 9), datetime.date.today())
21- self.assertEqual(datetime.date(2013, 4, 9), frozen_time.time_to_freeze.today())
22+ assert frozen_time.time_to_freeze.today().strftime('%Y-%m-%d') == "2013-04-09"
23
24 @freeze_time('2013-04-09', as_kwarg='hello')
25 def test_method_decorator_works_on_unittest_kwarg_hello(self, **kwargs: Any) -> None:
26 self.assertEqual(datetime.date(2013, 4, 9), datetime.date.today())
27- self.assertEqual(datetime.date(2013, 4, 9), kwargs.get('hello').time_to_freeze.today()) # type: ignore
28+ assert kwargs.get("hello").time_to_freeze.today().strftime('%Y-%m-%d') == "2013-04-09" # type: ignore
29
30 @freeze_time(lambda: datetime.date(year=2013, month=4, day=9), as_kwarg='frozen_time')
31 def test_method_decorator_works_on_unittest_kwarg_frozen_time_with_func(self, frozen_time: Any) -> None:
32 self.assertEqual(datetime.date(2013, 4, 9), datetime.date.today())
33- self.assertEqual(datetime.date(2013, 4, 9), frozen_time.time_to_freeze.today())
34+ assert frozen_time.time_to_freeze.today().strftime('%Y-%m-%d') == "2013-04-09"
35
36
37 @freeze_time('2013-04-09')
diff --git a/meta-python/recipes-devtools/python/python3-freezegun_1.5.1.bb b/meta-python/recipes-devtools/python/python3-freezegun_1.5.2.bb
index 9d823da507..56674c448b 100644
--- a/meta-python/recipes-devtools/python/python3-freezegun_1.5.1.bb
+++ b/meta-python/recipes-devtools/python/python3-freezegun_1.5.2.bb
@@ -3,14 +3,10 @@ HOMEPAGE = "https://github.com/spulec/freezegun"
3LICENSE = "Apache-2.0" 3LICENSE = "Apache-2.0"
4LIC_FILES_CHKSUM = "file://LICENSE;md5=acf1d209bb6eddae4cbe6ffd6a0144fe" 4LIC_FILES_CHKSUM = "file://LICENSE;md5=acf1d209bb6eddae4cbe6ffd6a0144fe"
5 5
6SRC_URI[sha256sum] = "b29dedfcda6d5e8e083ce71b2b542753ad48cfec44037b3fc79702e2980a89e9" 6SRC_URI[sha256sum] = "a54ae1d2f9c02dbf42e02c18a3ab95ab4295818b549a34dac55592d72a905181"
7 7
8inherit pypi python_setuptools_build_meta ptest-python-pytest 8inherit pypi python_setuptools_build_meta ptest-python-pytest
9 9
10SRC_URI += " \
11 file://1777174bb97c0b514033a09b820078b0d117f4a8.patch \
12"
13
14RDEPENDS:${PN}-ptest += " \ 10RDEPENDS:${PN}-ptest += " \
15 python3-sqlite3 \ 11 python3-sqlite3 \
16" 12"