diff --git a/python-fire.changes b/python-fire.changes index 710ba2a..813641d 100644 --- a/python-fire.changes +++ b/python-fire.changes @@ -41,6 +41,7 @@ Thu Oct 31 14:31:28 UTC 2024 - pgajdos@suse.com * Replace Python 2 type hints with real type annotations by @dbieber in #559 - Replace upstreamed patch: - python-fire-no-mock.patch + - support-python-311.patch ------------------------------------------------------------------- Tue Feb 7 01:05:45 UTC 2023 - Steve Kowalik diff --git a/support-python-311.patch b/support-python-311.patch deleted file mode 100644 index e626fd2..0000000 --- a/support-python-311.patch +++ /dev/null @@ -1,14 +0,0 @@ -Index: fire-0.5.0/fire/test_components_py3.py -=================================================================== ---- fire-0.5.0.orig/fire/test_components_py3.py -+++ fire-0.5.0/fire/test_components_py3.py -@@ -57,8 +57,7 @@ def lru_cache_decorated(arg1): - - class WithAsyncio(object): - -- @asyncio.coroutine -- def double(self, count=0): -+ async def double(self, count=0): - return 2 * count - -