summaryrefslogtreecommitdiff
path: root/dev-python/httpx/files
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
commit290aebdea65a02557706eaeda477fef0437b6a48 (patch)
treef87a939169a508a2e943570501b64cc16b411cda /dev-python/httpx/files
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'dev-python/httpx/files')
-rw-r--r--dev-python/httpx/files/httpx-0.27.0-opt-trio.patch17
-rw-r--r--dev-python/httpx/files/httpx-0.28.1-httptools-test.patch13
2 files changed, 0 insertions, 30 deletions
diff --git a/dev-python/httpx/files/httpx-0.27.0-opt-trio.patch b/dev-python/httpx/files/httpx-0.27.0-opt-trio.patch
deleted file mode 100644
index 6c2c9e67255f..000000000000
--- a/dev-python/httpx/files/httpx-0.27.0-opt-trio.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff --git a/tests/concurrency.py b/tests/concurrency.py
-index a8ed558..d5ce803 100644
---- a/tests/concurrency.py
-+++ b/tests/concurrency.py
-@@ -5,11 +5,11 @@ Async environment-agnostic concurrency utilities that are only used in tests.
- import asyncio
-
- import sniffio
--import trio
-
-
- async def sleep(seconds: float) -> None:
- if sniffio.current_async_library() == "trio":
-+ import trio
- await trio.sleep(seconds) # pragma: no cover
- else:
- await asyncio.sleep(seconds)
diff --git a/dev-python/httpx/files/httpx-0.28.1-httptools-test.patch b/dev-python/httpx/files/httpx-0.28.1-httptools-test.patch
deleted file mode 100644
index 2170c3674647..000000000000
--- a/dev-python/httpx/files/httpx-0.28.1-httptools-test.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/tests/conftest.py b/tests/conftest.py
-index 970c353..1ea3aa9 100644
---- a/tests/conftest.py
-+++ b/tests/conftest.py
-@@ -304,7 +304,7 @@ def serve_in_thread(server: Server):
-
- @pytest.fixture(scope="session")
- def server() -> typing.Iterator[TestServer]:
-- config = Config(app=app, lifespan="off", loop="asyncio")
-+ config = Config(app=app, lifespan="off", loop="asyncio", http="h11")
- server = TestServer(config=config)
- yield from serve_in_thread(server)
-