forked from pool/python-aiohttp
* Fixed file uploads failing with HTTP 422 errors when
encountering 307/308 redirects, and 301/302 redirects for
non-POST methods, by preserving the request body when
appropriate per RFC 9110 -- by :user:`bdraco`. Related issues
and pull requests on GitHub: :issue:`11270`.
* Fixed :py:meth:`ClientSession.close()
<aiohttp.ClientSession.close>` hanging indefinitely when
using HTTPS requests through HTTP proxies -- by
:user:`bdraco`. Related issues and pull requests on GitHub:
:issue:`11273`.
* Bumped minimum version of aiosignal to 1.4+ to resolve typing
issues -- by :user:`Dreamsorcerer`. Related issues and pull
requests on GitHub: :issue:`11280`.
* Added initial trailer parsing logic to Python HTTP parser --
by :user:`Dreamsorcerer`. Related issues and pull requests on
GitHub: :issue:`11269`.
* Clarified exceptions raised by WebSocketResponse.send_frame
et al. -- by :user:`DoctorJohn`. Related issues and pull
requests on GitHub: :issue:`11234`.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-aiohttp?expand=0&rev=149
22 lines
706 B
Diff
22 lines
706 B
Diff
Index: aiohttp-3.12.13/tests/conftest.py
|
|
===================================================================
|
|
--- aiohttp-3.12.13.orig/tests/conftest.py
|
|
+++ aiohttp-3.12.13/tests/conftest.py
|
|
@@ -12,7 +12,6 @@ from typing import Any, AsyncIterator, G
|
|
from unittest import mock
|
|
from uuid import uuid4
|
|
|
|
-import isal.isal_zlib
|
|
import pytest
|
|
import zlib_ng.zlib_ng
|
|
from blockbuster import blockbuster_ctx
|
|
@@ -331,7 +330,7 @@ def unused_port_socket() -> Generator[so
|
|
s.close()
|
|
|
|
|
|
-@pytest.fixture(params=[zlib, zlib_ng.zlib_ng, isal.isal_zlib])
|
|
+@pytest.fixture(params=[zlib, zlib_ng.zlib_ng])
|
|
def parametrize_zlib_backend(
|
|
request: pytest.FixtureRequest,
|
|
) -> Generator[None, None, None]:
|