Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions e2e/python-plugin-flask/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion e2e/python-plugin-flask/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ authors = [
readme = "README.md"
requires-python = "^3.10"
dependencies = [
"flask[async] (>=3.1.1,<4.0.0)",
"flask[async] (>=3.1.3,<4.0.0)",
"python-dotenv (>=1.1.1,<2.0.0)",
"launchdarkly-server-sdk (>=9.12.0,<10.0.0)",
"launchdarkly-observability @ ../../sdk/@launchdarkly/observability-python",
Expand Down
603 changes: 436 additions & 167 deletions e2e/python/poetry.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions e2e/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ loguru = "^0"
openai = "^1.25.1"
redis = "^5.0.4"
sqlalchemy = "^2.0.29"
orjson = "3.9.15"
orjson = "3.11.6"
uvicorn = {extras = ["standard"], version = "^0.29.0"}
highlight-io = {path = "../../sdk/highlight-py", develop = true}
urllib3 = "2.2.2"
confluent-kafka = "^2.8.2"

[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
pytest = "^8.2.0"
black = ">=24.4.2,<27.0.0"
pytest = ">=8.2,<10.0"
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pytest-asyncio downgraded, incompatible with pytest 9

High Severity

The pytest-asyncio = "^0" constraint caps the version at <1.0.0, but pytest-asyncio 1.3.0 is the first version with official pytest 9 support. The solver can't pick it, so it falls back to 0.23.3 (a significant downgrade from 0.25.3), which predates pytest 9 and wasn't tested against it. The previous 0.25.3 explicitly declared pytest >=8.2,<9, confirming the 0.x line doesn't support pytest 9. This combination will likely cause async test failures at runtime.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit fe4b714. Configure here.

pytest-asyncio = "^0"
pytest-cov = "^5.0.0"
pytest-mock = "^3.14.0"
Expand Down
186 changes: 135 additions & 51 deletions e2e/tests/poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions e2e/tests/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ readme = "README.md"
package-mode = false

[tool.poetry.dependencies]
black = "^24.3.0"
pytest = "^7.4.3"
black = ">=24.3,<27.0"
pytest = ">=7.4.3,<10.0.0"
pytest-mock = "^3.12.0"
pytest-randomly = "^3.15.0"
python = "^3.10"
Expand Down
318 changes: 205 additions & 113 deletions sdk/@launchdarkly/observability-python/poetry.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions sdk/@launchdarkly/observability-python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ dependencies = [
"opentelemetry-instrumentation-weaviate==0.40.14",
"opentelemetry-instrumentation-wsgi==0.55b1",
"urllib3>=2.6.3",
"requests>=2.32.4",
"requests>=2.33.0",
"ariadne-codegen (>=0.14.0,<0.15.0)",
"launchdarkly-server-sdk (>=9.12.0, < 10.0.0)",
"launchdarkly-server-sdk-otel (>=1.2.0, < 2.0.0)",
Expand All @@ -78,14 +78,14 @@ dependencies = [
[project.optional-dependencies]
dev = [
"azure-functions>=1",
"black>=24",
"black>=26.3.1",
"blinker>=1",
"django>=5.2.11",
"fastapi>=0",
"flask>=3",
"flask>=3.1.3",
"functions-framework>=3",
"loguru>=0",
"orjson==3.9.15",
"orjson==3.11.6",
"pytest>=8",
"pytest-asyncio>=0",
"pytest-cov>=5",
Expand Down
22 changes: 11 additions & 11 deletions sdk/highlight-py/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading