Skip to content

Commit 47512c8

Browse files
authored
fix: No module named httpx (#1441)
1 parent e0f7209 commit 47512c8

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Diff for: instrumentation/opentelemetry-instrumentation-fastapi/pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ instruments = [
3939
test = [
4040
"opentelemetry-instrumentation-fastapi[instruments]",
4141
"opentelemetry-test-utils == 0.36b0.dev",
42-
"requests ~= 2.23.0", # needed for testclient
42+
"requests ~= 2.23", # needed for testclient
43+
"httpx ~= 0.22", # needed for testclient
4344
]
4445

4546
[project.entry-points.opentelemetry_instrumentor]

Diff for: instrumentation/opentelemetry-instrumentation-starlette/pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ instruments = [
3939
test = [
4040
"opentelemetry-instrumentation-starlette[instruments]",
4141
"opentelemetry-test-utils == 0.36b0.dev",
42-
"requests ~= 2.23.0", # needed for testclient
42+
"requests ~= 2.23", # needed for testclient
43+
"httpx ~= 0.22", # needed for testclient
4344
]
4445

4546
[project.entry-points.opentelemetry_instrumentor]

0 commit comments

Comments
 (0)