Accepting request 931926 from devel:languages:python

- Update python39-failures.patch to only fire with Python 3.9.7.

OBS-URL: https://build.opensuse.org/request/show/931926
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-aiohttp?expand=0&rev=25
This commit is contained in:
Dominique Leuenberger 2021-11-21 22:51:43 +00:00 committed by Git OBS Bridge
commit a1b51ca75f
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Wed Nov 17 09:52:49 UTC 2021 - Steve Kowalik <steven.kowalik@suse.com>
- Update python39-failures.patch to only fire with Python 3.9.7.
-------------------------------------------------------------------
Fri Sep 10 14:22:31 UTC 2021 - Matej Cepl <mcepl@suse.com>

View File

@ -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):