diff --git a/397.patch b/397.patch new file mode 100644 index 0000000..53f67f3 --- /dev/null +++ b/397.patch @@ -0,0 +1,26 @@ +From e63874ce75a74a1159390914045fe8e7955b24c4 Mon Sep 17 00:00:00 2001 +From: Karthikeyan Singaravelan +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/python-freezegun.spec b/python-freezegun.spec index 4c7feab..e1c0b3a 100644 --- a/python-freezegun.spec +++ b/python-freezegun.spec @@ -10,6 +10,9 @@ License: ASL 2.0 URL: https://pypi.io/project/freezegun Source0: https://pypi.io/packages/source/f/%{modname}/%{modname}-%{version}.tar.gz +# Fix decorate_class for Python 3.10 where staticmethod is callable +Patch1: https://github.com/spulec/freezegun/pull/397.patch + BuildArch: noarch %description