* Fixed :class:`~aiohttp.DigestAuthMiddleware` to preserve the algorithm case from the server's challenge in the authorization response. This improves compatibility with servers that perform case-sensitive algorithm matching (e.g., servers expecting ``algorithm=MD5-sess`` instead of ``algorithm=MD5-SESS``) * Remove outdated contents of ``aiohttp-devtools`` and ``aiohttp-swagger`` from Web_advanced docs. * Started including the ``llhttp`` :file:`LICENSE` file in wheels by adding ``vendor/llhttp/LICENSE`` to ``license-files`` in :file:`setup.cfg` * Updated a regex in `test_aiohttp_request_coroutine` for Python 3.14. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-aiohttp?expand=0&rev=156
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]:
|