From 1e46a60adef2df63c2f8c7afcb55a543852c278d4cdfb886abdecc961f34445d Mon Sep 17 00:00:00 2001 From: Steve Kowalik Date: Wed, 17 Nov 2021 09:59:07 +0000 Subject: [PATCH] - Update python39-failures.patch to only fire with Python 3.9.7. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-aiohttp?expand=0&rev=71 --- python-aiohttp.changes | 5 +++++ python39-failures.patch | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/python-aiohttp.changes b/python-aiohttp.changes index 1baeff3..87b8196 100644 --- a/python-aiohttp.changes +++ b/python-aiohttp.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Nov 17 09:52:49 UTC 2021 - Steve Kowalik + +- Update python39-failures.patch to only fire with Python 3.9.7. + ------------------------------------------------------------------- Fri Sep 10 14:22:31 UTC 2021 - Matej Cepl diff --git a/python39-failures.patch b/python39-failures.patch index 6f21314..1179002 100644 --- a/python39-failures.patch +++ b/python39-failures.patch @@ -14,7 +14,7 @@ from aiohttp import web -+py39 = sys.version_info[:3] >= (3, 9, 7) ++py39 = sys.version_info[:3] == (3, 9, 7) async def test_middleware_modifies_response(loop, aiohttp_client) -> None: async def handler(request):