From bdc123da6b9f18735de40d54b415e4c7bc46dea5e70387039e4d38849a4c4d23 Mon Sep 17 00:00:00 2001 From: Matej Cepl Date: Tue, 12 Nov 2024 00:32:43 +0000 Subject: [PATCH] - support-python-311.patch OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fire?expand=0&rev=27 --- python-fire.changes | 1 + support-python-311.patch | 14 -------------- 2 files changed, 1 insertion(+), 14 deletions(-) delete mode 100644 support-python-311.patch 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 - -