Sync from SUSE:SLFO:Main python-freezegun revision cacb5fd68449ce864398796803f17af5

This commit is contained in:
2024-12-13 11:27:21 +01:00
parent 6e1ffec021
commit ba26d5db4a
5 changed files with 91 additions and 14 deletions

BIN
freezegun-1.2.2.tar.gz (Stored with Git LFS)

Binary file not shown.

BIN
freezegun-1.5.1.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

33
py313-support.patch Normal file
View File

@@ -0,0 +1,33 @@
From 1777174bb97c0b514033a09b820078b0d117f4a8 Mon Sep 17 00:00:00 2001
From: Bert Blommers <info@bertblommers.nl>
Date: Fri, 28 Jun 2024 19:21:04 +0000
Subject: [PATCH] Admin: Support Python 3.13
---
.github/workflows/ci.yaml | 9 ++++++---
tests/test_datetimes.py | 6 +++---
2 files changed, 9 insertions(+), 6 deletions(-)
--- 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')

View File

@@ -1,3 +1,45 @@
-------------------------------------------------------------------
Sun Jun 30 21:22:02 UTC 2024 - Dirk Müller <dmueller@suse.com>
- add py313-support.patch to fix build with python 3.13
-------------------------------------------------------------------
Wed Jun 12 09:20:35 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 1.5.1:
* Fix the typing of the `tick()` method, and improve it's
behaviour.
-------------------------------------------------------------------
Fri May 3 07:25:54 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 1.5.0:
* The default ignore list now contains the `queue`-package
* Added a missing `move_to`-function when calling
`freeze_time(tick=True)`
* Fixes a rounding error in `time.time_ns()`
* Fixed a bug where the default ignore list could not be empty
(`configure(default_ignore_list=[])`)
* All `tick()` methods now return the new datetime (instead of
None)
* Type improvements
-------------------------------------------------------------------
Fri Dec 29 13:00:06 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 1.4.0:
* `asyncio`-support from 1.3.x introduced quite a few bugs, so
that functionality is now hidden behind a flag:
`with freeze_time('1970-01-02', real_asyncio=True):`
-------------------------------------------------------------------
Thu Dec 7 21:33:09 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 1.3.1:
* Fixed `asyncio` support to avoid `await asyncio.sleep(1)`
hanging forever.
* Added support for Python 3.12
-------------------------------------------------------------------
Fri Apr 21 12:25:27 UTC 2023 - Dirk Müller <dmueller@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-freezegun
#
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -16,19 +16,22 @@
#
%{?!python_module:%define python_module() python3-%{**}}
%{?sle15_python_module_pythons}
Name: python-freezegun
Version: 1.2.2
Version: 1.5.1
Release: 0
Summary: Mock time date for Python
License: Apache-2.0
URL: https://github.com/spulec/freezegun
Source: https://files.pythonhosted.org/packages/source/f/freezegun/freezegun-%{version}.tar.gz
# PATCH-FIX-UPSTREAM: https://github.com/spulec/freezegun/commit/1777174bb97c0b514033a09b820078b0d117f4a8
Patch1: py313-support.patch
BuildRequires: %{python_module base >= 3.7}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module python-dateutil > 2.7}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: %{pythons}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
@@ -42,14 +45,13 @@ FreezeGun is a library that allows your python tests to travel through
time by mocking the datetime module.
%prep
%setup -q -n freezegun-%{version}
%autopatch -p1
%autosetup -p1 -n freezegun-%{version}
%build
%python_build
%pyproject_wheel
%install
%python_install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
@@ -59,6 +61,6 @@ time by mocking the datetime module.
%license LICENSE
%doc README.rst
%{python_sitelib}/freezegun
%{python_sitelib}/freezegun-%{version}*-info
%{python_sitelib}/freezegun-%{version}.dist-info
%changelog